EnterpriseDW
 dbo.DimApplicationSource (Table)
  Properties
Property Value
Name DimApplicationSource
Schema dbo
Row Count 9
Data Size 8 KB
Index Size 8 KB
Create Date 3/9/2017 10:43 AM
Description The source, origin, and type of applicant applying to the institution. There will be one row per source of application.
  Columns
 
 
Column Name
Data Type
Allow Nulls
Row Guid
Fulltext Indexed
Identity
Default
Description / Computed Formula
ApplicationSource
varchar(90)
False
False
False
 
Descriptive name indicating the source or origin or type of applicant applying to the institution. Includes First Time In College, Bachelors, and Transfer students.
ApplicationSourceAK
varchar(8)
False
False
False
 
Business Key.
ApplicationSourceCode
varchar(8)
False
False
False
 
Code indicating the source or origin or type of applicant applying to the institution. Includes First Time In College, Bachelors, and Transfer students.
ApplicationSourceLabel
varchar(30)
False
False
False
 
Short descriptive name indicating the source or origin or type of applicant applying to the institution. Includes First Time In College, Bachelors, and Transfer students.
In Primary Key
ApplicationSourceSK
int(10, 0)
False
False
False
(1 / 1)
Surrogate Primary Key
RowEndDate
datetime(23, 3)
True
False
False
 
When did this row become invalid for this member?
RowIsCurrent
char(1)
False
False
False
 
Is this the current row for this member (Y/N)?
RowStartDate
datetime(23, 3)
False
False
False
 
When did this row become valid for this member?
  Triggers
Name Insert Update Delete Instead
  Indexes
Name Clustered Columns
True
ApplicationSourceSK
  Foreign Key Constraints
Name Columns Referenced Table Referenced Columns Checked
  Check Constraints
Name Text Checked
  Parent Dependencies (objects that dbo.DimApplicationSource depends on)
Name Type
Table
  Child Dependencies (objects that depend on dbo.DimApplicationSource)
Name Type
TABLE
  Extended Properties
Object Property Value
DimApplicationSource
MS_Description
The source, origin, and type of applicant applying to the institution. There will be one row per source of application.
ApplicationSource
MS_Description
Descriptive name indicating the source or origin or type of applicant applying to the institution. Includes First Time In College, Bachelors, and Transfer students.
ApplicationSourceAK
MS_Description
Business Key.
ApplicationSourceCode
MS_Description
Code indicating the source or origin or type of applicant applying to the institution. Includes First Time In College, Bachelors, and Transfer students.
ApplicationSourceLabel
MS_Description
Short descriptive name indicating the source or origin or type of applicant applying to the institution. Includes First Time In College, Bachelors, and Transfer students.
ApplicationSourceSK
MS_Description
Surrogate Primary Key
RowEndDate
MS_Description
When did this row become invalid for this member?
RowIsCurrent
MS_Description
Is this the current row for this member (Y/N)?
RowStartDate
MS_Description
When did this row become valid for this member?
   Annotations
Object Property Value
  DDL
/****** Object: Table [dbo].[DimApplicationSource] Script Date: 03/09/2017 17:14:53 ******/
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
CREATE TABLE [dbo].[DimApplicationSource](
    [ApplicationSourceSK] [int] IDENTITY(1,1) NOT NULL,
    [ApplicationSourceAK] [varchar](8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [ApplicationSourceCode] [varchar](8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [ApplicationSource] [varchar](90) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [ApplicationSourceLabel] [varchar](30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [RowIsCurrent] [char](1) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [RowStartDate] [datetime] NOT NULL,
    [RowEndDate] [datetime] NULL,
 CONSTRAINT [PK_DimApplicationSource] PRIMARY KEY CLUSTERED 
(
    [ApplicationSourceSK] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The source, origin, and type of applicant applying to the institution. There will be one row per source of application.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimApplicationSource'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Descriptive name indicating the source or origin or type of applicant applying to the institution. Includes First Time In College, Bachelors, and Transfer students.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimApplicationSource', @level2type=N'COLUMN',@level2name=N'ApplicationSource'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Business Key.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimApplicationSource', @level2type=N'COLUMN',@level2name=N'ApplicationSourceAK'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Code indicating the source or origin or type of applicant applying to the institution. Includes First Time In College, Bachelors, and Transfer students.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimApplicationSource', @level2type=N'COLUMN',@level2name=N'ApplicationSourceCode'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Short descriptive name indicating the source or origin or type of applicant applying to the institution. Includes First Time In College, Bachelors, and Transfer students.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimApplicationSource', @level2type=N'COLUMN',@level2name=N'ApplicationSourceLabel'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Primary Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimApplicationSource', @level2type=N'COLUMN',@level2name=N'ApplicationSourceSK'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'When did this row become invalid for this member?' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimApplicationSource', @level2type=N'COLUMN',@level2name=N'RowEndDate'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Is this the current row for this member (Y/N)?' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimApplicationSource', @level2type=N'COLUMN',@level2name=N'RowIsCurrent'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'When did this row become valid for this member?' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimApplicationSource', @level2type=N'COLUMN',@level2name=N'RowStartDate'
  Sample Data
ApplicationSource ApplicationSourceAK ApplicationSourceCode ApplicationSourceLabel ApplicationSourceSK RowIsCurrent RowStartDate
Other Application Source 80OTHERS 80OTHERS Other 8 Y 1900-01-01T00:00:00-05:00
Transfer from Other Institution 40TRNSFR 40TRNSFR Transfer 4 Y 1900-01-01T00:00:00-05:00
Dual Enrollment and Early Admission 30DUALEN 30DUALEN Dual Enrollment 3 Y 1900-01-01T00:00:00-05:00
First Time In College One Year or More Out of High School 20FTICDL 20FTICDL FTIC Delay 2 Y 1900-01-01T00:00:00-05:00
Bachelor Application from an Existing Institutional Student 60BACHNV 60BACHNV Bachelor Native 6 Y 1900-01-01T00:00:00-05:00
Readmit Application 50READMT 50READMT Readmit 5 Y 1900-01-01T00:00:00-05:00
First Time In College Direct From High School 10FTICDR 10FTICDR FTIC Direct 1 Y 1900-01-01T00:00:00-05:00
Bachelor Application from Other Institution 70BACHTR 70BACHTR Bachelor Transfer 7 Y 1900-01-01T00:00:00-05:00
N/A N/A N/A N/A -1 Y 1900-01-01T00:00:00-05:00
Powered by BI Documenter