Table CmptrBasedData

Description of table CmptrBasedData

The computer based data table holds some information that is related to online test events such as the number of items returned, attempted, correct and omitted as well as test start and end dates.


Code preview of table CmptrBasedData

use StudentCentered
go

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

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

/*==============================================================*/
/* Table: CmptrBasedData */
/*==============================================================*/
create table dbo.CmptrBasedData (
ID int not null,
SMFConfig_ID int not null,
UnqTstEvent_ID int not null,
NbrItemAtmpt tinyint null,
TstStrtDt datetime null,
TstEndDt datetime null,
CrtDt datetime not null default getdate(),
EffDt datetime not null default getdate(),
EndDt datetime null,
LoadSeq_ID int null,
LoadDt datetime null,
constraint CmptrBasedData_PK primary key nonclustered (ID)
on LargeIDX
)
on LargeTBL
go

/*==============================================================*/
/* Index: ExtrnlEventID_IDX */
/*==============================================================*/
create index ExtrnlEventID_IDX on dbo.CmptrBasedData (

)
on LargeIDX
go


List of columns of the table CmptrBasedData

Name

Code

Computer Based Data Identifier

ID

SMFConfig_ID

SMFConfig_ID

Unique Test Event Identifier

UnqTstEvent_ID

Number of Items Attempted

NbrItemAtmpt

Test Start Date

TstStrtDt

Test End Date

TstEndDt

Create Date

CrtDt

Effective Date

EffDt

End Date

EndDt

LoadSeq_ID

LoadSeq_ID

LoadDt

LoadDt


Column ID of the table CmptrBasedData

Card of the column ID of the table CmptrBasedData

Name

Computer Based Data Identifier

Code

ID

Data Type

int

Mandatory

TRUE


Description of the column ID of the table CmptrBasedData

Unique ID assigned and maintained by the database for the CmptrBasedData table.


Column SMFConfig_ID of the table CmptrBasedData

Card of the column SMFConfig_ID of the table CmptrBasedData

Name

SMFConfig_ID

Code

SMFConfig_ID

Data Type

int

Mandatory

TRUE


Description of the column SMFConfig_ID of the table CmptrBasedData

Foreign key from the Standard Message Format Configuration (SMFConfig) table. This key represents a subject and year combination.


Column UnqTstEvent_ID of the table CmptrBasedData

Card of the column UnqTstEvent_ID of the table CmptrBasedData

Name

Unique Test Event Identifier

Code

UnqTstEvent_ID

Data Type

int

Mandatory

TRUE


Description of the column UnqTstEvent_ID of the table CmptrBasedData

Foreign key from the Unique Test Event (UnqTstEvent) table. This identifier is used to locate all versions of a given test in tables throughout the StudentCentered database.


Column NbrItemAtmpt of the table CmptrBasedData

Card of the column NbrItemAtmpt of the table CmptrBasedData

Name

Number of Items Attempted

Code

NbrItemAtmpt

Data Type

tinyint

Mandatory

FALSE


Description of the column NbrItemAtmpt of the table CmptrBasedData

Number of test event items attempted.


Column TstStrtDt of the table CmptrBasedData

Card of the column TstStrtDt of the table CmptrBasedData

Name

Test Start Date

Code

TstStrtDt

Data Type

datetime

Mandatory

FALSE


Description of the column TstStrtDt of the table CmptrBasedData

The Start date and time for a test event.


Column TstEndDt of the table CmptrBasedData

Card of the column TstEndDt of the table CmptrBasedData

Name

Test End Date

Code

TstEndDt

Data Type

datetime

Mandatory

FALSE


Description of the column TstEndDt of the table CmptrBasedData

The End date and time for a test event.


Column CrtDt of the table CmptrBasedData

Card of the column CrtDt of the table CmptrBasedData

Name

Create Date

Code

CrtDt

Data Type

datetime

Mandatory

TRUE


Description of the column CrtDt of the table CmptrBasedData

The date the source row of data was created in StudentCenteredStaging.


Column EffDt of the table CmptrBasedData

Card of the column EffDt of the table CmptrBasedData

Name

Effective Date

Code

EffDt

Data Type

datetime

Mandatory

TRUE


Description of the column EffDt of the table CmptrBasedData

The date that this row of data becomes effective in StudentCentered.


Column EndDt of the table CmptrBasedData

Card of the column EndDt of the table CmptrBasedData

Name

End Date

Code

EndDt

Data Type

datetime

Mandatory

FALSE


Description of the column EndDt of the table CmptrBasedData

The date that this row of data ceases to be effective in StudentCentered.


Column LoadSeq_ID of the table CmptrBasedData

Card of the column LoadSeq_ID of the table CmptrBasedData

Name

LoadSeq_ID

Code

LoadSeq_ID

Data Type

int

Mandatory

FALSE


Description of the column LoadSeq_ID of the table CmptrBasedData

Foreign key from the Load Sequence (LoadSeq) table. Each load receives a unique identifier.


Column LoadDt of the table CmptrBasedData

Card of the column LoadDt of the table CmptrBasedData

Name

LoadDt

Code

LoadDt

Data Type

datetime

Mandatory

FALSE


Description of the column LoadDt of the table CmptrBasedData

The date the data was loaded into StudentCentered.