Touchstone Re 2022 Database Reference
tDbHistory Table
AIRCompanyLoss Database : tDbHistory Table
Description
Stores information about any packages applied to the database.
Properties
Creation Date4/4/2022 3:03 AM
File GroupPRIMARY
Text File GroupPRIMARY
System Object
Published for Replication
Rows0
Data Space Used0.00 KB
Index Space Used0.00 KB
Columns
 Column NameDescriptionDatatypeLengthAllow NullsDefaultFormula
Primary Key Identifier for the change record.int4   
 Type of the change applied to the database, for example, CREATE or UPGRADE.varchar50  
 Name of the SQL Server associated with the database.sysname128 
(coalesce(CONVERT([sysname],serverproperty('ServerName')),@@servername))
 
 Name of the database.sysname128 
(db_name())
 
 Version of SQL Server associated with the database change.varchar50 
(CONVERT([varchar](50),serverproperty('ProductVersion')))
 
 Version of the product associated with the database change.varchar10  
 Version of the product code associated with the database change.varchar10  
 Version of the database prior to the application of the package.varchar10  
 Version of the database after the application of the package.varchar10  
 Version of the product code associated with the database prior to the application of the package.varchar10  
 Version of the product code associated with the database after the application of the package.varchar10  
 

Unique system-generated sequential identifier for the package.

For a complete list of records, see tPackage Table.

int4  
 Type of the package, for example, CREATE or UPGRADE.varchar10  
 Name of the package.varchar50  
 Description of the package.nvarchar16  
 

Identifier for the contents of the package.

For a complete list of records, see tPackageContent Table.

int4  
 Detailed information about the contents of the package.nvarchar16  
 Date and time when the package was applied.datetime24 
(sysdatetime())
 
 

Indicates whether the package is in use.

  • 1 = Yes (in use)
  • 0 = No (script is deprecated)
bit1 
((0))
 
 

Indicates whether the package is set to previous version.

  • 1 = Yes (rollback allowed)
  • 0 = No 
bit1 
((0))
 
 Description of the script.nvarchar16  
See Also

Related Objects

AIRCompanyLoss Database