What do you understand by a stored procedure?

devquora
devquora

Posted On: Feb 22, 2018

 

The group of SQL statements which are or have been stored in the server database is known as a stored procedure. Input parameters are accepted in the stored procedures so that several clients can use that single procedure over the network using that single input data. It holds an advantage that whenever the procedure gets updated; all the clients automatically get the updated version. Stored procedures help in reducing the network traffic and also improve the performance of the data. The integrity of data can be ensured while making use of stored procedures.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Stored Procedures Interview Questions

    Mention the uses of stored procedures.

    Stored procedures are used for various different things. Some of the uses of stored procedures are as follows:Stored p..

    Stored Procedures Interview Questions

    What are the types of stored procedures in an SQL server?

    The types of stored procedures present in an SQL server are listed as follows: – User-defined stored procedures– th..

    Stored Procedures Interview Questions

    What are the advantages of using a stored procedure?

    The following are the advantages of using a stored procedure: – It reduces the network usage between the client and t..