Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Unknown Token Received

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2001-11-07 : 09:06:06
Michelle writes "SQL Server 7 sp 3
Windows NT 4.0 (1381)

Transaction Log Backup runs every 15 minutes and intermittently fails with: Msg 0, Sev 0: Unknown token received from SQL Server [SQLSTATE HY000]

It rarely fails more than twice in a row.

Numerous servers are running same stored procedure with no problems. The only KB article that I can find that comes even close to explaining this relates to cursors on version 6.5.

Here's part of the SQL:

DECLARE cDB CURSOR FOR
SELECT [name]
FROM sysdatabases
WHERE [name] NOT IN('tempdb', 'Northwind', 'pubs', 'SQLPROFILE')
ORDER BY
[name],
crdate

OPEN cDB

FETCH NEXT
FROM cDB
INTO @log

WHILE (@@FETCH_STATUS=0)
BEGIN

Thanks,

Michelle"
   

- Advertisement -