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 are the benefits of using Stored Procedures in SQL Server?
OR
Why should we use Stored Procedures?
Precompiled execution. SQL Server compiles each stored procedure once and then reutilizes the execution plan. This results in tremendous performance boosts when stored procedures are called repeatedly.

Reduced client/server traffic. If network bandwidth is a concern in your environment, you will be happy to learn that stored procedures can reduce long SQL queries to a single line that is transmitted over the wire.

Efficient reuse of code and programming abstraction. Stored procedures can be used by multiple users and client programs. If you utilize them in a planned manner, you will find the development cycle takes less time.

Enhanced security controls. You can grant users permission to execute a stored procedure independently of underlying table permissions.

What is an execution plan? When would you use it? How would you view the execution plan?
What are stand-alone procedures?
What is the UNIQUE KEY constraint in SQL Server?
What is the EXISTS operator in SQL Server ?
OR
What is the EXISTS keyword in SQL Server ?
Is it possible to create only structure of the table without copying data in SQL Server?
What is the full form of .mdf in sql server data files?
What is the REPLACE function in SQL?
Explain an outer join?
What command is used to create a table by copying the structure of another table in SQL Server?
What is a Subquery ?