How to Switch to DOS prompt ?
host
DOS
doshost
dos host
How do I eliminate the duplicate rows ?
delete from table_name where rowid not in (select max(rowid) from table group by duplicate_values_field_name);
delete duplicate_values_field_name dv from table_name ta where rowid
delete ename from emp a where rowid < ( select min(rowid) from emp b where a.ename = b.ename);
Delete all
Explicit Cursor attributes
%Found
%NOTFOUND
%ROWCOUNT
%ISOPEN
How to view installed Oracle version information
select banner from v$version;
select # from v$version;
select ver from v$version
select version from v$version;
Which of the below arePL/SQL Exceptions
No_Data_Found
Too_many_rows
Value_Error
Zero_Error
The maximum number of triggers we can apply to a single table is 12
True
False
SYSDATE is a pseudo column
Cursor_Already_Open is a valid Cursor exception?
Is it possible to have multiple datasources to display a single report?
Data integrity exists on ACCESS LOCK?