Table Event

Description of table Event

The Event table is the core of the test. There should be one active (non end dated) record in this table for each test taken.


Code preview of table Event

use StudentCentered
go

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

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

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

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

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

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

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

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

/*==============================================================*/
/* Table: Event */
/*==============================================================*/
create table dbo.Event (
ID int not null,
SMFConfig_ID int not null,
UnqTstEvent_ID int not null,
SMFBlock_ID int null,
UpdtID varchar(18) null,
UpdtDt datetime null,
CrtrID varchar(18) null,
CrtDt datetime null,
EffDt datetime not null default getdate(),
EndDt datetime null,
DistDupFg char(1) null,
SchlDupFg char(1) null,
SSIDChar varchar(10) null,
SSIDBigInt bigint null,
ChkDigitStdntID int null,
DistStdntID varchar(10) null,
LNm varchar(50) null,
FNm varchar(40) null,
MI varchar(3) null,
Gnrtn varchar(4) null,
Gndr char(1) null,
BirthDt datetime null,
BirthDtTxt varchar(8) null,
DistSPED char(1) null,
XtdEd1PctFg char(1) null,
StayInSchl char(1) null,
StayInDist char(1) null,
EthnicCd char(1) null,
AppealFg char(1) null,
RescoreFg char(1) null,
Tst_ID int not null,
AcdmYr varchar(4) null,
TstYr varchar(4) null,
SbjctCd char(2) null,
TstDt varchar(6) null,
TstDtTxt varchar(6) null,
TstValidFg char(1) null,
LexileScore varchar(8) null,
SrtTstTyp char(1) null,
ChlngFg char(1) null,
CalcAdmnCd char(1) null,
AttndDistInstID varchar(4) null,
AttndSchlInstID varchar(4) null,
ParticDistInstID varchar(4) null,
ParticSchlInstID varchar(4) null,
ResdDistInstID varchar(4) null,
ResdSchlInstID varchar(4) null,
TrgtAssistFg char(1) null,
SSIDBestScore char(1) null,
YrPctileRank int null,
AYPDistPartic char(1) null,
AYPDistPrfrm char(1) null,
AYPSchlPartic char(1) null,
AYPSchlPrfrm char(1) null,
GrpRptDistPartic char(1) null,
GrpRptDistPrfrm char(1) null,
GrpRptSchlPartic char(1) null,
GrpRptSchlPrfrm char(1) null,
RCDistPartic char(1) null,
RCDistPrfrm char(1) null,
RCSchlPartic char(1) null,
RCSchlPrfrm char(1) null,
LoadSeq_ID int null,
LoadDt datetime null,
AcmdtnCd char(1) null,
constraint EventClsRm_PK primary key nonclustered (ID)
on LargeIDX
)
on LargeTBL
go

/*==============================================================*/
/* Index: SMFFile_IDX */
/*==============================================================*/
create index SMFFile_IDX on dbo.Event (
SMFBlock_ID
)
on LargeIDX
go

/*==============================================================*/
/* Index: RecNum_IDX */
/*==============================================================*/
create index RecNum_IDX on dbo.Event (
)
on LargeIDX
go

/*==============================================================*/
/* Index: Tst_FK */
/*==============================================================*/
create index Tst_FK on dbo.Event (
Tst_ID
)
on LargeIDX
go

/*==============================================================*/
/* Index: SSID_IDX */
/*==============================================================*/
create index SSID_IDX on dbo.Event (
ChkDigitStdntID
)
on LargeIDX
go

/*==============================================================*/
/* Index: DistInstIDStdntID_IDX */
/*==============================================================*/
create index DistInstIDStdntID_IDX on dbo.Event (
DistStdntID
)
on LargeIDX
go

/*==============================================================*/
/* Index: StdntNm_IDX */
/*==============================================================*/
create index StdntNm_IDX on dbo.Event (
LNm,
FNm,
BirthDt
)
on LargeIDX
go

/*==============================================================*/
/* Index: EnrlGrade_IDX */
/*==============================================================*/
create index EnrlGrade_IDX on dbo.Event (

)
on LargeIDX
go


List of columns of the table Event

Name

Code

Event Identifier

ID

Standard Message Format Configuration Identifier

SMFConfig_ID

Unique Test Event Identifier

UnqTstEvent_ID

Standard Message Format Block Identifier

SMFBlock_ID

Update Identifier

UpdtID

Update Date

UpdtDt

Creator Identifier

CrtrID

Create Date

CrtDt

Effective Date

EffDt

End Date

EndDt

District Duplicate Flag

DistDupFg

School Duplicate Flag

SchlDupFg

Secure Student Identifier Character

SSIDChar

Secure Student Identifier Big Integer

SSIDBigInt

Check Digit Student Identifier

ChkDigitStdntID

District Student Identifier

DistStdntID

Last Name

LNm

First Name

FNm

Middle Initial

MI

Generation

Gnrtn

Gender

Gndr

Birth Date

BirthDt

Birth Date Text

BirthDtTxt

District Special Education

DistSPED

Extended Education 1 Percent Flag

XtdEd1PctFg

Stay in School

StayInSchl

Stay in District

StayInDist

Combined Ethnicity Code

EthnicCd

Appeal Flag

AppealFg

Rescore Flag

RescoreFg

Test Identifier

Tst_ID

Academic Year

AcdmYr

Test Year

TstYr

Subject

SbjctCd

Test Date

TstDt

Test Date Text

TstDtTxt

Test Valid Flag

TstValidFg

Lexile Score

LexileScore

Sort Test Type

SrtTstTyp

Challenge Flag

ChlngFg

Calculated Administration Code

CalcAdmnCd

Attending District Institution Identifier

AttndDistInstID

Attending School Institution Identifier

AttndSchlInstID

Participation District Institution Identifier

ParticDistInstID

Participation School Institution Identifier

ParticSchlInstID

Resident District Institution Identifier

ResdDistInstID

Resident School Institution Identifier

ResdSchlInstID

Targeted Assistance Flag

TrgtAssistFg

Secure Student Identifier Best Score

SSIDBestScore

Year Percentile Rank

YrPctileRank

Annual Yearly Progress District Participation

AYPDistPartic

Annual Yearly Progress District Performance

AYPDistPrfrm

Annual Yearly Progress School Participation

AYPSchlPartic

Annual Yearly Progress School Performance

AYPSchlPrfrm

Group Report District Participation

GrpRptDistPartic

Group Report District Performance

GrpRptDistPrfrm

Group Report School Participation

GrpRptSchlPartic

Group Report School Performance

GrpRptSchlPrfrm

Report Card District Participation

RCDistPartic

Report Card District Performance

RCDistPrfrm

Report Card School Participation

RCSchlPartic

Report Card School Performance

RCSchlPrfrm

LoadSeq_ID

LoadSeq_ID

LoadDt

LoadDt

Accommodation Code

AcmdtnCd


Column ID of the table Event

Card of the column ID of the table Event

Name

Event Identifier

Code

ID

Data Type

int

Mandatory

TRUE


Description of the column ID of the table Event

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


Column SMFConfig_ID of the table Event

Card of the column SMFConfig_ID of the table Event

Name

Standard Message Format Configuration Identifier

Code

SMFConfig_ID

Data Type

int

Mandatory

TRUE


Description of the column SMFConfig_ID of the table Event

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


Column UnqTstEvent_ID of the table Event

Card of the column UnqTstEvent_ID of the table Event

Name

Unique Test Event Identifier

Code

UnqTstEvent_ID

Data Type

int

Mandatory

TRUE


Description of the column UnqTstEvent_ID of the table Event

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 SMFBlock_ID of the table Event

Card of the column SMFBlock_ID of the table Event

Name

Standard Message Format Block Identifier

Code

SMFBlock_ID

Data Type

int

Mandatory

FALSE


Description of the column SMFBlock_ID of the table Event

Foreign key from the Standard Message Format Block (SMFBlock) table. This key identifies a unit of work that was processed together that is owned by a district.


Column UpdtID of the table Event

Card of the column UpdtID of the table Event

Name

Update Identifier

Code

UpdtID

Data Type

varchar(18)

Mandatory

FALSE


Description of the column UpdtID of the table Event

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


Column UpdtDt of the table Event

Card of the column UpdtDt of the table Event

Name

Update Date

Code

UpdtDt

Data Type

datetime

Mandatory

FALSE


Description of the column UpdtDt of the table Event

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


Column CrtrID of the table Event

Card of the column CrtrID of the table Event

Name

Creator Identifier

Code

CrtrID

Data Type

varchar(18)

Mandatory

FALSE


Description of the column CrtrID of the table Event

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


