数据库的自动构建步骤应该是什么?

发布于 2024-12-05 11:51:06 字数 151 浏览 0 评论 0原文

每次我签入时,我想触发 Nant 构建脚本来为 Dev/Uat/Live 服务器中的项目中的数据库运行一些任务,以清理数据库、重新加载数据库内容等。

应该是哪些步骤,因为我从来没有以前做过吗?是否有一篇文章讨论了自动化数据库构建步骤,您可以推荐吗?

谢谢。

Every-time I check in, I want to trigger Nant build script to run some tasks for the database in the project in Dev/Uat/Live server to clean db, reload contents of db etc.

What should be the steps as I have never done it before? Is there an article that talks about automated database built steps which you can recommend?

Thanks.

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

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

发布评论

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

评论(1

夜未央樱花落 2024-12-12 11:51:06

我刚刚找到了这个,它还不错:bottleit.com.au/Blog/post/Continously-database-integration.aspx。他创建了一个 osql 目标并设置了一个脚本文件。 osql 目标将根据 nant 脚本中的属性(数据库、用户名、密码)运行脚本文件。当然,您需要在构建机器上使用 osql 才能使其工作。 SQL Server 2008 中的所有内容(从创建数据库到恢复数据库)都是可编写脚本的。所以我的建议是手动执行您需要执行的操作,将其保存为脚本文件并在构建脚本中使用该脚本文件。

I just found this one and it is not bad: bottleit.com.au/Blog/post/Continuous-database-integration.aspx. He created an osql target and sets a script file. The osql target will run the script file based on properties in the nant script (database, user name, password). You will, of course, need osql on the build machine for this to work. Everything in sql server 2008 is scriptable, from creating to restoring databases. So my suggestion is to do what ever you need to do manually, save it as a script file and use that script file in your build script.

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