数据表:T_BOS_DevReport_L

T_BOS_DevReport_L:描述

名称

T_BOS_DevReport_L

代码

T_BOS_DevReport_L

注释

 

模型

BOS

主键

PK_BOS_DEVREPORT_L


T_BOS_DevReport_L:列规格定义

名称

代码

数据类型

长度

强制

注释

FPKID

FPKID

varchar(36)

36

TRUE

 

FReportID

FReportID

varchar(36)

36

FALSE

 

FLocaleId

FLocaleId

int

 

FALSE

 

FName

FName

nvarchar(80)

80

FALSE

 


T_BOS_DevReport_L:脚本代码

if exists (select 1
from sysindexes
where id = object_id('T_BOS_DevReport_L')
and name = 'IDX_BOS_DEVREPORT_L'
and indid > 0
and indid < 255)
drop index T_BOS_DevReport_L.IDX_BOS_DEVREPORT_L
go

if exists (select 1
from sysobjects
where id = object_id('T_BOS_DevReport_L')
and type = 'U')
drop table T_BOS_DevReport_L
go

/*==============================================================*/
/* Table: T_BOS_DevReport_L */
/*==============================================================*/
create table T_BOS_DevReport_L (
FPKID varchar(36) not null default '',
FReportID varchar(36) null,
FLocaleId int null,
FName nvarchar(80) null,
constraint PK_BOS_DEVREPORT_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: IDX_BOS_DEVREPORT_L */
/*==============================================================*/
create index IDX_BOS_DEVREPORT_L on T_BOS_DevReport_L (
FReportID ASC,
FLocaleId ASC
)
go


T_BOS_DevReport_L:键值定义

名称

代码

主要的

PK_BOS_DEVREPORT_L

PK_BOS_DEVREPORT_L

TRUE


T_BOS_DevReport_L:索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_BOS_DEVREPORT_L

IDX_BOS_DEVREPORT_L

FALSE

FALSE

FALSE

FALSE

FALSE

T_BOS_DevReport_L