我正在使用 SQL Server 2008 Management Studio 连接到 SQL Server 2000。
use [MyPrettyDb]
select top 19 * from information_schema.tables
它工作得很好,又甜又快。但是这个:
select top 20 * from information_schema.tables
超时停止。
超时的原因是什么?
PSselect count(*) from information_schema.tables
快速返回;数据库中有 334 个表。