Answer Posted / sushma
No.
SQL*Plus is an interactive program that allows you to type
in and execute SQL statements. It also enables you to type
in PL/SQL code and send it to the server to be executed.
SQL*Plus is one of the most common front ends used to
develop and create stored PL/SQL procedures and functions.
The important thing is that SQL*Plus does not execute your
SQL queries. SQL*Plus also does not execute your PL/SQL
code. SQL*Plus simply serves as your window into the Oracle
database, which is where the real action takes place.
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
What happens when a trigger is associated to a view?
Why truncate is faster than delete?
Are stored procedures faster than dynamic sql?
How to start oracle sql developer?
How to create a menu in sqlplus or pl/sql?
What are the advantages of pl sql?
what is difference between delete and truncate commands? : Sql dba
What are three advantages to using sql?
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
What is view? Can we update view
Can we join tables without foreign key?
What is break?
Describe types of sql statements?
how to use regular expression in pattern match conditions? : Sql dba
Is sql similar to python?