Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@saandeep-sreerambatla-hWHU1M • Oct 28, 2009
I have a question here..
Which programming language you are talking about?
I am not sure this is true for everything ? Correct me If i am wrong 😀 -
@mahesh-E2tZ3t • Oct 28, 2009
sorry for that ESEnglish-ScaredI have a question here..
Which programming language you are talking about?
I am not sure this is true for everything ? Correct me If i am wrong 😀
talking about SQL function and a stored procedure
I am preparing for Oracle certification 😎 -
@saandeep-sreerambatla-hWHU1M • Oct 28, 2009
mahesh_dahalesorry for that ES
talking about SQL function and a stored procedure
I am preparing for Oracle certification 😎
Thanks for the information dude.
I dont know anything about SQL, but I can learn from this thread.
Please keep this thread alive. -
@sookie-T06sFW • Oct 31, 2009
Functions must return a value back to the caller. They don't have any OUT parameter but have RETURN value.
Stored Procedures can return multiple values to the caller by use of OUT parameters. -
@mahesh-E2tZ3t • Oct 31, 2009
-
@specialdb-XFF99c • Nov 5, 2009
1. Functions are compiled and executed at run time.
Stored procedures are stored in parsed and compiled format in the database.
2. Functions cannot affect the state of the database which means we cannot perform insert,delete,update and create operations on the database.
Stored Procedures can affect the state of the database by using insert,delete,update and create operations.
3 Functions are basically used to compute values. We passes some parameters to functions as input and then it performs some operations on the parameter and return output.
Stored procedures are basically used to process the task.