Column CrtDt of the table Event

Card of the column CrtDt of the table Event

Name

Create Date

Code

CrtDt

Data Type

datetime

Mandatory

FALSE


Description of the column CrtDt of the table Event

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


Column EffDt of the table Event

Card of the column EffDt of the table Event

Name

Effective Date

Code

EffDt

Data Type

datetime

Mandatory

TRUE


Description of the column EffDt of the table Event

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


Column EndDt of the table Event

Card of the column EndDt of the table Event

Name

End Date

Code

EndDt

Data Type

datetime

Mandatory

FALSE


Description of the column EndDt of the table Event

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


Column DistDupFg of the table Event

Card of the column DistDupFg of the table Event

Name

District Duplicate Flag

Code

DistDupFg

Data Type

char(1)

Mandatory

FALSE


Description of the column DistDupFg of the table Event

Flag when set to 'D' to indicate a delete for a duplicate record.


Column SchlDupFg of the table Event

Card of the column SchlDupFg of the table Event

Name

School Duplicate Flag

Code

SchlDupFg

Data Type

char(1)

Mandatory

FALSE


Description of the column SchlDupFg of the table Event

Flag when set to 'D' to indicate a delete for a duplicate record.


Column SSIDChar of the table Event

Card of the column SSIDChar of the table Event

Name

Secure Student Identifier Character

Code

SSIDChar

Data Type

varchar(10)

Mandatory

FALSE


Description of the column SSIDChar of the table Event

A character version of the Check Digit Student Identifier (ChkDigitStdntID).


Column SSIDBigInt of the table Event

Card of the column SSIDBigInt of the table Event

Name

Secure Student Identifier Big Integer

Code

SSIDBigInt

Data Type

bigint

Mandatory

FALSE


Description of the column SSIDBigInt of the table Event

A big integer version of the Check Digit Student Identifier (ChkDigitStdntID).


Column ChkDigitStdntID of the table Event

Card of the column ChkDigitStdntID of the table Event

Name

Check Digit Student Identifier

Code

ChkDigitStdntID

Data Type

int

Mandatory

FALSE


Description of the column ChkDigitStdntID of the table Event

An integer version of the Check Digit Student Identifier (ChkDigitStdntID).


Column DistStdntID of the table Event

Card of the column DistStdntID of the table Event

Name

District Student Identifier

Code

DistStdntID

Data Type

varchar(10)

Mandatory

FALSE


Description of the column DistStdntID of the table Event

An externally assigned district student ID maintained and assigned by school districts.


Column LNm of the table Event

Card of the column LNm of the table Event

Name

Last Name

Code

LNm

Data Type

varchar(50)

Mandatory

FALSE


Description of the column LNm of the table Event

Student's Last name as submitted for the test event.


Column FNm of the table Event

Card of the column FNm of the table Event

Name

First Name

Code

FNm

Data Type

varchar(40)

Mandatory

FALSE


Description of the column FNm of the table Event

Student's First name as submitted for the test event.


Column MI of the table Event

Card of the column MI of the table Event

Name

Middle Initial

Code

MI

Data Type

varchar(3)

Mandatory

FALSE


Description of the column MI of the table Event

Student's Middle name as submitted for the test event.


Column Gnrtn of the table Event

Card of the column Gnrtn of the table Event

Name

Generation

Code

Gnrtn

Data Type

varchar(4)

Mandatory

FALSE


Description of the column Gnrtn of the table Event

Student's Generation as submitted for the test event.


Column Gndr of the table Event

Card of the column Gndr of the table Event

Name

Gender

Code

Gndr

Data Type

char(1)

Mandatory

FALSE


Description of the column Gndr of the table Event

Student's Gender as submitted for the test event.


Column BirthDt of the table Event

Card of the column BirthDt of the table Event

Name

Birth Date

Code

BirthDt

Data Type

datetime

Mandatory

FALSE


Description of the column BirthDt of the table Event

Student's date ot birth in date format, as submitted for the test event.


Column BirthDtTxt of the table Event

Card of the column BirthDtTxt of the table Event

Name

Birth Date Text

Code

BirthDtTxt

Data Type

varchar(8)

Mandatory

FALSE


Description of the column BirthDtTxt of the table Event

Student's date of birth as character(8).


Column DistSPED of the table Event

Card of the column DistSPED of the table Event

Name

District Special Education

Code

DistSPED

Data Type

