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
How to loop through result set objects using odbc_fetch_row()?
Define cross join in sql server joins?
Explain how to send email from sql database?
What do you mean by an execution plan?
What is checkpoint in sql server?
What happens if we shrink log file in sql server?
What are the encryption mechanisms in sql server?
What is the optimal disk configuration for a database server and what raid configurations would you use if budget is not a constraint?
Can you create a logon trigger in sql server 2005 express edition?
What is 1nf 2nf and 3nf?
In case you have filters in your report, when filters will be applied in cached report instance?
How to create an index on a view?
What is an sql server agent?
What are different types of schemas?
Which is the best place or learning center for MS SQL?????In Bangladesh?????