简体   繁体   中英

Run batch file from SQL

I want to run batch file from SQL Job without using exec xp_cmdshell.

Any idea?

Thanks

You could use a SQL Server Job, otherwise i cannot think of a way you could without xp_cmdshell.
Take a look at this

I want to run batch file from SQL Job without using exec xp_cmdshell. Any idea?

Worth to mention that you can also leverage SQLCLR .

Example: CLR Stored procedure to execute command

Some other googlable threads:

Such approach introduces severe risks like memory leaks, crashing of underlying .net app pool etc

Therefore another link: Security in the CLR World Inside SQL Server

Instead of running batch file, i have created power shell and ran it from SQL job. It satisfy my requirement and resolved my issue.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM