EnterpriseDW
 dbo.DimBudgeted (Table)
  Properties
Property Value
Name DimBudgeted
Schema dbo
Row Count 3
Data Size 8 KB
Index Size 8 KB
Create Date 3/9/2017 10:43 AM
Description
  Columns
 
 
Column Name
Data Type
Allow Nulls
Row Guid
Fulltext Indexed
Identity
Default
Description / Computed Formula
Budgeted
varchar(50)
False
False
False
 
A description indicating if a Benefit or Deduction is Budgeted.
BudgetedAK
varchar(10)
False
False
False
 
Business key for the dimension. This will contain BUDGETED or UNBUDGTD
BudgetedCode
varchar(10)
False
False
False
 
A code indicating if a Benefit or Deduction is Budgeted.
In Primary Key
BudgetedSK
int(10, 0)
False
False
False
(1 / 1)
Surrogate primary key
RowEndDate
datetime(23, 3)
False
False
False
 
When did this row become invalid? (12/31/9999 if current row)
RowIsCurrent
nchar(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
BudgetedSK
  Foreign Key Constraints
Name Columns Referenced Table Referenced Columns Checked
  Check Constraints
Name Text Checked
  Parent Dependencies (objects that dbo.DimBudgeted depends on)
Name Type
Table
  Child Dependencies (objects that depend on dbo.DimBudgeted)
Name Type
TABLE
  Extended Properties
Object Property Value
Budgeted
MS_Description
A description indicating if a Benefit or Deduction is Budgeted.
BudgetedAK
MS_Description
Business key for the dimension. This will contain BUDGETED or UNBUDGTD
BudgetedCode
MS_Description
A code indicating if a Benefit or Deduction is Budgeted.
BudgetedSK
MS_Description
Surrogate primary key
RowEndDate
MS_Description
When did this row become invalid? (12/31/9999 if current row)
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].[DimBudgeted] Script Date: 03/09/2017 17:14:53 ******/
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
CREATE TABLE [dbo].[DimBudgeted](
    [BudgetedSK] [int] IDENTITY(1,1) NOT NULL,
    [BudgetedAK] [varchar](10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [BudgetedCode] [varchar](10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [Budgeted] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [RowIsCurrent] [nchar](1) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [RowStartDate] [datetime] NOT NULL,
    [RowEndDate] [datetime] NOT NULL,
 CONSTRAINT [PK_dbo.DimBudgeted] PRIMARY KEY CLUSTERED 
(
    [BudgetedSK] 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'A description indicating if a Benefit or Deduction is Budgeted.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimBudgeted', @level2type=N'COLUMN',@level2name=N'Budgeted'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Business key for the dimension. This will contain BUDGETED or UNBUDGTD' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimBudgeted', @level2type=N'COLUMN',@level2name=N'BudgetedAK'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A code indicating if a Benefit or Deduction is Budgeted.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimBudgeted', @level2type=N'COLUMN',@level2name=N'BudgetedCode'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate primary key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimBudgeted', @level2type=N'COLUMN',@level2name=N'BudgetedSK'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'When did this row become invalid? (12/31/9999 if current row)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DimBudgeted', @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'DimBudgeted', @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'DimBudgeted', @level2type=N'COLUMN',@level2name=N'RowStartDate'
  Sample Data
Budgeted BudgetedAK BudgetedCode BudgetedSK RowEndDate RowIsCurrent RowStartDate
Unbudgeted N/A N/A -1 2098-12-31T00:00:00-05:00 Y 1900-01-01T00:00:00-05:00
Unbudgeted UNBUDGTD UNBUDGTD 3 9999-12-31T23:59:00-05:00 Y 2017-03-09T12:16:00-05:00
Budgeted BUDGETED BUDGETED 2 9999-12-31T23:59:00-05:00 Y 2017-03-09T12:16:00-05:00
Powered by BI Documenter