我已经做了一些谷歌搜索和搜索,但我没有找到很多帮助。我正在设计一个使用Microsoft SQL Server 2008 Server的Web服务。相关结构是这样的......有一个主数据库,包含所有主要账户/公司信息(公司名称,地址等)。此外,每个帐户/公司都有数据库,其中包含该帐户的所有相关(元?)数据(用户,设置等)。
SQL2008 Server
|---MainDatabase
|-------Accounts Table
|-----------Account Record where ID = 1
|-----------Account Record where ID = 2
|-----------Account Record where ID = 3
|---AccountDatabase00001
|-------Users Table for account where ID = 1
|---AccountDatabase00001
|-------Users Table for account where ID = 2
当创建一个新帐户时(比方说,ID = 3),我试图想出一种方法来将AccountDatabase0001
的表模式和视图(而不是数据)克隆到名为{的新数据库中{1}}。我可以使用几乎任何语言来执行复制,只要它可以以某种方式从PHP页面调用。
有没有人遇到过这样的PHP脚本,或任何其他类似语言的脚本?是否有命令我可以发送SQL服务器为我这样做?我确信我可以通过手动遍历结构并编写SQL语句来创建每个对象,但我希望能有更简单的东西。
答案 0 :(得分:1)
您可以使用SMO执行此操作而不会有太多麻烦。 Here's一个为其提供特定代码的网站。代码在C#中,但希望您可以将其集成或将其转换为PHP。
答案 1 :(得分:0)
我发现了一种远程简单的方法,可以在PHP中完成此操作,只需要一个自定义编写的存储过程的帮助,这些存储过程只需存在于您希望克隆的数据库中(对我而言,它总是AccountDatabase_1
)。您将表名称传递给存储过程,并返回您需要运行的脚本以便创建它(我们将在第二个数据库上执行此操作)。对于视图,创建脚本实际存储在Information_Schema.Views
表中,因此您只需从中提取视图名称和创建代码即可轻松创建克隆。
STORED PROC GenerateScript()
USE [SOURCE_DATABASE_NAME]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER Procedure [dbo].[GenerateScript]
(
@tableName varchar(100)
)
as
If exists (Select * from Information_Schema.COLUMNS where Table_Name= @tableName)
Begin
declare @sql varchar(8000)
declare @table varchar(100)
declare @cols table (datatype varchar(50))
insert into @cols values('bit')
insert into @cols values('binary')
insert into @cols values('bigint')
insert into @cols values('int')
insert into @cols values('float')
insert into @cols values('datetime')
insert into @cols values('text')
insert into @cols values('image')
insert into @cols values('uniqueidentifier')
insert into @cols values('smalldatetime')
insert into @cols values('tinyint')
insert into @cols values('smallint')
insert into @cols values('sql_variant')
set @sql=''
Select
@sql=@sql+
case when charindex('(',@sql,1)<=0 then '(' else '' end +Column_Name + ' ' +Data_Type +
case when Column_name='id' then ' IDENTITY ' else '' end +
case when Data_Type in (Select datatype from @cols) then '' else '(' end+
case when data_type in ('real','money','decimal','numeric') then cast(isnull(numeric_precision,'') as varchar)+','+
case when data_type in ('real','money','decimal','numeric') then cast(isnull(Numeric_Scale,'') as varchar) end
when data_type in ('char','nvarchar','nchar') then cast(isnull(Character_Maximum_Length,'') as varchar) else '' end+
case when data_type ='varchar' and Character_Maximum_Length<0 then 'max' else '' end+
case when data_type ='varchar' and Character_Maximum_Length>=0 then cast(isnull(Character_Maximum_Length,'') as varchar) else '' end+
case when Data_Type in (Select datatype from @cols)then '' else ')' end+
case when Is_Nullable='No ' then ' Not null ' else ' null ' end +
case when Column_Default is not null then 'DEFAULT ' + Column_Default else '' end + ','
from
Information_Schema.COLUMNS where Table_Name=@tableName
select
@table= 'Create table ' + table_Name
from
Information_Schema.COLUMNS
where
table_Name=@tableName
select @sql=@table + substring(@sql,1,len(@sql)-1) +' )'
select @sql as DDL
End
Else
Select 'The table '+@tableName + ' does not exist'
<强> PHP 强>
function cloneAccountDatabase($new_id){
$srcDatabaseName = "AccountDatabase_1"; //The Database we are cloning
$sourceConn = openDB($srcDatabaseName);
$destDatabaseName = "AccountDatabase_".(int)$new_id;
$destConn = openDB($destDatabaseName);
//ENSURE DATABASE EXISTS, OR CREATE IT
if ($destConn==null){
odbc_exec($sourceConn, "CREATE database " . $destDatabaseName);
$destConn = openDB($destDatabaseName);
}
//BUILD ARRAY OF TABLE NAMES
$tables = array();
$q = odbc_exec($sourceConn, "SELECT name FROM sys.Tables");
while (odbc_fetch_row($q))
$tables[]=odbc_result($q,"name");
//CREATE TABLES
foreach ($tables as $tableName){
$q=odbc_exec($sourceConn, "exec GenerateScript '$tableName';");
odbc_fetch_row($q);
$sql = odbc_result($q, 'ddl');
$q=odbc_exec($destConn, $sql);
}
//BUILD ARRAY OF VIEW NAMES AND CREATE
$q = odbc_exec($sourceConn, "SELECT * FROM Information_Schema.Views");
while (odbc_fetch_row($q)){
$view=odbc_result($q,"table_name");
$sql = odbc_result($q, "view_definition");
odbc_exec($destConn, $sql);
}
return(true);
}