Caja Negra .trc

15/10/2003 - 01:36 por josenadim | Informe spam
Cordial saludo, he tenido algunos problemas de reinicio con un
servidor de SQL S 7.0 y quisiera encontrar la forma de realizar un
traceo de tipo caja negra en donde quede todo registrado,alguna traza
o software de terceros que lo haga sin demasiado impacto en el
rendimiento agradezco sus sugerencias .

Cordialmente,


Jose Nadim

Preguntas similare

Leer las respuestas

#1 Isaías
15/10/2003 - 02:37 | Informe spam
La herramienta PROFILER que proporciona SQL Server, podria
ser una buena opcion.
Respuesta Responder a este mensaje
#2 josenadim
15/10/2003 - 16:08 | Informe spam
Isaías ,gracias por tu respuesta pero como la utilizo para lograr que
si se produce un reinicio detectar si fue por causa de SQL,..me
respondo a la vez : ¿utilizando la traza desde otro server y esto no
me degrada el performance del server a trazar ?

este es uno xa 2000 en www.sqlservercentral.com
Script Rating Total number of votes [3]
By: neiljacobson
There is a script for setting up a blackbox trace on SQL 2000
described by Kalen Delaney in "Inside SQL Server 2000". Since I can
never remember where to look it up I wrote this simple stored
procedure to run the blackbox trace when I need it. This should be
used with caution as it will slow performance. To check the status of
the trace: SELECT * from ::fn_trace_getinfo() -- Usually trace id = 1
To stop the trace: EXEC sp_trace_setstatus , 0 -- Usually trace id = 1
To remove the trace: EXEC sp_trace_setstatus , 2

CREATE PROC dbo.sp_blackbox
AS
declare @TraceID int, @tracefile nvarchar(128), @maxfilesize bigint
Select @tracefile = 'BlackBox', @maxfilesize = 2
exec sp_trace_create @TraceID output, 8, @tracefile, @maxfilesize
exec sp_trace_setstatus @traceID, 1
RETURN



gracias ,
Jose Nadim
Respuesta Responder a este mensaje
#3 josenadim
15/10/2003 - 16:08 | Informe spam
Isaías ,gracias por tu respuesta pero como la utilizo para lograr que
si se produce un reinicio detectar si fue por causa de SQL,..me
respondo a la vez : ¿utilizando la traza desde otro server y esto no
me degrada el performance del server a trazar ?

este es uno xa 2000 en www.sqlservercentral.com
Script Rating Total number of votes [3]
By: neiljacobson
There is a script for setting up a blackbox trace on SQL 2000
described by Kalen Delaney in "Inside SQL Server 2000". Since I can
never remember where to look it up I wrote this simple stored
procedure to run the blackbox trace when I need it. This should be
used with caution as it will slow performance. To check the status of
the trace: SELECT * from ::fn_trace_getinfo() -- Usually trace id = 1
To stop the trace: EXEC sp_trace_setstatus , 0 -- Usually trace id = 1
To remove the trace: EXEC sp_trace_setstatus , 2

CREATE PROC dbo.sp_blackbox
AS
declare @TraceID int, @tracefile nvarchar(128), @maxfilesize bigint
Select @tracefile = 'BlackBox', @maxfilesize = 2
exec sp_trace_create @TraceID output, 8, @tracefile, @maxfilesize
exec sp_trace_setstatus @traceID, 1
RETURN



gracias ,
Jose Nadim
email Siga el debate Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaRespuesta Tengo una respuesta
Search Busqueda sugerida