dbo.AWBuildVersion Table
Information
| Name | AWBuildVersion |
| Schema | dbo |
| Row Count | 0 |
| Data Size | |
| Index Size | |
| Reserved Size | |
| Unused Size | |
| Created | 29.3.2010. 21:58:18 |
| Modified | 29.3.2010. 21:58:33 |
Extended Properties
| Name | Type | Property Name | Value |
| AWBuildVersion | TABLE | MS_Description | Current version number of the AdventureWorks sample database. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | SystemInformationID | tinyint |   | | | |   | |
| |   |   | Database Version | nvarchar(25) |   | SQL_Latin1_General_CP1_CI_AS | | |   | |
| |   |   | VersionDate | datetime |   | | | |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
SQL Script
CREATE TABLE [dbo].[AWBuildVersion] (
[SystemInformationID] tinyint NOT NULL IDENTITY,
[Database Version] nvarchar(25) NOT NULL,
[VersionDate] datetime NOT NULL,
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);