What are user defined stored procedures ?

Answer Posted / rishi anand

Stroed procedures are basically set of sql statements.User
defined stored procedures are created by users in which
they can use functions,procedures to get the desired result
from database.

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is data abstraction in sql?

507


what is index? : Sql dba

554


Why triggers are used?

550


What is memory optimized table?

571


What is input buffer in sql*plus?

635






Can we use insert statement in function?

512


How do I save the results of sql query in a file?

531


What is a schema? How is it useful in sql servers?

589


Give the order of sql select?

606


Explain the advantages and disadvantages of stored procedure?

641


Which language is used in sql?

514


What is scope and visibility in PL/SQL?

592


Can we insert in sql function?

534


how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc

3229


What is the difference between an inner and outer join?

532