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
What is the difference between TRUNCATE and DELETE commands ?
1. TRUNCATE is a DDL command whereas DELETE is a DML command.
2. DELETE operation can be rolled back, but TRUNCATE operation cannot be rolled back.
3. WHERE clause can be used with DELETE and not with TRUNCATE.
Which function is used to find the largest integer less than or equal to a specific value?
What is a constraint in SQL Server?
What is the maximum number of columns in a row in SQL Server?
What are defaults? Is there a column to which a default can’t be bound?
What is the UNIQUE KEY constraint in SQL Server?
Is it possible to create only structure of the table without copying data in SQL Server?
Which join gives the Cartesian product of two tables in sql server?
Why does inline or embedded SQL run faster than my stored procedures?
Write a SQL Query to find first week day of the month?
Define candidate key, alternate key, composite key.