FIX: SELECT INTO Does Not Return Statistics IO Information

ID: Q216320


The information in this article applies to:

BUG #: 16740 (SQLBUG_65)

SYMPTOMS

With Microsoft SQL Server 6.5 Service Packs 3 or 4 installed, SELECT INTO will not return statistics IO information.


WORKAROUND

To work around this problem, start SQL Server with trace flag -T5302.

To add trace flag 5302 as a SQL Server startup parameter, perform the following steps:

  1. In SQL Enterprise Manager, right-click the server name click Configure on the shortcut menu.


  2. On the Server Options tab, click Parameters.


  3. Add a new parameter as -T5302.


For more information about using trace flags, refer to the SQL Server Books Online.


STATUS

Microsoft has confirmed this to be a problem in SQL Server version 6.5. This problem has been corrected in U.S. Service Pack 5a for Microsoft SQL Server version 6.5. For information about downloading and installing the latest SQL Server Service Pack, see http://support.microsoft.com/support/sql/.

For more information, contact your primary support provider.


MORE INFORMATION

To reproduce this problem, execute the following query on a SQL Server with Service Pack 3 or 4 installed:


use pubs
go
set statistics io on
go
select * into #tt from authors
go
set statistics io off
go
drop table #tt
go 

Additional query words: sp sp3 sp4 sp5


Keywords          : SSrvTran_SQL kbbug6.50 kbfix6.50.SP5 
Version           : winnt:6.5
Platform          : winnt 
Issue type        : kbbug 

Last Reviewed: May 4, 1999