本文介绍了sqsh SQL Server 2005执行* .sql文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想通过sqsh删除远程SQL Server数据库,但是我不知道它是如何工作的.我可以使用以下命令连接到sql服务器:
I would to drop remote SQL Server db via sqsh but, I don't know how does it works. I can connect to sql server with command:
sqsh -Ulogin -Ppass -Smssql2005
推荐答案
-C
参数使您可以指定要发送到SQL Server实例的查询.
The -C
argument lets you specify a query to send to the SQL Server instance.
所以,我认为这将满足您的要求:
So, I think this will do what you want:
sqsh -Ulogin -Ppass -Smssql2005 -C"DROP DATABASE MyDatabase"
这篇关于sqsh SQL Server 2005执行* .sql文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!