char(1)

Mandatory

FALSE


Description of the column DistSPED of the table Event

The student is served by a district special education program and is in a resource room for at least 40% of the time


Column XtdEd1PctFg of the table Event

Card of the column XtdEd1PctFg of the table Event

Name

Extended Education 1 Percent Flag

Code

XtdEd1PctFg

Data Type

char(1)

Mandatory

FALSE


Description of the column XtdEd1PctFg of the table Event

Indicates that the district chose for a record to count as "not proficient" for the purposes of AYP so that the district would keep below the 1% cap


Column StayInSchl of the table Event

Card of the column StayInSchl of the table Event

Name

Stay in School

Code

StayInSchl

Data Type

char(1)

Mandatory

FALSE


Description of the column StayInSchl of the table Event

The student was in the school for at least 1/2 of the school year


Column StayInDist of the table Event

Card of the column StayInDist of the table Event

Name

Stay in District

Code

StayInDist

Data Type

char(1)

Mandatory

FALSE


Description of the column StayInDist of the table Event

The student was in the district for at least 1/2 of the school year


Column EthnicCd of the table Event

Card of the column EthnicCd of the table Event

Name

Combined Ethnicity Code

Code

EthnicCd

Data Type

char(1)

Mandatory

FALSE


Description of the column EthnicCd of the table Event

Resolved ethnicity based on the individual ethnicity codes


Column AppealFg of the table Event

Card of the column AppealFg of the table Event

Name

Appeal Flag

Code

AppealFg

Data Type

char(1)

Mandatory

FALSE


Description of the column AppealFg of the table Event

Whether the test was re-scored based on an appeal by a district


Column RescoreFg of the table Event

Card of the column RescoreFg of the table Event

Name

Rescore Flag

Code

RescoreFg

Data Type

char(1)

Mandatory

FALSE


Description of the column RescoreFg of the table Event

Indicates if the record has been rescored.
'R' = Record rescored
' ' = Record not rescored


Column Tst_ID of the table Event

Card of the column Tst_ID of the table Event

Name

Test Identifier

Code

Tst_ID

Data Type

int

Mandatory

TRUE


Description of the column Tst_ID of the table Event

Foreign key from the Test (Tst) table. This key identifies the test taken by the student.


Column AcdmYr of the table Event

Card of the column AcdmYr of the table Event

Name

Academic Year

Code

AcdmYr

Data Type

varchar(4)

Mandatory

FALSE


Description of the column AcdmYr of the table Event

The last two digits of the beginning school year followed by the last two digits of the ending school year (ie 0102). May also be known as the acedemic year.


Column TstYr of the table Event

Card of the column TstYr of the table Event

Name

Test Year

Code

TstYr

Data Type

varchar(4)

Mandatory

FALSE


Description of the column TstYr of the table Event

The last two digits of the beginning school year followed by the last two digits of the ending school year (ie 0102) within which the test was administered.


Column SbjctCd of the table Event

Card of the column SbjctCd of the table Event

Name

Subject

Code

SbjctCd

Data Type

char(2)

Mandatory

FALSE


Description of the column SbjctCd of the table Event

A two digit code indicating the subject for the test.
MA=math, RL= reading, SC=Science, SS=Social Science, WR=Writing, PS=Problem Solving, XR=Extended Reading, XM=Extended Math, XW=Extended Writing, CE= CLARS Elementry, CE= CLARS Secondary.


Column TstDt of the table Event

Card of the column TstDt of the table Event

Name

Test Date

Code

TstDt

Data Type

varchar(6)

Mandatory

FALSE


Description of the column TstDt of the table Event

Required and filled as MMYYYY
(added by DWALL)


Column TstDtTxt of the table Event

Card of the column TstDtTxt of the table Event

Name

Test Date Text

Code

TstDtTxt

Data Type

varchar(6)

Mandatory

FALSE


Description of the column TstDtTxt of the table Event

The date the test was taken in character format.


Column TstValidFg of the table Event

Card of the column TstValidFg of the table Event

Name

Test Valid Flag

Code

TstValidFg

Data Type

char(1)

Mandatory

FALSE


Description of the column TstValidFg of the table Event

Test attemptedness based on number of items attempted. Set to N = 15 attempted, (12 in grade 3). Set to Y = 16 (13 in grade 3).


Column LexileScore of the table Event

Card of the column LexileScore of the table Event

Name

