Difference between revisions of "Dbo.DatabaseLog (table)"
| Line 81: | Line 81: | ||
| Insert | | Insert | ||
| Database Trigger | | Database Trigger | ||
| − | | [[ | + | | [[ddlDatabaseTriggerLog_(database_trigger)|ddlDatabaseTriggerLog]] |
|} | |} | ||
Revision as of 23:24, 28 December 2009
wikibot
| Table | dbo.DatabaseLog |
| Description | Audit table tracking all DDL changes made to the AdventureWorks database. Data is captured by the database trigger ddlDatabaseTriggerLog. |
| Column | Data Type | Nullable | Default | Description / PK / Index |
| DatabaseLogID | int | not null | Primary key for DatabaseLog records. PK_DatabaseLog_DatabaseLogID | |
| PostTime | datetime | not null | The date and time the DDL change occurred. | |
| DatabaseUser | sysname | not null | The user who implemented the DDL change. | |
| Event | sysname | not null | The type of DDL statement that was executed. | |
| Schema | sysname | null | The schema to which the changed object belongs. | |
| Object | sysname | null | The object that was changed by the DDL statment. | |
| TSQL | nvarchar(max) | not null | The exact Transact-SQL statement that was executed. | |
| XmlEvent | xml | not null | The raw XML data generated by database trigger. |
| Reference Type | Object Type | Referencing Object |
| Insert | Database Trigger | ddlDatabaseTriggerLog |
automatically generated
| Table | dbo.DatabaseLog |
| Description | Audit table tracking all DDL changes made to the AdventureWorks database. Data is captured by the database trigger ddlDatabaseTriggerLog. |
| Column | Data Type | Nullable | Default | Description / PK / Index |
| DatabaseLogID | int | not null | Primary key for DatabaseLog records. PK_DatabaseLog_DatabaseLogID | |
| PostTime | datetime | not null | The date and time the DDL change occurred. | |
| DatabaseUser | sysname | not null | The user who implemented the DDL change. | |
| Event | sysname | not null | The type of DDL statement that was executed. | |
| Schema | sysname | null | The schema to which the changed object belongs. | |
| Object | sysname | null | The object that was changed by the DDL statment. | |
| TSQL | nvarchar(max) | not null | The exact Transact-SQL statement that was executed. | |
| XmlEvent | xml | not null | The raw XML data generated by database trigger. |
| Reference Type | Object Type | Referencing Object |
| Insert | Database Trigger | ddlDatabaseTriggerLog |