What are the advantages of using stored procedures? Please
don't simply say compilation time will be saved as they are
already complied. Please specify some other advantages.

Answers were Sorted based on User's Feedback



What are the advantages of using stored procedures? Please don't simply say compilation time ..

Answer / paras

If your database resides on one server and you are accessing
it from different place then using Stored Procedure reduces
network traffic because you are just passing its name and
few parameters (if any)across the network instead of long query.

Is This Answer Correct ?    6 Yes 0 No

What are the advantages of using stored procedures? Please don't simply say compilation time ..

Answer / santosh kumar sharma

You can encapsulate your business logic in SP. Easy to
maintain as any changes in the business logic, you'll just
have to alter the SP and not your application.

Is This Answer Correct ?    2 Yes 0 No

What are the advantages of using stored procedures? Please don't simply say compilation time ..

Answer / pradip jain

Become secure program from sql Injection.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL Server Interview Questions

What is autocommit mode in sql server?

0 Answers  


What is 'write-ahead log' in sql server 2000 ?

0 Answers  


What is single-user mode and what are the steps you should follow to start sql server in single-user mode?

0 Answers  


What are the 2 types of classifications of constraints in the sql server?

0 Answers  


What do you understand by triggers?

0 Answers  






what is the system function to get current user's user id? : Sql server database administration

0 Answers  


When you use @@error and try-catch?

0 Answers  


What is nolock hint in sql server 2008

0 Answers   HCL,


What is wide table?

0 Answers  


what is cursor?why we will go to cursor?advantages &disadvantages of cursors?

1 Answers  


What are constraints?

0 Answers  


What is the difference between left and right outer join?

0 Answers  


Categories