New Oracle General Interview Questions :: ALLInterview.com http://www.allinterview.com New Oracle General Interview Questions en-us what is query and types of query http://www.allinterview.com/showanswers/77397.html to retrieve data from the database tables is called query difference between imlicit cursor and explicit cursor ? http://www.allinterview.com/showanswers/76576.html Implicit : Every SQL Statement performed as implicit cursor. Ex: Select * from Emp where empno = 7839 This is query automatically open the cursor and fetch the record getting the output of that record. Explicit : In PLSql Block in we declare on de how to delete all duplicate records from a table using subquery? http://www.allinterview.com/showanswers/76575.html delete from abc where rowid not in (select max(rowid) from abc group by column_name_with_dup.values.); Is primary key = unique key,not null? If yes,please explain IF No,pl http://www.allinterview.com/showanswers/76484.html Primary key and unique are Entity integrity constraints Primary key allows each row in a table to be uniquely identified and ensures that no duplicate rows exist and no null values are entered. Unique key constraint is used to prevent the d How we can able to import our own template (users designed MS-Word te http://www.allinterview.com/showanswers/76257.html what r tyhe major differences between oracle 9i &amp; 10g? http://www.allinterview.com/showanswers/76173.html oracle 10g has introduced data pump,awr addm etc Hello All, Could any one provide me FAQs/interview questions on o http://www.allinterview.com/showanswers/75689.html Plese see thin link: http://www.orafaq.com/wiki/PL/SQL_FAQ how to clone 9i Database on to 10g Database. http://www.allinterview.com/showanswers/74612.html Give SQL Query to find the number words in a sentence ? ex: &#039;ram http://www.allinterview.com/showanswers/74519.html how will I find the first 5 highest salaried employees in each dept http://www.allinterview.com/showanswers/74517.html SELECT salary FROM employee where rownum < 6 ORDER BY salary DESC group by dept; WHEN CURSOR MOVES FROM ONE FORM TO ANOTHER FORM, HOW MANY TRIGGER WI http://www.allinterview.com/showanswers/74165.html SELECT THE RECORDS FROM 3 TABLES LIKE(T1,T2,T3) AND HOW CAN WE INSER http://www.allinterview.com/showanswers/74163.html Suppose that the tables are having same structure: insert into T4 ( select <col1>,<col2>, ...<colN> from T1 UNION select <col1>,<col2>, ...<colN> from T2 UNION select <col1>,<col2>, ...<colN> What different of iner joint &amp; outer joint with example http://www.allinterview.com/showanswers/74054.html inner join will select the record that are match only. it is just like equi join. but outer join select the record not only the equal one but also select the not equal one. outer join is of three type namely right outer, left how to insert data into partitioned table partition done by Range par http://www.allinterview.com/showanswers/74045.html suppose u have create partition table like, Sql>Create table Pixel_emp_details(emp_no number, emp_name varchar2(10)) partition by range (emp_no) (partition pixel_p1 values less than(10)); Sql>/ Table is created After that u have use What is the difference between Outer join and Full outer join? http://www.allinterview.com/showanswers/73478.html Outer Join: There are three types of outer joins namely: Left Outer Join---For retreiving all the columns from the first table irrespective of the column match. Right Outer Join---For retreiving all the columns from the second table irrespec