I have one Excel file with 1,50,000 Records. Now I need to
load that whole file into Oracle Database with same columns
in Excel sheet .
I need PLSQL Procedure or used by SQL PLUS
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
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.
Answer
Is This Answer Correct ? | 2 Yes | 0 No |
consider a table which contain 4 columns,ename,eno,sal and
deptno, from this table i want to know ename who having
maximum salary in deptno 10 and 20.
Answer
Is This Answer Correct ? | 1 Yes | 0 No |
Question { Geometric Software, 12552 }
suppose I have two table one Emp and other is dpt.
Emp table has a field ,dept id,name ,sal and dpt table has a
field dept id,dept name.
Now I want to find out the emplyee list whose sal is between
2000-3000 from dept x.
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
I have a Employee table with columns
ename,eid,salary,deptno. How to retrieve sum of salary for
each deptno?
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
Question { Tech Mahindra, 26320 }
how u can find the n row from a table?
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
can we call a procedure from a function?
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
i have a table
eno dno sal
1 10 200
2 10 150
3 10 100
4 20 75
5 20 100
i want to get sal which is less than the avg sal of thri dept.
eno dno sal
2 10 150
3 10 100
4 20 75
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
Question { Saama Tech, 9845 }
If i insert record in table A and these record should update in table B by using Trigger.How to achieve this.
Answer
Is This Answer Correct ? | 1 Yes | 0 No |