需要在不使用 Management Studio 的情况下创建新数据库
如何在不使用 Management Studio 的情况下使用 SQL Server Express 2008 创建新数据库?
需要下载sp1吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在不使用 Management Studio 的情况下使用 SQL Server Express 2008 创建新数据库?
需要下载sp1吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以从命令行使用 SqlCmd 实用程序来执行 SQL。
打开命令提示符,然后键入 SqlCmd.exe 并按 Enter 键,您应该会看到
1)
这意味着您已连接。连接后执行
You can use the SqlCmd utility from the command line to execute SQL.
Open a command prompt and then type SqlCmd.exe and press enter, you should then get
1)
which means you are connected.Once connected execute
通过创建数据库 .microsoft.com/en-us/library/ms165702.aspx" rel="nofollow noreferrer">sqlcmd 或其他数据库连接(甚至是 Excel 中的 VBA...)
Use CREATE DATABASE via sqlcmd or another other database connection (even VBA from Excel...)
您可以使用连接字符串在代码(.net express 或其他内容)中连接到它,然后运行 sql 脚本来创建数据库(请参阅 http://msdn.microsoft.com/en-us/library/ms176061.aspx)。
但为什么不能使用管理工作室呢?
You could connect to it in code (.net express or something) with a connectionstring, then run an sql script to create a db (see http://msdn.microsoft.com/en-us/library/ms176061.aspx).
But why can't you use the management studio?