What is a stored procedure?
Answers were Sorted based on User's Feedback
Answer / vijay
Stored procedures are precompiled database queries that
improve the security, efficiency and usability of database
client/server applications. Developers specify a stored
procedure in terms of input and output variables. They then
compile the code on the database platform and make it
available to aplication developers for use in other
environments, such as web applications. All of the major
database platforms, including Oracle, SQL Server and MySQL
support stored procedures. The major benefits of this
technology are the substantial performance gains from
precompiled execution, the reduction of client/server
traffic, development efficiency gains from code reuse and
abstraction and the security controls inherent in granting
users permissions on specific stored procedures instead of
the underlying database tables.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / hokar
stored procedure is a set of sql statements that are stored
in the database on a server rather than storing it in the
database.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / casmir
stored procedure is a set of sql statements that are stored
in the database on a server rather than storing it in the
database.
Is This Answer Correct ? | 2 Yes | 1 No |
What is normalization and its types?
How many cores do I need for sql server 2016?
What is sql server schema compare? How we can compare two database schemas?
what is trigger
1 Answers CarrizalSoft Technologies, NIIT,
Explain an automatic checkpoint
What does the INSTEAD OF trigger do?
What are transactions and its controls?
How we can compare two database data?
How do I port a number to sql server?
What are the differences between having and where clause.
What are the different authentication modes in sql server? How can it be changed?
what is difference between having and where clause ?