sql server查询数据并生成指定大小文件的方法
本文导语: sql server查询数据并生成指定大小文件的方法,供大家学习参考。 代码如下: --调用管理权限 use master EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE --生成数据文件 declare @sqlstr varchar(3000) d...
sql server查询数据并生成指定大小文件的方法,供大家学习参考。
--调用管理权限
use master
EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE
--生成数据文件
declare @sqlstr varchar(3000)
declare @i int
declare @count int
select identity(int,1,1) as id ,email
into testdb.dbo.usersemail
from testdb.dbo.reguser where (year(jointime)='2012') and (email is not null)
set @i=0
set @count= (select COUNT(1) from testdb.dbo.reguser where (year(jointime)='2012') and (email is not null))
while @i*10000