Explain what are the characteristics of data files?
No Answer is Posted For this Question
Be the First to Post Answer
What is a read only transaction in oracle?
Briefly explain what is literal? Give an example where it can be used?
I have a table emp. There is only one column in the table. In that , there are only three rows in that column. The value in the first row is 'A' and the value in the second row is 'B' and the third row is 'C'. Now, my question is , How will you write a select query to display the output as B C A Note: order by cannot be used coz it gives us output as CBA. But the output should be BCA.
select * from emp what happened internally when we write this query in the sql prompt?
Given two table employee and department EMP ---------------- empid deptid(fk) Dept --------------------- deptid(pk) deptname que-Write a query to find count of employee in each department. Expected Output- deptid countofEmployee --------------------------- 10 57 20 20 30 15
What is COST-based approach to optimization ?
material view and view disadvantages?
What is procedure overloading in oracle?
How to retrieve values from data fields in record variables?
Define the terms primary key foreign key and also the difference between primary and the unique key
Can we call a trigger inside a function and function inside a trigger? Give example.
Can any one explain me when i execute below query.. select months_between('07-JUL-12','10-FEB-12') from dual; Out put:- 4.90322581 How oracle calculate?