語句執行SQL Server大檔案SQL指令碼

2021-09-26 23:07:46 字數 463 閱讀 8181

注意點:sql2005用的是osql命令,如果是sql2008則使用sqlcmd命令。

在 c:\program files\microsoft sql server\100\tools\binn 目錄可以找到osql或sqlcmd命令

在windows下,執行cmd命令,在命令視窗中輸入:

說明:osql -s 伺服器ip或伺服器名 -u sql登陸帳號 -p sql登陸密碼 -i 大sql檔案指令碼
sql2005例子:

osql -s localhost -u sa -p sa123456 -i d:\database\script.sql

sql2008例子:

sqlcmd -s localhost -u sa -p sa123456 -d testdb -i script.sql

SQLSERVER 執行過的語句查詢

select top30000total worker time 1000as 總消耗cpu 時間 ms execution count 執行次數 qs.total worker time qs.execution count 1000as 平均消耗cpu 時間 ms last execution ...

SQL SERVER如何檢視sql語句執行的時間

1.第一種測試方法 declare begin datetime,end datetime set begin getdate 你所要測試的sql語句 set end getdate print datediff millisecond,begin,end 1000.0 單位 s 2.另一種測試方法...

SQLSERVER 執行過的語句查詢

select top 30000 total worker time 1000 as 總消耗cpu 時間 ms execution count 執行次數 qs.total worker time qs.execution count 1000 as 平均消耗cpu 時間 ms last execut...