数据表:T_BAS_ViewList_L(视图查询多语言)

T_BAS_ViewList_L(视图查询多语言):描述

名称

T_BAS_ViewList_L(视图查询多语言)

代码

T_BAS_ViewList_L

注释

 

模型

BOS

主键

PK_BAS_VIEWLIST_L


T_BAS_ViewList_L(视图查询多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FPKID

int

 

TRUE

 

子分录主键

FID

int

 

FALSE

 

语言类型内码

FLOCALEID

int

 

FALSE

 

描述

FVIEWSTATE

nvarchar(255)

255

FALSE

 


T_BAS_ViewList_L(视图查询多语言):脚本代码

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

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

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

/*==============================================================*/
/* Table: T_BAS_ViewList_L */
/*==============================================================*/
create table T_BAS_ViewList_L (
FPKID int not null default 0,
FID int null default 0,
FLOCALEID int null default 0,
FVIEWSTATE nvarchar(255) null,
constraint PK_T_BAS_VIEWLIST_L primary key (FPKID)
)
go

/*==============================================================*/
/* Index: IDX_BAS_VIEWLIST_ID */
/*==============================================================*/
create index IDX_BAS_VIEWLIST_ID on T_BAS_ViewList_L (
FID ASC,
FLOCALEID ASC
)
go

/*==============================================================*/
/* Index: IDX_BAS_VIEWLIST_STATE */
/*==============================================================*/
create index IDX_BAS_VIEWLIST_STATE on T_BAS_ViewList_L (
FVIEWSTATE ASC
)
go


T_BAS_ViewList_L(视图查询多语言):键值定义

名称

代码

主要的

PK_BAS_VIEWLIST_L

PK_BAS_VIEWLIST_L

TRUE


T_BAS_ViewList_L(视图查询多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_BAS_VIEWLIST_ID

IDX_BAS_VIEWLIST_ID

FALSE

FALSE

FALSE

FALSE

FALSE

T_BAS_ViewList_L(视图查询多语言)

IDX_BAS_VIEWLIST_STATE

IDX_BAS_VIEWLIST_STATE

FALSE

FALSE

FALSE

FALSE

FALSE

T_BAS_ViewList_L(视图查询多语言)