Lexile Score

Code

LexileScore

Data Type

varchar(8)

Mandatory

FALSE


Description of the column LexileScore of the table Event

The associated lexile score for reading tests completed


Column SrtTstTyp of the table Event

Card of the column SrtTstTyp of the table Event

Name

Sort Test Type

Code

SrtTstTyp

Data Type

char(1)

Mandatory

FALSE


Description of the column SrtTstTyp of the table Event

Mode of test administration


Column ChlngFg of the table Event

Card of the column ChlngFg of the table Event

Name

Challenge Flag

Code

ChlngFg

Data Type

char(1)

Mandatory

FALSE


Description of the column ChlngFg of the table Event

Identifies an offgrade challenge (ie. L= Lower, H= Higher)


Column CalcAdmnCd of the table Event

Card of the column CalcAdmnCd of the table Event

Name

Calculated Administration Code

Code

CalcAdmnCd

Data Type

char(1)

Mandatory

FALSE


Description of the column CalcAdmnCd of the table Event

Indicates absencens modification or rationnale for virtual records


Column AttndDistInstID of the table Event

Card of the column AttndDistInstID of the table Event

Name

Attending District Institution Identifier

Code

AttndDistInstID

Data Type

varchar(4)

Mandatory

FALSE


Description of the column AttndDistInstID of the table Event

Attending District Institution ID maintained by the Institutions database.


Column AttndSchlInstID of the table Event

Card of the column AttndSchlInstID of the table Event

Name

Attending School Institution Identifier

Code

AttndSchlInstID

Data Type

varchar(4)

Mandatory

FALSE


Description of the column AttndSchlInstID of the table Event

The school in which the student attended


Column ParticDistInstID of the table Event

Card of the column ParticDistInstID of the table Event

Name

Participation District Institution Identifier

Code

ParticDistInstID

Data Type

varchar(4)

Mandatory

FALSE


Description of the column ParticDistInstID of the table Event

The district in which the student was enrolled on the first school day in May


Column ParticSchlInstID of the table Event

Card of the column ParticSchlInstID of the table Event

Name

Participation School Institution Identifier

Code

ParticSchlInstID

Data Type

varchar(4)

Mandatory

FALSE


Description of the column ParticSchlInstID of the table Event

The school in which the student was enrolled on the first school day in May


Column ResdDistInstID of the table Event

Card of the column ResdDistInstID of the table Event

Name

Resident District Institution Identifier

Code

ResdDistInstID

Data Type

varchar(4)

Mandatory

FALSE


Description of the column ResdDistInstID of the table Event

The resident district in which the student was enrolled at the time the test was administered


Column ResdSchlInstID of the table Event

Card of the column ResdSchlInstID of the table Event

Name

Resident School Institution Identifier

Code

ResdSchlInstID

Data Type

varchar(4)

Mandatory

FALSE


Description of the column ResdSchlInstID of the table Event

The resident school in which the student was enrolled at the time the test was administered


Column TrgtAssistFg of the table Event

Card of the column TrgtAssistFg of the table Event

Name

Targeted Assistance Flag

Code

TrgtAssistFg

Data Type

char(1)

Mandatory

FALSE


Description of the column TrgtAssistFg of the table Event

Student enrolled in Targeted Assistance program


Column SSIDBestScore of the table Event

Card of the column SSIDBestScore of the table Event

Name

Secure Student Identifier Best Score

Code

SSIDBestScore

Data Type

char(1)

Mandatory

FALSE


Description of the column SSIDBestScore of the table Event

Highest score for a student (across districts)


Column YrPctileRank of the table Event

Card of the column YrPctileRank of the table Event

Name

Year Percentile Rank

Code

YrPctileRank

Data Type

int

Mandatory

FALSE


Description of the column YrPctileRank of the table Event

Year of percentile rank used in computation.


Column AYPDistPartic of the table Event

Card of the column AYPDistPartic of the table Event

Name

Annual Yearly Progress District Participation

Code

AYPDistPartic

Data Type

char(1)

Mandatory

FALSE


Description of the column AYPDistPartic of the table Event

Record is included in the denominator of district AYP participation and may also be in the numerator.


Column AYPDistPrfrm of the table Event

Card of the column AYPDistPrfrm of the table Event

Name

Annual Yearly Progress District Performance

Code

AYPDistPrfrm

Data Type

char(1)

Mandatory

FALSE


