Related Posts Plugin for WordPress, Blogger...

About

Follow Us

Showing posts with label Select. Show all posts
Showing posts with label Select. Show all posts

Wednesday, 18 February 2015

What is Stored Procedure?

A stored procedure is a pre-compiled group of Transact-SQL statements. A stored procedure is a group of SQL statements that has been created and stored in the database . Stored procedure will reduce network traffic and increase the performance.
It is always recommended to create Stored Procedure instead of writing Inline queries so that we can just call the Stored Procedures whenever required instead of writing Inline queries each time.