GeekInterview.com
  I am new, Sign me up!
 

Oracle SQL FAQ


Oracle SQL FAQ

Questions: 201
Comments: 669
 Oracle SQL FAQ Tags
 Showing Questions 1-10 of 202 Questions
[1] 2 3 4 5 6 7 8 9 10 Next >>
 Sponsored Links

 
 Oracle SQL FAQ
Sorting Options :  

How to handle Null value in WHERE Condition? 
View Question | Asked by : anjinunna

Describe variable length record representation in files using byte string representation 
View Question | Asked by : beethakker

How to get System time in SQL? 
View Question | Asked by : ulkesh

What are Pair Wise & Non-Pair Wise Columns? 
View Question | Asked by : gvmahesh

What is soundx in SQL? 
Latest Answer: This is Soundex Function is useful to select the data according to the sound of the given value but not compare with the casing of that letters.For Example: SQL> SELECT * FROM emp WHERE Soundex(Ename)=Soundex('Analyst'); It select all the Analyst ...

How many ref cursors can be dynamically opened in stored procedures for a session? 
Latest Answer: more then one query open same cursor name at same time (use unlimited query) ...

How to use select statement in Case? 
Latest Answer: SELECT  e.emp_name, e.emp_id,                      CASE e.emp_id            WHEN 1133 THEN ' The ...

How to secure SQL scripts so that they cannot be seen by others but can only be executed. 
Latest Answer: Create a view and remove all the privilages except select on that view ...

What is use of lock query in SQL Plus? Give its syntax and implementation? 
Latest Answer: Locking protect table when several users are accessing the same table. Locking is a concurrency control technique in Oracle. It helps in data integrity while allowing maximum concurrency access to data. Oracle offers automatic locking whenever situation ...

How to retrieve odd and even number of rows from a table? 
Latest Answer: select * from (select rownum as rwid, a.* from (SELECT empno,ename,job,mgr,hiredate,sal,comm,deptno from emp) a) where mod(rwid,2) = 1 This query will be helpful to find out the odd records for even records just change to mod(rwid,2) = 0 Thanks Aditya ...

View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Ask A Question
Go Top
 Sponsored Links

 
Sponsored Links

 
Ask Question
You must login to Ask Question or Register your free account

Category:

 
Question Title:


Question in Detail:

Add this to my Subscribed Questions (?)
Send me email when new answer is posted (?)

 
Subscribe
Get Latest Updates Via RSS Reader or by Email
 Forum Discussion Subscribe to Forum Discussions Via E-Mail Latest Forum Discussions Subscribers
 Knowledge Base Subscribe to Knowledge Base Series Via E-Mail Knowledge Base Subscribers
 Learning Series Subscribe to GeekInterview Learning Series Via EMail Learning Series Subscribers
 Freelance Jobs Subscribe to GeekInterview Freelance Jobs Via EMail Latest Freelance Jobs Subscribers
 GeekInterview Blog Subscribe to GeekInterview Blog Via EMail GeekInterview Blog Subscribers
 Testing Interview Questions Subscribe to Testing Interview Questions Via EMail Testing Interview Questions Subscribers
 Oracle Interview Questions Subscribe to Oracle Interview Questions Via EMail Oracle Interview Questions Subscribers
 Java Interview Questions Subscribe to Java Interview Questions Via EMail Java Interview Questions Subscribers
 Latest Placement Papers Subscribe to Latest Placement Papers Placement Papers Subscribers
 Free Training Subscribe to Free Training Via EMail Free Training Subscribers
 Learn AJAX Subscribe to AJAXwith.com Via EMail AJAXwith Subscribers
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape