You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
sql-tools/ImportBK/导BOKA_3_配置数据库地址_.sql

25 lines
596 B

--配置数据库地址
--在A8数据库执行
/* ----------------------------------------------
模板
EXEC PInitConnection @FromServer='BOKA数据库地址,端口',
@FromDatabase='BOKA数据库名称',
@FromUser='BOKA数据库用户',
@FromPassword='BOKA数据库密码',
@ToDatabase='A8数据库名称'
--检查一下原数据库对不对
select * from fromServer.BOKA数据库名称.dbo.gam05
--检查一下新数据库对不对
select * from A8数据库名称.dbo.TCompany
----------------------------------------------*/
/* ----------------------------------------------