GeekInterview.com
  I am new, Sign me up!
 

Oracle SQL FAQ


Oracle SQL FAQ

Questions: 202
Comments: 670
 Oracle SQL FAQ Tags
 Showing Questions 51-60 of 203 Questions
<< Previous 2 3 4 5 [6] 7 8 9 10 11 Next >>
 Sponsored Links

 
 Oracle SQL FAQ
Sorting Options :  

1. How many non cluster index we have use in one table?2. How we set the priority in the cluster index?3. What is co-releated sub query? 
View Question | Asked by : radomathan

What is the literal meaning of SQL 
Latest Answer: A literal in SQL mean any representation in string and the value should not be a key word in SQL.Hope this answers your question. ...

How can I copy the stucture of a table to a text file. 
Latest Answer: You can copy the definition of objects to text file using dmbs_metadata package.This is the query to copy emp table definition to text file.spool textfilenameselect dbms_metadata.get_ddl('TABLE','EMP','CMSJAN') from dual;spool ...

How to copy a table with constraints and data to another table. 
Latest Answer: Using the following query you may copy table structure and data but you can't copy constraints.Create table emp_copy as select * from emp; ...

List the premium customers who is not using the service within the last one week.if you have these tables: 1-'Premuim_USER'columns: Customer_ID, post_paid.2-'calls'columns: called_number, 
Latest Answer: SELECT a.customer_id FROM premium_user a, calls b WHERE a.customer_id=b.customer_id AND b.call_date NOT BETWEEN SYSDATE-7 AND SYSDATE AND TO_DATE(TO_CHAR(b.call_time_ended,'DD-MON-YYYY')) NOT BETWEEN SYSDATE-7 AND SYSDATE ...
Read Answers (1) | Asked by : mnmlove

What is difference between constraint and index? How do use them in SQL query? 
Latest Answer: Constraint  is  used to restrict invalid and inconsistent data entry  into the table.Index is used  for faster retrieval of data.Both are entirely different concepts. ...
Read Answers (3) | Asked by : newqtp

What is difference between unique index and simple index?is it possible, two rows can have the same unique index? 
Latest Answer: Unique Index:If the index is for a primary or unique key then the owner, name, type, and columns cannot be modified. These properties are all derived from the key constraint. Changing the name of the key constraint will automatically change the name of ...
Read Answers (1) | Asked by : newqtp

How can we view sysdate for n number of times  
Latest Answer: select sysdate from dual; ...

How to fill Dataset from Datareader? 
Latest Answer: by using datasetds = new dataset()sqlDbAdapter ad = new sqlDbAdapter(sqlquery,connobject)ad.fill(ds,tablename)DataReaderdr = new sqlDataReader()sqlCommand sqlcmd = new sqlcommand(sqlqry,conObject)dr = sqlcmd.executeReader();The datareader can be used ...
Read Answers (1) | Asked by : chary_07

How to know the days or months or years between two employees in emp table. 
Latest Answer: select hiredate,lead(hiredate,1) over(order by hiredate) next_months, round(months_between(lead(hiredate,1) over(order by hiredate),hiredate),3) months from emp; ...
Read Answers (1) | Asked by : jbabu

View page << Previous 2 3 4 5 [6] 7 8 9 10 11 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