有谁有快速“作弊作弊”的方法吗?或“命令行参考”对于 OSQL?
我的一个朋友抱怨 SQL Management Studio Express 被他的系统管理员设置的某些安全设置禁止。 我建议使用 OSQL
我的问题是
我需要一些基本命令,例如附加、分离和处理 SQL 的最佳方式快递数据库。有什么想法吗?
a friend of mine complained that SQL managment studio express is prohibited by some security setting set by his system admin.
i recommended to use OSQL
my question is
i need some basic orders like best way to attach, detach and deal with SQL express databases. any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MSDN 始终是最好的来源。
MSDN 上的 osql(带有示例)。
但是,微软将在未来版本中删除此实用程序,因此您应该开始使用
sqlcmd
。MSDN is always the best source.
osql on MSDN (with examples).
However, microsoft will remove this utility in future versions, so you should start using
sqlcmd
instead.如果您熟悉正常的查询语法,则将查询写入 .SQL 文件可能会更容易(在记事本中编辑并更改扩展名),然后使用
<; 调用 osql。 filename.sql
或-i filename.sql
。然后您也只需写出一次命令就可以重复使用它们。If you are familiar with normal query syntax, it may be easier for you to write queries to .SQL files (edit in notepad and change the extension), then call from osql with either
< filename.sql
or-i filename.sql
. Then you also only have to write out the commands once and can reuse them.