What are the difference between Functions/Stored Procs and
Triggers and where are they used.
Answer / barun
Function-1.function used for calculation perpose.it must
return value.(call by pl/sql code block,by sql query)
Procedure-it is used to implement business logic.it may or
not return value.it pre compile and stored in server data
base.so it is faster.(call by pl/sql code block_
trigger-it is used to implement business logic and maintain
intigrity.it cant take any para-meter like fun or
procedure.it is automatically fired(implicitely)
Is This Answer Correct ? | 8 Yes | 0 No |
Does varchar need length?
Name three sql operations that perform a sort.
What are analytical functions in sql?
how do you know if your mysql server is alive? : Sql dba
define sql update statement ? : Sql dba
Why do you partition data?
select * from emp where sal in(select max(sal) from emp) here there is any limit for in operator how many values accpect ?
using cursors salesman get bonus as 10% of their salary , managers get 20% , analalist get 30%. generae a report showing the employee name, salary , bonus.
Why is nosql good?
What is the function that is used to transfer a pl/sql table log to a database table?
What is full join?
Explain dml and ddl?