How do you write a complex sql query?
what is an extent ? : Sql dba
What do you understand by exception handling in pl/sql?
what is commit? : Sql dba
How do you remove duplicate records from a table?
what are the advantages of mysql in comparison to oracle? : Sql dba
What are aggregate functions in sql?
How would you pass hints to the sql processor?
What are the Restrictions on Cursor Variables?
I have a Employee table with columns ename,eid,salary,deptno. How to retrieve sum of salary for each deptno?
Create table emp (id number(9), name varchar2(20),salary number(9,2)); The table has 100 records after table created.Now i nee to change id's Datatype is to be Varchar2(15). now Alter table emp modify(id varchar2(15),name varchar2(20), salary number(9,2)); Whether it will work or returns error? post answer with explanation.
what is bcp? When does it used? : Sql dba
How can we find duplicate records in a table?