Execute stored procedure from batch file

后端 未结 3 1425
执笔经年
执笔经年 2021-02-07 10:54

How would you execute a stored procedure in SQL Server (using windows authentication) from a batch file?

相关标签:
3条回答
  • 2021-02-07 11:11

    With SQL Server 2005 and above you can use sqlcmd.exe. More info about how to use it:

    http://msdn.microsoft.com/en-us/library/ms170572.aspx

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=109770

    0 讨论(0)
  • 2021-02-07 11:27

    You can use sqlcmd.exe See: MSDN usages

    0 讨论(0)
  • 2021-02-07 11:30

    If you are using Sql Server 2005+, you can use sqlcmd utility.

    Example:

    sqlcmd -Q "exec storedProcName" -S YourServer -d YourDatabase -o C:\yourOutput.txt

    0 讨论(0)
提交回复
热议问题