| Property | Value |
|---|---|
| Name | ProductDocument |
| ID | 2117582582 |
| Owner | dbo |
| Schema | Production |
| Filegroup | PRIMARY |
| Data Size (KB) | 8 KB |
| Index Size (KB) | 8 KB |
| Rows | 32 |
| Unused (KB) | 0 KB |
| ANSI Null On |
|
| Quoted Identifier |
|
| Lock Escalation | TABLE |
| Lock On Bulk Load |
|
| Lob Data Space | |
| Filestream Data Space ID | |
| Has Unchecked Assembly Data |
|
| Text In Row Limit (bytes) | Option not set |
| Large Value Types Out Of Row |
|
| FullText Change Tracking On |
|
| Tracked By Cdc |
|
| Published |
|
| Schema Published |
|
| Replicated |
|
| Replication Filter |
|
| Merge Published |
|
| Sync Tran Subscribed |
|
| MS Shipped |
|
| Modify Date | 8/8/2010 5:23:39 PM |
| Create Date | 8/8/2010 5:21:51 PM |
| Name | Value |
|---|---|
| MS_Description | Cross-reference table mapping products to related product documents. mobi |
| Column ID | Column Name | Datatype | Nullable | Is Sparse | Is Column Set |
|---|---|---|---|---|---|
| 1 | ProductID | int |
|
|
|
| 2 | DocumentNode | hierarchyid |
|
|
|
| 3 | ModifiedDate | datetime |
|
|
|
| Name | Is System Named | Extended Property Name | Extended Property Value |
|---|---|---|---|
| PK_ProductDocument_ProductID_DocumentNode |
|
MS_Description | Primary key (clustered) constraint |
| Name |
|---|
| ProductID |
| DocumentNode |
| Name | Referenced Object | Update Action | Delete Action |
|---|---|---|---|
| FK_ProductDocument_Product_ProductID | Production.Product | No action | No action |
| FK_ProductDocument_Document_DocumentNode | Production.Document | No action | No action |
| Name | Column | Definition | Is System Named | Extended Property Name | Extended Property Value |
|---|---|---|---|---|---|
| DF_ProductDocument_ModifiedDate | ModifiedDate | (getdate()) |
|
MS_Description | Default constraint value of GETDATE() |
| Name | Index Type | Primary Key | Unique | Unique Constraint | Ignore Duplicate Key | Disabled |
|---|---|---|---|---|---|---|
| PK_ProductDocument_ProductID_DocumentNode | CLUSTERED |
|
|
|
|
|
| Name | Updated | Rows | Rows Sampled | Steps | Density | Average Key Length | String Index | Filter Expression | Unfiltered Rows |
|---|---|---|---|---|---|---|---|---|---|
| PK_ProductDocument_ProductID_DocumentNode | Aug 8 2010 5:22PM | 32 | 32 | 19 | 1 | 6 |
|
32 |
| All Density | Average Length | Columns |
|---|---|---|
| 0.03225806 | 4 | ProductID |
| 0.03125 | 6 | ProductID, DocumentNode |
| Range High Key | Range Rows | Estimated Rows | Distinct Range Rows | Avg Range Rows |
|---|---|---|---|---|
| 317 | 0 | 1 | 0 | 1 |
| 319 | 1 | 1 | 1 | 1 |
| 506 | 0 | 2 | 0 | 1 |
| 514 | 0 | 1 | 0 | 1 |
| 516 | 1 | 1 | 1 | 1 |
| 518 | 1 | 1 | 1 | 1 |
| 520 | 1 | 1 | 1 | 1 |
| 522 | 1 | 1 | 1 | 1 |
| 928 | 0 | 1 | 0 | 1 |
| 930 | 1 | 1 | 1 | 1 |
| 932 | 1 | 1 | 1 | 1 |
| 934 | 1 | 1 | 1 | 1 |
| 936 | 1 | 1 | 1 | 1 |
| 938 | 1 | 1 | 1 | 1 |
| 940 | 1 | 1 | 1 | 1 |
| 941 | 0 | 1 | 0 | 1 |
| 977 | 0 | 1 | 0 | 1 |
| 997 | 0 | 1 | 0 | 1 |
| 999 | 1 | 1 | 1 | 1 |
| Name | Updated | Rows | Rows Sampled | Steps | Density | Average Key Length | String Index | Filter Expression | Unfiltered Rows |
|---|---|---|---|---|---|---|---|---|---|
| _WA_Sys_00000002_7E37BEF6 | Aug 8 2010 5:23PM | 32 | 32 | 5 | 1 | 2 |
|
32 |
| All Density | Average Length | Columns |
|---|---|---|
| 0.1666667 | 2 | DocumentNode |
| Range High Key | Range Rows | Estimated Rows | Distinct Range Rows | Avg Range Rows |
|---|---|---|---|---|
| /1/1/ | 0 | 4 | 0 | 1 |
| /2/1/ | 0 | 10 | 0 | 1 |
| /3/2/ | 1 | 1 | 1 | 1 |
| /3/3/ | 0 | 7 | 0 | 1 |
| /3/4/ | 0 | 9 | 0 | 1 |
| Script |
|---|
| SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON CREATE TABLE [Production].[ProductDocument]( [ProductID] [int] NOT NULL, [DocumentNode] [hierarchyid] NOT NULL, [ModifiedDate] [datetime] NOT NULL ) ON [PRIMARY] EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Product identification number. Foreign key to Product.ProductID.' , @level0type=N'SCHEMA',@level0name=N'Production', @level1type=N'TABLE',@level1name=N'ProductDocument', @level2type=N'COLUMN',@level2name=N'ProductID' EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Document identification number. Foreign key to Document.DocumentNode.' , @level0type=N'SCHEMA',@level0name=N'Production', @level1type=N'TABLE',@level1name=N'ProductDocument', @level2type=N'COLUMN',@level2name=N'DocumentNode' EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date and time the record was last updated.' , @level0type=N'SCHEMA',@level0name=N'Production', @level1type=N'TABLE',@level1name=N'ProductDocument', @level2type=N'COLUMN',@level2name=N'ModifiedDate' EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Cross-reference table mapping products to related product documents. mobi' , @level0type=N'SCHEMA',@level0name=N'Production', @level1type=N'TABLE',@level1name=N'ProductDocument' |