我需要在 SQL Server 2008 中找到一个 T-SQL 查询,它会告诉我 tempdb 中的给定数据集需要多少磁盘空间,然后才能使用给定查询实际运行 select into 语句以创建新表。
例子:
select *
into newtable
from bighugetablewithlotsofjoins
bighugetablewithlotsofjoins
所以我需要知道在创建之前返回的数据需要多少空间newtable
我需要在 SQL Server 2008 中找到一个 T-SQL 查询,它会告诉我 tempdb 中的给定数据集需要多少磁盘空间,然后才能使用给定查询实际运行 select into 语句以创建新表。
例子:
select *
into newtable
from bighugetablewithlotsofjoins
bighugetablewithlotsofjoins
所以我需要知道在创建之前返回的数据需要多少空间newtable