EnterpriseDW
 dbo.LoadDateTime (Table)
  Properties
Property Value
Name LoadDateTime
Schema dbo
Row Count 1
Data Size 8 KB
Index Size 8 KB
Create Date 9/4/2012 9:53 AM
Description The Load Date Time Dimension contains a record of the last load and processed date and time for objects in the data warehouse and cube.
  Columns
 
 
Column Name
Data Type
Allow Nulls
Row Guid
Fulltext Indexed
Identity
Default
Description / Computed Formula
In Primary Key
RecordId
varchar(30)
False
False
False
 
The identifying label for the object within the data warehouse and cube that was processed by the ETL process.
RefreshDateTime
datetime(23, 3)
True
False
False
 
The date and time that the object in the data warehouse or cube was last processed.
  Triggers
Name Insert Update Delete Instead
  Indexes
Name Clustered Columns
True
RecordId
  Foreign Key Constraints
Name Columns Referenced Table Referenced Columns Checked
  Check Constraints
Name Text Checked
  Parent Dependencies (objects that dbo.LoadDateTime depends on)
Name Type
  Child Dependencies (objects that depend on dbo.LoadDateTime)
Name Type
  Extended Properties
Object Property Value
LoadDateTime
MS_Description
The Load Date Time Dimension contains a record of the last load and processed date and time for objects in the data warehouse and cube.
RecordId
MS_Description
The identifying label for the object within the data warehouse and cube that was processed by the ETL process.
RefreshDateTime
MS_Description
The date and time that the object in the data warehouse or cube was last processed.
   Annotations
Object Property Value
  DDL
/****** Object: Table [dbo].[LoadDateTime] Script Date: 03/09/2017 17:15:00 ******/
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
CREATE TABLE [dbo].[LoadDateTime](
    [RecordId] [varchar](30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [RefreshDateTime] [datetime] NULL,
 CONSTRAINT [PK_LoadDateTime] PRIMARY KEY CLUSTERED 
(
    [RecordId] 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 Load Date Time Dimension contains a record of the last load and processed date and time for objects in the data warehouse and cube.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LoadDateTime'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The identifying label for the object within the data warehouse and cube that was processed by the ETL process.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LoadDateTime', @level2type=N'COLUMN',@level2name=N'RecordId'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The date and time that the object in the data warehouse or cube was last processed.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LoadDateTime', @level2type=N'COLUMN',@level2name=N'RefreshDateTime'
  Sample Data
Budgeted BudgetedAK BudgetedCode RowEndDate RowIsCurrent RowStartDate
Budgeted BUDGETED BUDGETED 9999-12-31T23:59:00-05:00 Y 2017-03-09T12:16:00-05:00
Unbudgeted UNBUDGTD UNBUDGTD 9999-12-31T23:59:00-05:00 Y 2017-03-09T12:16:00-05:00
Powered by BI Documenter