EnterpriseDW
 dbo.Configuration_Image (Table)
  Properties
Property Value
Name Configuration_Image
Schema dbo
Row Count 3
Data Size 8 KB
Index Size 8 KB
Create Date 9/5/2012 8:27 AM
Description The Image Configuration dimension provides image identity for the institution, used by SQL Server Reporting Services to determine the location of images. like a report banner
  Columns
 
 
Column Name
Data Type
Allow Nulls
Row Guid
Fulltext Indexed
Identity
Default
Description / Computed Formula
ImageLocation
varchar(100)
True
False
False
 
The URL full address of the location of the report image.
ImageType
varchar(30)
False
False
False
 
A textual identifier for a report image object.
SuggestedImageSize
varchar(100)
True
False
False
 
A textual description of the suggested size of the object for the report image object.
  Triggers
Name Insert Update Delete Instead
  Indexes
Name Clustered Columns
  Foreign Key Constraints
Name Columns Referenced Table Referenced Columns Checked
  Check Constraints
Name Text Checked
  Parent Dependencies (objects that dbo.Configuration_Image depends on)
Name Type
  Child Dependencies (objects that depend on dbo.Configuration_Image)
Name Type
  Extended Properties
Object Property Value
Configuration_Image
MS_Description
The Image Configuration dimension provides image identity for the institution, used by SQL Server Reporting Services to determine the location of images. like a report banner
ImageLocation
MS_Description
The URL full address of the location of the report image.
ImageType
MS_Description
A textual identifier for a report image object.
SuggestedImageSize
MS_Description
A textual description of the suggested size of the object for the report image object.
   Annotations
Object Property Value
  DDL
/****** Object: Table [dbo].[Configuration_Image] Script Date: 03/09/2017 17:14:53 ******/
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
CREATE TABLE [dbo].[Configuration_Image](
    [ImageType] [varchar](30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [ImageLocation] [varchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
    [SuggestedImageSize] [varchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The Image Configuration dimension provides image identity for the institution, used by SQL Server Reporting Services to determine the location of images. like a report banner' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Configuration_Image'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'The URL full address of the location of the report image.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Configuration_Image', @level2type=N'COLUMN',@level2name=N'ImageLocation'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A textual identifier for a report image object.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Configuration_Image', @level2type=N'COLUMN',@level2name=N'ImageType'


EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'A textual description of the suggested size of the object for the report image object.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Configuration_Image', @level2type=N'COLUMN',@level2name=N'SuggestedImageSize'
  Sample Data
ImageLocation ImageType SuggestedImageSize
http://sharepoint/sites/Baseline/Int_Financials/PublishingImages/blue_arrow_up.png UpArrow 90 X 90
http://sharepoint/sites/Baseline/Int_Financials/PublishingImages/blue_arrow_down.png DownArrow 90 X 90
http://sharepoint/sites/Baseline/PublishingImages/hetg_webheader-973x69.jpg Banner 300 X 200
Powered by BI Documenter