![]() |
Difference between Stored procedures and User Defined functions[UDF]
The definition of stored procedure as from WIKIPEDIA
Stored procedure A stored procedure is a program (or procedure) which is physically stored within a database. They are usually written in a proprietary database language like PL/SQL for Oracle database or PL/PgSQL for PostgreSQL. The advantage of a stored procedure is that when it is run, in response to a user request, it is run directly by the database engine, which usually runs on a separate database server. As such, it has direct access to the data it needs to manipulate and only needs to send its results back to the user, doing away with the overhead of communicating large amounts of data back and forth. User-defined function A user-defined function is a routine that encapsulates useful logic for use in other queries. While views are limited to a single SELECT statement, user-defined functions can have multiple SELECT statements and provide more powerful logic than is possible with views. In SQL Server 2000 User defined functions have 3 main categories
Code: SQL
Code: SQL
|
Re: Difference between Stored procedures and User Defined functions[UDF]
super
|
Re: Difference between Stored procedures and User Defined functions[UDF]
Where can i find detail information on this topic ?????
Linda <<Link Removed>> |
Re: Difference between Stored procedures and User Defined functions[UDF]
Linda, Please confine your links to signatures only.
|
Re: Difference between Stored procedures and User Defined functions[UDF]
Can i get a link where i can clearly identify the difference between a stored procedure and a function?
|
Re: Difference between Stored procedures and User Defined functions[UDF]
Quote:
|
Re: Difference between Stored procedures and User Defined functions[UDF]
I did not get the following statment ....
UDF can be used in the SQL statements anywhere in the WHERE/HAVING/SELECT section where as Stored procedures cannot be. Could any one please more focus on it |
Re: Difference between Stored procedures and User Defined functions[UDF]
You can have UDF in the condition of where clause.
|
Re: Difference between Stored procedures and User Defined functions[UDF]
i have read some where that significant difference between them is that UDFs can't change the server environment or your operating system environment, while a SPROC can
so my question is that how sp can change server environment or your operating system environment . I would be grateful to any one if descibe by any example hwo this happens |
Re: Difference between Stored procedures and User Defined functions[UDF]
There is nothing like operating system environment correct me if I am wrong it is just the context environment in which program is executing
|
| All times are GMT +5.5. The time now is 13:18. |