Skip to content

Commit 50659cb

Browse files
committed
Fix data type in fn-get-audit-file
1 parent b3c067c commit 50659cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/relational-databases/system-functions/sys-fn-get-audit-file-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The following table describes the audit file content that can be returned by thi
9090
| `audit_schema_version` | **int** | Always `1`. |
9191
| `class_type` | **varchar(2)** | The type of auditable entity that the audit occurs on. Not nullable. |
9292
| `client_ip` | **nvarchar(128)** | Source IP of the client application.<br /><br />**Applies to**: [!INCLUDE [sssql17-md](../../includes/sssql17-md.md)] and later versions, and Azure SQL Database |
93-
| `connection_id` | GUID | ID of the connection in the server.<br /><br />**Applies to**: Azure SQL Database and SQL Managed Instance |
93+
| `connection_id` | **uniqueidentifier** | ID of the connection in the server.<br /><br />**Applies to**: Azure SQL Database and SQL Managed Instance |
9494
| `data_sensitivity_information` | **nvarchar(4000)** | Information types and sensitivity labels returned by the audited query, based on the classified columns in the database. Learn more about [Azure SQL Database data discover and classification](/azure/sql-database/sql-database-data-discovery-and-classification).<br /><br />**Applies to**: Azure SQL Database only |
9595
| `database_name` | **sysname** | The database context in which the action occurred. Nullable. Returns `NULL` for audits occurring at the server level. |
9696
| `database_principal_id` | **int** | ID of the database user context that the action is performed in. Not nullable. Returns `0` if this doesn't apply. For example, a server operation. |

0 commit comments

Comments
 (0)