Table RaterScore

Description of table RaterScore

Rated tests (presently just for writing tests) have their scores stored here. The score reporting category, rater order, rating score and it's meaning are stored in this table.


Code preview of table RaterScore

use StudentCentered
go

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

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

/*==============================================================*/
/* Table: RaterScore */
/*==============================================================*/
create table dbo.RaterScore (
ID int not null,
SMFConfig_ID int not null,
UnqTstEvent_ID int not null,
Ctgry_ID int identity,
RaterOrder int null,
RatingScoreMng_ID int not null,
RatingScore char(2) null,
UpdtID varchar(18) null,
UpdtDt datetime null,
CrtrID varchar(18) null,
CrtDt datetime null,
EffDt datetime not null default getdate(),
EndDt datetime null,
LoadSeq_ID int null,
LoadDt datetime null,
constraint RaterScore_PK primary key nonclustered (ID)
on LargeIDX
)
on LargeTBL
go

/*==============================================================*/
/* Index: UnqTstEvent_FK */
/*==============================================================*/
create index UnqTstEvent_FK on dbo.RaterScore (
UnqTstEvent_ID,
SMFConfig_ID
)
on LargeIDX
go


List of columns of the table RaterScore

Name

Code

Rater Score Identifier

ID

SMFConfig_ID

SMFConfig_ID

Unique Test Event Identifier

UnqTstEvent_ID

Category Identifier

Ctgry_ID

Rater Order

RaterOrder

Rating Score Meaning Identifier

RatingScoreMng_ID

Rating Score

RatingScore

Update Identifier

UpdtID

Update Date

UpdtDt

Creator Identifier

CrtrID

Create Date

CrtDt

Effective Date

EffDt

End Date

EndDt

LoadSeq_ID

LoadSeq_ID

LoadDt

LoadDt


Column ID of the table RaterScore

Card of the column ID of the table RaterScore

Name

Rater Score Identifier

Code

ID

Data Type

int

Mandatory

TRUE


Description of the column ID of the table RaterScore

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


Column SMFConfig_ID of the table RaterScore

Card of the column SMFConfig_ID of the table RaterScore

Name

SMFConfig_ID

Code

SMFConfig_ID

Data Type

int

Mandatory

TRUE


Description of the column SMFConfig_ID of the table RaterScore

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


Column UnqTstEvent_ID of the table RaterScore

Card of the column UnqTstEvent_ID of the table RaterScore

Name

Unique Test Event Identifier

Code

UnqTstEvent_ID

Data Type

int

Mandatory

TRUE


Description of the column UnqTstEvent_ID of the table RaterScore

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 Ctgry_ID of the table RaterScore

Card of the column Ctgry_ID of the table RaterScore

Name

Category Identifier

Code

Ctgry_ID

Data Type

int

Mandatory

TRUE


Description of the column Ctgry_ID of the table RaterScore

Foreign key to the Category (Ctgry) table where the names of the score reporting category are held.


Column RaterOrder of the table RaterScore

Card of the column RaterOrder of the table RaterScore

Name

Rater Order

Code

RaterOrder

Data Type

int

Mandatory

FALSE


Description of the column RaterOrder of the table RaterScore

The identifier for the rater. There are potentially up to 3 raters number 1, 2 and 3.


Column RatingScoreMng_ID of the table RaterScore

Card of the column RatingScoreMng_ID of the table RaterScore

Name

Rating Score Meaning Identifier

Code

RatingScoreMng_ID

Data Type

int

Mandatory

TRUE


Description of the column RatingScoreMng_ID of the table RaterScore

Foreign key to the Master Codes (MstrCd) table that may be used to tie the Rating Score to a meaning for the score given.


Column RatingScore of the table RaterScore

Card of the column RatingScore of the table RaterScore

Name

Rating Score

Code

RatingScore

Data Type

char(2)

Mandatory

FALSE


Description of the column RatingScore of the table RaterScore

The score given by a rater within a category of score.


Column UpdtID of the table RaterScore

Card of the column UpdtID of the table RaterScore

Name

Update Identifier

Code

UpdtID

Data Type

varchar(18)

Mandatory

FALSE


Description of the column UpdtID of the table RaterScore

The user identification of the person or process that last updated the record in StudentCenteredStaging.


Column UpdtDt of the table RaterScore

Card of the column UpdtDt of the table RaterScore

Name

Update Date

Code

UpdtDt

Data Type

datetime

Mandatory

FALSE


Description of the column UpdtDt of the table RaterScore

The date of the last update to the source row of data from StudentCenteredStaging.


Column CrtrID of the table RaterScore

Card of the column CrtrID of the table RaterScore

Name

Creator Identifier

Code

CrtrID

Data Type

varchar(18)

Mandatory

FALSE


Description of the column CrtrID of the table RaterScore

The user identification of the person or process that created the record in StudentCenteredStaging.


Column CrtDt of the table RaterScore

Card of the column CrtDt of the table RaterScore

Name

Create Date

Code

CrtDt

Data Type

datetime

Mandatory

FALSE


Description of the column CrtDt of the table RaterScore

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


Column EffDt of the table RaterScore

Card of the column EffDt of the table RaterScore

Name

Effective Date

Code

EffDt

Data Type

datetime

Mandatory

TRUE


Description of the column EffDt of the table RaterScore

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


Column EndDt of the table RaterScore

Card of the column EndDt of the table RaterScore

Name

End Date

Code

EndDt

Data Type

datetime

Mandatory

FALSE


Description of the column EndDt of the table RaterScore

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


Column LoadSeq_ID of the table RaterScore

Card of the column LoadSeq_ID of the table RaterScore

Name

LoadSeq_ID

Code

LoadSeq_ID

Data Type

int

Mandatory

FALSE


Description of the column LoadSeq_ID of the table RaterScore

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


Column LoadDt of the table RaterScore

Card of the column LoadDt of the table RaterScore

Name

LoadDt

Code

LoadDt

Data Type

datetime

Mandatory

FALSE


Description of the column LoadDt of the table RaterScore

The date the data was loaded into StudentCentered.