如何开发一个安装 SQL Express 并在其中添加数据库的程序

发布于 2024-12-05 20:40:27 字数 206 浏览 1 评论 0原文

我需要创建一个仅安装 SQL Express 并同时安装数据库的程序(从 bak 或 mdf,以首选者为准)。在创建结束时,该程序将生成一个文本文件。

我在网上找到了如何安装 SQL Express,但我似乎找不到安装后添加数据库的任何内容。

到目前为止,除此之外我没有任何需要安装的东西,因为将使用该应用程序的应用程序将安装在另一台计算机上。

谢谢

I would need to create a program that only install SQL Express and install a database at the same time (either from a bak or mdf, whichever is prefered) At the end of the creation, this program would generate a text file.

I found on the web how to install SQL Express, but I can't seem to find anything to add a database after the installation.

So far I don't have anything to install else than that because the application that will use the application will be installed on another machine.

Thanks

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

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

发布评论

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

评论(1

微凉徒眸意 2024-12-12 20:40:27

一种简单的方法是创建一个简单的批处理文件,其中一行运行 SQL Express 命令行安装,然后运行 ​​sqlcmd 来进行恢复。

如何:从命令提示符安装 SQL Server 2008 R2

通过命令备份和还原 SQL Server 数据库Line

如果你想让你的生活更轻松,那么使用某种安装工具。我使用过高级安装程序InstallAwareInstallShield 在不同时间执行此操作。

One simple way would be to make a simple batch file, with a line to run the SQL Express command line install and then the next to run sqlcmd to do the restore.

How to: Install SQL Server 2008 R2 from the Command Prompt

Backup and Restore Your SQL Server Database from the Command Line

If you want to make your life easier then use some kind of installer tool. I have used Advanced Installer, InstallAware, and InstallShield at various times to do this.

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