What are the differences between stored procedure and
functions in SQL Server 2000?
Answer Posted / bed singh
a. A FUNCTION is always returns a value using the return
statement. A PROCEDURE may return one or more values
through parameters or may not return at all.
b. Functions are normally used for computations where as
procedures are normally used for executing business logic.
c. A Function returns 1 value only. Procedure can return
multiple values (max 1024).
d. Stored procedure returns always integer value by default
zero. Whereas function returns type could be scalar or
table or table values
e. Stored procedure is precompiled execution plan where as
functions are not.
f. A function can call directly by SQL statement like
select func_name from dual while procedure cannot.
g.Stored procedure has the security and reduces the network
traffic and also we can call stored procedure in any no. of
applications at a time.
h. A Function can be used in the SQL Queries while a
procedure cannot be used in SQL queries .that cause a major
difference b/w function and procedures.
| Is This Answer Correct ? | 165 Yes | 8 No |
Post New Answer View All Answers
In which tcp/ip port does sql server run? Can it be changed?
Where are stored procedures in sql server?
What is master database? : SQL Server Architecture
Explain query editor regions
Sql server reporting services vs. Crystal reports.
Do you know what are acid properties of transaction?
What is a ddl statement?
What is merge statement?
Can you please explain the difference between function and stored procedure?
what are the new features in SSRS?
can a database be shrunk with users active? : Sql server administration
If a table does not have a unique index, can a cursor be opened on it?
What is acid db?
What is the log shipping?
Explain the concept of view and Types of views in SQL server?