数据表:t_ASC_DistLogAssign (任务分配详情)

t_ASC_DistLogAssign (任务分配详情):描述

名称

t_ASC_DistLogAssign (任务分配详情)

代码

t_ASC_DistLogAssign

注释

共享中心任务池,任务分配详情

模型

BOS

主键

PK_ASC_DISTLOGASSIGN


t_ASC_DistLogAssign (任务分配详情):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FEntryId

int

 

TRUE

 

外键

FId

int

 

TRUE

 

序号

FSeq

int

 

TRUE

 

共享池任务内码

FASCAssignId

int

 

TRUE

 

采用的分配规则

FDistRuleId

int

 

TRUE

 

分配的用户

FUserId

int

 

TRUE

 

日志

FDescription

nvarchar(1000)

1000

TRUE

 


t_ASC_DistLogAssign (任务分配详情):脚本代码

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

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

/*==============================================================*/
/* Table: t_ASC_DistLogAssign */
/*==============================================================*/
create table t_ASC_DistLogAssign (
FEntryId int not null default 0,
FId int not null default 0,
FSeq int not null default 0,
FASCAssignId int not null default 0,
FDistRuleId int not null default 0,
FUserId int not null default 0,
FDescription nvarchar(1000) not null default '',
constraint PK_ASC_DISTLOGASSIGN primary key (FEntryId)
)
go

/*==============================================================*/
/* Index: IDX_DistLogAssign_FId */
/*==============================================================*/
create index IDX_DistLogAssign_FId on t_ASC_DistLogAssign (
FId ASC
)
go


t_ASC_DistLogAssign (任务分配详情):键值定义

名称

代码

主要的

PK_ASC_DISTLOGASSIGN

PK_ASC_DISTLOGASSIGN

TRUE


t_ASC_DistLogAssign (任务分配详情):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_DistLogAssign_FId

IDX_DistLogAssign_FId

FALSE

FALSE

FALSE

FALSE

FALSE

t_ASC_DistLogAssign (任务分配详情)