Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 ASP.Net Interview Questions and Answers
How to convert timestamp data to date data (datetime datatype) in SQL Server?
The name timestamp is a little misleading. Timestamp data has nothing to do with dates and times and can not be converted to date data. A timestamp is a unique number within the database and is equivalent to a binary(8)/varbinary(8) datatype. A table can have only one timestamp column. Timestamp value of a row changes with every update of the row. To avoid the confusion, SQL Server 2000 introduced a synonym to timestamp, called rowversion.
What is the limit of a row n SQL Server?
TRUNCATE TABLE EMP;, DELETE FROM EMP; -What Will the outputs of the above two commands (Queries) in SQL Server?
What is a constraint in SQL Server?
What is the full form of .mdf in sql server data files?
Describe Microsoft SQL Server 2000 ?
What is DTC (Distributed Transaction Coordinator) in SQL Server?
What is the DEFAULT constraint in SQL Server?
How to SELECT TOP N records from mytable without using TOP keyword?
How to determine the service pack currently installed on SQL Server?
Which join gives the Cartesian product of two tables in sql server?