Description of the column AYPDistPrfrm of the table Event

Record is included in the denominator of district AYP performance and may also be in the numerator if meets.


Column AYPSchlPartic of the table Event

Card of the column AYPSchlPartic of the table Event

Name

Annual Yearly Progress School Participation

Code

AYPSchlPartic

Data Type

char(1)

Mandatory

FALSE


Description of the column AYPSchlPartic of the table Event

Record is included in the denominator of school AYP participation and may also be in the numerator.


Column AYPSchlPrfrm of the table Event

Card of the column AYPSchlPrfrm of the table Event

Name

Annual Yearly Progress School Performance

Code

AYPSchlPrfrm

Data Type

char(1)

Mandatory

FALSE


Description of the column AYPSchlPrfrm of the table Event

Record is included in the denominator of school AYP performance and may also be in the numerator if meets.


Column GrpRptDistPartic of the table Event

Card of the column GrpRptDistPartic of the table Event

Name

Group Report District Participation

Code

GrpRptDistPartic

Data Type

char(1)

Mandatory

FALSE


Description of the column GrpRptDistPartic of the table Event

Record is included in the denominator of the district public reports participation and may also be in the numerator


Column GrpRptDistPrfrm of the table Event

Card of the column GrpRptDistPrfrm of the table Event

Name

Group Report District Performance

Code

GrpRptDistPrfrm

Data Type

char(1)

Mandatory

FALSE


Description of the column GrpRptDistPrfrm of the table Event

Record is included in the denominator of district group performance and may also be in the numerator if meets.


Column GrpRptSchlPartic of the table Event

Card of the column GrpRptSchlPartic of the table Event

Name

Group Report School Participation

Code

GrpRptSchlPartic

Data Type

char(1)

Mandatory

FALSE


Description of the column GrpRptSchlPartic of the table Event

Record is included in the denominator of school public report participation and may also be in the numerator.


Column GrpRptSchlPrfrm of the table Event

Card of the column GrpRptSchlPrfrm of the table Event

Name

Group Report School Performance

Code

GrpRptSchlPrfrm

Data Type

char(1)

Mandatory

FALSE


Description of the column GrpRptSchlPrfrm of the table Event

Record is included in the denominator of school group performance and may also be in the numerator if meets.


Column RCDistPartic of the table Event

Card of the column RCDistPartic of the table Event

Name

Report Card District Participation

Code

RCDistPartic

Data Type

char(1)

Mandatory

FALSE


Description of the column RCDistPartic of the table Event

Record is included in the denominator of district Report Card participation and may also be in the numerator.


Column RCDistPrfrm of the table Event

Card of the column RCDistPrfrm of the table Event

Name

Report Card District Performance

Code

RCDistPrfrm

Data Type

char(1)

Mandatory

FALSE


Description of the column RCDistPrfrm of the table Event

Record is included in the denominator of the district Report Card performance, may also be in the numerator if meets.


Column RCSchlPartic of the table Event

Card of the column RCSchlPartic of the table Event

Name

Report Card School Participation

Code

RCSchlPartic

Data Type

char(1)

Mandatory

FALSE


Description of the column RCSchlPartic of the table Event

Record is included in the denominator of school Report Card participation and may also be in the numerator.


Column RCSchlPrfrm of the table Event

Card of the column RCSchlPrfrm of the table Event

Name

Report Card School Performance

Code

RCSchlPrfrm

Data Type

char(1)

Mandatory

FALSE


Description of the column RCSchlPrfrm of the table Event

Record is included in the denominator of the school Report Card performance, may also be in the numerator if meets.


Column LoadSeq_ID of the table Event

Card of the column LoadSeq_ID of the table Event

Name

LoadSeq_ID

Code

LoadSeq_ID

Data Type

int

Mandatory

FALSE


Description of the column LoadSeq_ID of the table Event

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


Column LoadDt of the table Event

Card of the column LoadDt of the table Event

Name

LoadDt

Code

LoadDt

Data Type

datetime

Mandatory

FALSE


Description of the column LoadDt of the table Event

The date the data was loaded into StudentCentered.


Column AcmdtnCd of the table Event

Card of the column AcmdtnCd of the table Event

Name

Accommodation Code

Code

AcmdtnCd

Data Type

char(1)

Mandatory

FALSE


Description of the column AcmdtnCd of the table Event

Describes the accommodations given to the student for the test.