Jan 12, 2005 #1 akki007 Programmer May 22, 2003 55 GB Is this possible? I know you can do it in Oracle, but not sure what the utility is in SQL server. I can execute a SQL script using osql and a DTS package using dtsrun so Im guessing its not difficult to do! Thanks
Is this possible? I know you can do it in Oracle, but not sure what the utility is in SQL server. I can execute a SQL script using osql and a DTS package using dtsrun so Im guessing its not difficult to do! Thanks
Jan 12, 2005 #2 mrdenny Programmer May 27, 2002 11,595 You can use osql to run a stored procedure as well. Code: osql -S {ServerName} -E -Q "exec usp_Something" Denny --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (My very old site) Upvote 0 Downvote
You can use osql to run a stored procedure as well. Code: osql -S {ServerName} -E -Q "exec usp_Something" Denny --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (My very old site)