Difference between revisions of "Dbo.DatabaseLog (table)"
| Line 75: | Line 75: | ||
| | | | ||
|} | |} | ||
| − | |||
== automatically generated == | == automatically generated == | ||
| Line 97: | Line 96: | ||
| '''Nullable | | '''Nullable | ||
| '''Default | | '''Default | ||
| − | | '''Description | + | | '''Description / PK / Index |
| − | |||
|- | |- | ||
| Line 105: | Line 103: | ||
| not null | | not null | ||
| | | | ||
| − | | Primary key for DatabaseLog records. | + | | Primary key for DatabaseLog records.PK_DatabaseLog_DatabaseLogID |
| − | |||
|- | |- | ||
| PostTime | | PostTime | ||
| Line 113: | Line 110: | ||
| | | | ||
| The date and time the DDL change occurred. | | The date and time the DDL change occurred. | ||
| − | |||
|- | |- | ||
| DatabaseUser | | DatabaseUser | ||
| Line 120: | Line 116: | ||
| | | | ||
| The user who implemented the DDL change. | | The user who implemented the DDL change. | ||
| − | |||
|- | |- | ||
| Event | | Event | ||
| Line 127: | Line 122: | ||
| | | | ||
| The type of DDL statement that was executed. | | The type of DDL statement that was executed. | ||
| − | |||
|- | |- | ||
| Schema | | Schema | ||
| Line 134: | Line 128: | ||
| | | | ||
| The schema to which the changed object belongs. | | The schema to which the changed object belongs. | ||
| − | |||
|- | |- | ||
| Object | | Object | ||
| Line 141: | Line 134: | ||
| | | | ||
| The object that was changed by the DDL statment. | | The object that was changed by the DDL statment. | ||
| − | |||
|- | |- | ||
| TSQL | | TSQL | ||
| Line 148: | Line 140: | ||
| | | | ||
| The exact Transact-SQL statement that was executed. | | The exact Transact-SQL statement that was executed. | ||
| − | |||
|- | |- | ||
| XmlEvent | | XmlEvent | ||
| Line 155: | Line 146: | ||
| | | | ||
| The raw XML data generated by database trigger. | | The raw XML data generated by database trigger. | ||
| − | | | + | |} |
| + | |||
| + | |||
| + | |||
| + | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| + | |- style="background:silver" | ||
| + | | '''Referencing Object | ||
| + | | '''Object Type | ||
| + | | '''Reference Type | ||
| + | |||
| + | |- | ||
| + | | [[.ddlDatabaseTriggerLog_(database_trigger)|.ddlDatabaseTriggerLog]] | ||
| + | | Database Trigger | ||
| + | | Insert | ||
|} | |} | ||
Revision as of 23:52, 26 November 2009
wikibot
| Table | dbo.DatabaseLog |
| Column | Data Type | Nullable | Default | PK | Index |
| DatabaseLogID | int | not null | PK_DatabaseLog_DatabaseLogID | ||
| PostTime | datetime | not null | |||
| DatabaseUser | sysname | not null | |||
| Event | sysname | not null | |||
| Schema | sysname | null | |||
| Object | sysname | null | |||
| TSQL | nvarchar(max) | not null | |||
| XmlEvent | xml | not null |
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. |
| Referencing Object | Object Type | Reference Type |
| .ddlDatabaseTriggerLog | Database Trigger | Insert |