如何开发一个安装 SQL Express 并在其中添加数据库的程序
我需要创建一个仅安装 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种简单的方法是创建一个简单的批处理文件,其中一行运行 SQL Express 命令行安装,然后运行 sqlcmd 来进行恢复。
如何:从命令提示符安装 SQL Server 2008 R2
通过命令备份和还原 SQL Server 数据库Line
如果你想让你的生活更轻松,那么使用某种安装工具。我使用过高级安装程序,InstallAware 和 InstallShield 在不同时间执行此操作。
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.