求助,看看我这个数据库备份文件,在线等
<p>各位帮帮忙,看看我这个数据库备份文件是不是对的,我导入时出错,怎么回事呢?</p><p>use xopensdb<br/>go<br/>print 'Creating the "xopensdb" table 网络接口关联表'<br/>go<br/>if exists (select name from sysobjects where name="网络接口关联表")<br/>drop table 网络接口关联表<br/>go<br/>if exists (select * from master.dbo.sysdatabases<br/> where name = "xopensdb")<br/>begin<br/> create table 网络接口关联表<br/> (<br/> /*东方字段*/<br/> 代码/*name*/ char(12) not null,<br/> RTU号/*rtuno*/ smallint not null,<br/> 系数/*coef*/ float not null,<br/> /*山大字段*/<br/> 类型/*type*/ smallint not null,<br/> 部件类型/*BJType*/ tinyint not null,<br/> 部件参数/*BJCS*/ tinyint not null,<br/> 部件ID/*BJID*/ smallint not null,<br/> )<br/>end<br/>go<br/>grant select on 网络接口关联表 to public<br/>go<br/>alter table 网络接口关联表<br/>add constraint 网络接口关联表索引<br/> primary key clustered (代码)<br/>go<br/>execute sp_primarykey 网络接口关联表,代码<br/></p>
页:
[1]