Does SQL*Plus contains pl/sql Engine?



Does SQL*Plus contains pl/sql Engine?..

Answer / 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

More SQL PLSQL Interview Questions

how do u call in & out parameters for stored procedures?

10 Answers   A1 Technology, TCS, Techicon,


What is materialised View?

2 Answers   IBM,


What are tables and fields in the database?

0 Answers  


Hi Guys, I have a situation where I need to access the column values from rowtype variable. However, the column names are dynamic. below is sample code: declare Cursor c1 is select * from emp; Cursor c2 is select column_name from xyztable; v_c2 c2%rowtype; v_str varchar2 v_value varchar2(200); begin for rec in c1 loop open c2;---this cursor has column names like EMPLOYEE_ID, FIRST_NAME, LAST_NAME etc. loop fetch c2 into v_c2; exit when c2%notfound; /* now lets say i want to access value of LAST_NAME from cursor c1, so I am writing below code, however it does not work as expected */ v_str:= 'rec.'|| v_c2.column_name; -- this will give me string like "rec.EMPLOYEE_ID" v_value:=v_str; end loop; end loop; end; / Plz help ASAP.Thanks.

2 Answers  


What do you mean by stored procedures?

0 Answers  






What are the different types of joins and explain them briefly.

3 Answers  


what is normalization? : Sql dba

0 Answers  


what are the differences between get and post methods in form submitting. Give the case where we can use get and we can use post methods? : Sql dba

0 Answers  


Can a procedure in a package be overloaded?

0 Answers   EXL,


How do you retrieve set of records from database server. {Set max records = 100 & use paging where pager page no or records = 10 & after displaying 100 records again connect to database retrieve next 100 }

2 Answers   DELL,


What is delimiter in pl sql?

0 Answers  


What are keys in sql?

0 Answers  


Categories