需要在不使用 Management Studio 的情况下创建新数据库

发布于 2024-09-09 10:31:39 字数 88 浏览 10 评论 0 原文

如何在不使用 Management Studio 的情况下使用 SQL Server Express 2008 创建新数据库?

需要下载sp1吗?

How to create new database with SQL Server Express 2008 without using Management Studio?

Do i need to download sp1?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

归属感 2024-09-16 10:31:39

您可以从命令行使用 SqlCmd 实用程序来执行 SQL。

打开命令提示符,然后键入 SqlCmd.exe 并按 Enter 键,您应该会看到 1) 这意味着您已连接。

连接后执行

1) CREATE DATABASE dbname
2) GO

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

1) CREATE DATABASE dbname
2) GO
树深时见影 2024-09-16 10:31:39

通过创建数据库 .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...)

冷月断魂刀 2024-09-16 10:31:39

您可以使用连接字符串在代码(.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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文