FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

SQL INTERVIEW QUESTION & ANSWERS

Follow Us
 
46. What is multiple column subquery?
  A multiple column subquery returns more than one column. In a multiple column subquery, the resulting rows of the subquery are evaluated pair wise (that is column to column and row to row comparisons) in the main query.
Your Name Your Email-ID
Your Answer
 
47. What is correlated subqueries?
  A correlated subquery is the SELECT statement that is nested inside another query containing the reference of one or more columns in the outer query.
Your Name Your Email-ID
Your Answer
 
48. What is the difference between nextval and currval?
  The NEXTVAL pseudocolumn increments the current value of a sequence and returns the next value of the sequence.
The CURRVAL pseudocolumn returns the current value of a sequence.
Your Name Your Email-ID
Your Answer
 
49. What is deadlocks?
  A deadlock occurs when two transactions hold locks and each is waiting for a lock held by the other session. In the sample sessions below, two users hold clashing locks. Oracle detects this deadlock condition (usually within a couple of seconds) and raises an exception in one of the sessions.
  Posted by Dinesh Sati. (Oct 05, 2013)
 

When two process are waiting for same object (updating same row) which is held by any other process is called deadlock condition.

Your Name Your Email-ID
Your Answer
 
50. What is the difference between Apache and Oracle HTTP server?
  Oracle HTTP server is the customized form of the Apache. Oracle has customized the Apache Web server as per its own requirement which is known as the Oracle HTTP server.
Your Name Your Email-ID
Your Answer