Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is The Use Of TIMESTAMP DataType in SQL Server 2005?

Answers were Sorted based on User's Feedback



What is The Use Of TIMESTAMP DataType in SQL Server 2005? ..

Answer / deepak rohilla

Timestamp is used typically as a mechanism for version-
stamping table rows.

Is This Answer Correct ?    47 Yes 13 No

What is The Use Of TIMESTAMP DataType in SQL Server 2005? ..

Answer / 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

What is The Use Of TIMESTAMP DataType in SQL Server 2005? ..

Answer / samar

can u plz give example ,
how to use this data type

Is This Answer Correct ?    19 Yes 5 No

What is The Use Of TIMESTAMP DataType in SQL Server 2005? ..

Answer / brindly

"IS A MECHANISM TO TRACK CHANGES IN TABLE.
IT UPDATE ITSELF WHEN THERE IS A UPDATION IN ROW CONTAING
TIMESTAMP COLUMN"

I accept above answer.
But whether the timestamp field updates itselt in a
incremental fashion.

Is This Answer Correct ?    9 Yes 1 No

What is The Use Of TIMESTAMP DataType in SQL Server 2005? ..

Answer / deepak tripathi niit

IS A MECHANISM TO TRACK CHANGES IN TABLE.
IT UPDATE ITSELF WHEN THERE IS A UPDATION IN ROW CONTAING
TIMESTAMP COLUMN

Is This Answer Correct ?    9 Yes 3 No

What is The Use Of TIMESTAMP DataType in SQL Server 2005? ..

Answer / xavier rajan, photon infotech

time stamp data type is used to automatically generate the
unique number.A database-wide unique number.

Is This Answer Correct ?    19 Yes 34 No

Post New Answer

More SQL Server Interview Questions

Explain the new features of SQL server 2000?

1 Answers  


Why people hate cursor?

0 Answers  


Define left outer join?

0 Answers  


What is difference between equi join and inner join?

0 Answers  


How to get a list of columns using the "sp_help" stored procedure in ms sql server?

0 Answers  


what is physical sort data and logical sort data in index?

2 Answers  


what is Constraint? How many types of constraints in SQL ?

38 Answers   HCL, IBM, NIIT, Wipro,


What is acid mean in sql server?

0 Answers  


Explain about system stored procedure?

0 Answers  


Explain stored procedure?

0 Answers  


What happens if you insert a duplicate key for the primary key column in ms sql server?

0 Answers  


What is WITH CHECK OPTION

3 Answers   Karur Vysya Bank KVB,


Categories