What is user stored procedure & it purpose?

Answers were Sorted based on User's Feedback



What is user stored procedure & it purpose?..

Answer / arunyadav007

There are two type of stored procedures. System Stored
Procedure and User Stored Procedure (User Defined Stored
Procedure).

User SProcs serves the same purpose as the system SProcs.
Now the question comes what is the need to write a stored
procedure?
Suppose in your organization there are certain queries
which are used very frequently or there are certain queries
in which you don't want users to know that what all tables/
views etc. are scanned to get the desired result or, for
faster execution of a frequently used query you write
stored procedures.

Is This Answer Correct ?    10 Yes 0 No

What is user stored procedure & it purpose?..

Answer / hari

Stored procedure is nothing but a Set of T-Sql statements
combined to perform a single task of several tasks. it's
like a macro

Is This Answer Correct ?    3 Yes 1 No

What is user stored procedure & it purpose?..

Answer / satish kanaujia

A stored procedure is a named group of SQL statements that
have been previously created and stored in the server
database. Stored procedures accept input parameters so that
a single procedure can be used over the network by several
clients using different input data. And when the procedure
is modified, all clients automatically get the new version.
purpose:
Stored procedures reduce network traffic and improve
performance. Stored procedures can be used to help ensure
the integrity of the database.
e.g. sp_helpdb, sp_renamedb, sp_depends etc.

Is This Answer Correct ?    4 Yes 4 No

What is user stored procedure & it purpose?..

Answer / ramanirajan das

A stored procedure is a named group of SQL statements that
have been previously created and stored in the server
database. Stored procedures accept input parameters so that
a single procedure can be used over the network by several
clients using different input data. And when the procedure
is modified, all clients automatically get the new version.
Because store procedure is pre complied so it need not compile
when u r doing some operation in procedure.
purpose:
Stored procedures reduce network traffic, secure and improve
performance. Stored procedures can be used to help ensure
the integrity of the database.
e.g. sp_helpdb, sp_renamedb, sp_depends etc.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

How can we solve concurrency problems?

0 Answers  


how to do partition in sqlserver

0 Answers   TCS,


what is the difference detween pairwise comparison subquary and non pairwise comparison subquary?

2 Answers  


What does it mean to normalize a database and why would you do it?

0 Answers  


can an order by clause be used in a creation of a view?

0 Answers  






What changes in the front end code is needed if mirroring is implemented for the high availability? : sql server database administration

0 Answers  


syntax for deleting the database in T SQL

5 Answers  


Is truncate autocommit?

0 Answers  


What is bit datatype and what's the information that can be stored inside a bit column?

1 Answers  


What is Check point? Explain in Brief what it will do?

1 Answers   Wipro,


What are the types of resultset?

0 Answers  


Can group by and orderby be used together?

0 Answers  


Categories