0

我正在开发一个多租户应用程序,其中将自动执行配置过程。

供应过程将创建一个带有表、过程、函数的新 SQL Server 数据库,并将默认数据插入数据库。

我的问题是执行此过程的最佳方法是什么?

4

2 回答 2

0

我的感受是:

1.Create multiple sets of SQL scripts like DBScripts,TableScripts,ProcScripts ect.
2.In DBScripts,just add create database code and here you can hardcode the db name also.
3.And whenver there are any changes in these scripts you can edit and release the new build for the client.

4.Client just has to click some button on front end to create DB,Tables,Sprocs etc.
于 2012-08-09T07:23:30.427 回答
0

在尝试从 C# 执行数据库脚本感到头疼之后,我决定使用以下脚本以编程方式恢复数据库。

RESTORE FILELISTONLY
FROM DISK = 'C:\BaackUpFile.bak'

RESTORE DATABASE DbName
FROM DISK = 'C:\BaackUpFile.bak'
WITH MOVE 'YourMDFLogicalName' TO 'C:\DataYourMDFFile.mdf',
MOVE 'YourLDFLogicalName' TO 'C:\DataYourLDFFile.ldf'
于 2012-08-14T09:49:06.290 回答