| title | DBTS (Transact-SQL) | ||
|---|---|---|---|
| description | @@DBTS (Transact-SQL) | ||
| author | markingmyname | ||
| ms.author | maghan | ||
| ms.date | 09/18/2017 | ||
| ms.service | sql | ||
| ms.subservice | t-sql | ||
| ms.topic | reference | ||
| ms.custom |
|
||
| f1_keywords |
|
||
| helpviewer_keywords |
|
||
| dev_langs |
|
[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]
This function returns the value of the current timestamp data type for the current database. The current database will have a guaranteed unique timestamp value.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
@@DBTS
varbinary
@@DBTS returns the last-used timestamp value of the current database. An insert or update of a row with a timestamp column generates a new timestamp value.
Changes to the transaction isolation levels do not affect the @@DBTS function.
This example returns the current timestamp from the [!INCLUDEssSampleDBnormal] database.
USE AdventureWorks2022;
GO
SELECT @@DBTS; Configuration Functions (Transact-SQL)
Cursor Concurrency (ODBC)
Data Types (Transact-SQL)
MIN_ACTIVE_ROWVERSION (Transact-SQL)