BUG: Current Activity Blank in Enterprise Manager 6.5

Last reviewed: April 10, 1997
Article ID: Q161522
The information in this article applies to:
  • Microsoft SQL Server, version 6.5
BUG #: 1289 (NT: 6.5)

SYMPTOMS

After ensuring the tempdb 'Select into/Bulk copy' option is set to TRUE (as noted in article Q149695, "PRB: Current Activity in SEM May Not Be Displayed" in the Microsoft Knowledge Base), the SQL Server Enterprise Manager 6.5 Current Activity will still be blank. If you open an ISQL/W window, connect to the SQL Server's master database, and run the sp_processinfo stored procedure, the following error is returned:

   Msg 2812, Level 16, State 4
   Stored procedure 'sp_processinfo' not found

CAUSE

During the upgrade or installation of Service Pack 1 for SQL Server 6.5, the Procsyst.sql script is run against the master database. This script builds certain temporary tables in the tempdb database. If 'Select into/Bulk copy' is set to FALSE for the tempdb database when this script is run, the following stored procedures may fail to be created within the master database:

   sp_processinfo
   sp_dropsegment
   sp_lockinfo
   sp_helpsort
   sp_who2

WORKAROUND

To work around this problem, do either of the following:

  • Enable 'Select into/Bulk copy' through Enterprise Manager.

    -or-

  • Run the following statement from a query window:

          sp_dboption tempdb, 'Select into/Bulk copy', TRUE
    

    Then rerun the Procsyst.sql script against the master database.

    NOTE: If you have installed SQL Server Service Pack 1, run the Procsyst.sql script that is shipped with SQL Server 6.5 Service Pack 1.

STATUS

Microsoft has confirmed this to be a problem in Microsoft SQL Server 6.5 Service Pack 1. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.


Additional query words: SP1
Keywords : kbbug6.50 kbtool kbusage SSrvEntMan SSrvISQL SSrvStProc
Version : 6.5
Platform : WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: April 10, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.