-
-
-
-
What are the components of a PL/SQL Block ?
Declarative part, Executable part and Exception part. Datatypes PL/SQL
-
-
Write the order of precedence for validation of a column in a table ?
I. done using Database triggers. ii. done using Integarity Constraints. I & ii. Exception :
-
-
PL/SQL Block output
begin For i in 1..5 loop insert into A values(i); savepoint 1; end loop; rollback to savepoint 1; commitend;--initially there are no data in table A. So my question is after execution of this block what should be the data present in table A?
-
Example for calling procedure
Give an example for calling procedure with user and system exception
-
PL/SQL tables
How will implement the PL/SQL tables?
-
-
Oracle triggers
Can we issue rollback, commit in the trigger body. if we issue what is the result
-
Difference between 'TABLE OF' and 'REF CURSOR'
What exactly the difference between 'TABLE OF' and 'REF CURSOR' in PL/SQL?For what purposes these both might be used?
-
Oracle Cursor types
What are the types of cursors apart from explicit and implicit cursors ? Explain when and where they are used ?
-
How to write a query or procedure or function to retrieve all the tables from database where the table dont have any data (no rows).
Database has 100 tables and some of the tables dont have any data. I want to pullout those table names from database in Oracle.
-
Problem with Utl_file.fopen
Hi,There is problem with ult_file.fopen. When I run from the server side, there is no issue with utl_file and it is working fine.If I run the same procedure from Client machine, I am facing problem. It throws an exception Invalid_operation.I am using Oracle 8.2 and Unix server.Can you please let me know what change needs to be done? Is this related to permission issue.Thanks & Regards,Ananth P
-
-
-
Skip Columns with SQLLDR
How to skip columns while loading data with SQLLDR
-
PL/SQL Interview Questions
Ans