日期:2014-05-18 浏览次数:20451 次
Declare @sql varchar(600),@count int Create Table ##tempTable ( postID int ) insert into ##tempTable select postID from dbo.Post set @sql='bcp ##tempTable out "E:\魔兽世界吧——数据\2012-3-14\Temp3.xls" -c -q -S"WHULCC-PC" -U"sa" -P"123123123"' EXEC master..xp_cmdshell @sql drop table ##tempTable
Declare @sql varchar(600),@count int Create Table ##tempTable ( postID int ) insert into ##tempTable select postID from dbo.Post set @sql='bcp tempdb..##tempTable out "E:\魔兽世界吧——数据\2012-3-14\Temp3.xls" -c -q -S"WHULCC-PC" -U"sa" -P"123123123"' EXEC master..xp_cmdshell @sql drop table ##tempTable