What is The Use Of TIMESTAMP DataType in SQL Server 2005?
Answer Posted / professor r.arjunarao
TimeStamp field to detect update collisions in order to
reduce the amount of data sent to the server
example
CREATE TABLE emp (empno int PRIMARY KEY, tax int, TS timestamp)
GO
INSERT INTO emp (empno, tax) VALUES (1, 0)
GO
INSERT INTO emp (empno, tax) VALUES (2, 0)
GO
select * from emp;
1 0 0x0000000000000FA1<---Unique values
2 0 0x0000000000000FA2<---Unique values
Is This Answer Correct ? | 19 Yes | 2 No |
Post New Answer View All Answers
what is the difference between writing data to mirrored drives versus raid5 drives. : Sql server administration
What are scheduled tasks in sql server?
How to count duplicated values in a column in ms sql server?
What is the user of Primary key?
Define candidate key, alternate key, and composite key.
What is the sql case statement used for?
What is sub-query in sql server?
What are the lambda triggers?
Define outer join?
How much is a sql server license?
What is the maximum row of a size?
Explain can SSRS reports Cache results?
How do I find the sql server version?
can SSRS reports Cache results?
How can we improve performance by using SQL Server profiler?