|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, April 18, 2013 6:00 AM
Points: 3,
Visits: 32
|
|
Hi. Im with a SQL Server 8.00.2066 (SP4) 32 bits. it run on Windows Server 2003 32 bits (SP2). I have created a trace for monitoring the database accesses. Its the code:
declare @rc int declare @TraceID int declare @maxfilesize bigint set @maxfilesize = 10000 set @TraceID = 1
exec @rc = sp_trace_create @TraceID output, 2, N'f:\TracesSQL', @maxfilesize, NULL if (@rc != 0) goto error
declare @on bit set @on = 1 exec sp_trace_setevent @TraceID, 14, 3, @on exec sp_trace_setevent @TraceID, 14, 11, @on exec sp_trace_setevent @TraceID, 14, 8, @on exec sp_trace_setevent @TraceID, 14, 10, @on exec sp_trace_setevent @TraceID, 14, 12, @on exec sp_trace_setevent @TraceID, 14, 14, @on exec sp_trace_setevent @TraceID, 14, 26, @on
declare @intfilter int declare @bigintfilter bigint
exec sp_trace_setstatus @TraceID, 1
select TraceID=@TraceID goto finish
error: select ErrorCode=@rc
finish: END When you SELECT the data INTO table, the server retrieve:
Msg 568, Level 16, State 13, Line 1 Server encountered an error 'f:\TracesSQL.trc'.
The error occurs in random way.
I tried to install the KB911678 hotfix but appear the next:
SQL Server 2000 -->> MSSQLServer (SP4 2039)
This SQL Server instance you are currently running already contains the update you are trying to install. You do not need to install the update. A Hotfix of build equal to or greater than the following should be downloaded: 2303
SQL Server 2000 Tools -->> SQLTools(SP4)
The product does not have a prerequisite update installed. The installation is dependent on the prerequisite update and cannot be installed. Exit setup and refer to the Knowledge Base article to find the prerequisite patch. Install the prerequisite and rerun the installation.
Do you say?
|
|
|
|