-
What is the output of the following pl/sql block ?declare v_empno emp.empno%type;begin select empno into v_empno from emp where empno = 10;exception when others then dbms_output.put_line ( 'no data found'); when no_data_found then dbms_output.put_line ( 'ther is no data found ');end;
when others then *ERROR at line 6:ORA-06550: line 6, column 2:PLS-00370: OTHERS handler must be last among the exception handlers of a blockORA-06550: line 0, column 0:PL/SQL: Compilation unit analysis terminated
-
-
-
-
-
now i want the result as
(248)9078905,(234)5678909 into another table called phone2.
">Hi Guys,i have an interview question. can anyone help me reg this.i have a table called "phone" and filed as "phone number" and table have values like 2489078905,2345678909now i want the result as (248)9078905,(234)5678909 into another table called phone2.
-
-
-
-
-
Explicit cursor and Select into statement
What is the difference between an explicit cursor and select into statement?
-
Status of Procedure
If a procedure is referring a table and if the structure of the table is changed, lets say data type of the any column is changed, then is it possible that the status of the procedure remains valid? Explain
-
Load excel data into oracle database
1. How to load excel data into oracle database by using sql loader?
2. What are the ways to load data from excel file in oracle database ? -
-
-
-
-
-
-
What is the need of primary key as opposed to using not null and unique ?
We can create a column with' not null+unique' with out using primary key
PL/SQL Interview Questions
Ans