GeekInterview.com
Series: Subject: Topic:

Oracle Concepts Interview Questions

Showing Questions 1 - 20 of 216 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

How many codds rule should Oracle satisfies

Asked By: Ajish | Asked On: Sep 28th, 2005

Answered by: ashu on: Mar 20th, 2013

Are you talking about EF Codds 12 rules?

I seem to recall that Oracle has satisfied MAX of 12, with the exception being that the empty string is treated as a NULL.

Answered by: rojalinpanigrahi on: Sep 30th, 2008

Oracle should satisfy 13 rules of codd

How to write test case of an email inbox field

Asked By: raufsamra | Asked On: Nov 17th, 2012

Hi..I am a student and I am learning software quality assurance subject...I want to know how to writes test cases for an email inbox of an email account.I will be very thankful to u

Answered by: Radha on: Jan 17th, 2013

Check list to keep in mind when writing test cases for email inbox field. I will start up with a example with Gmail: 1. Login to gmail and check that when you click on submit by your user credential...

How many control files created at the time of database creation?

Asked By: halim.jhs | Asked On: Jul 18th, 2012

Answered by: jazz on: Sep 10th, 2012

there are max 8 control files that we can create, however normally there are 3 control files that are created.

What are GLobal and local index?

Asked By: anjali18sept | Asked On: Sep 23rd, 2011

Answered by: farhad alam on: May 22nd, 2012

Global Index : A single index covering all partitions. Local Index : Separate indexes for each partition. A local index can be unique. However, in order for a local index to be unique, the par...

Can you pass data parameters to forms?

Asked By: Interview Candidate | Asked On: Sep 12th, 2004

No.

Answered by: geekano on: Feb 3rd, 2012

I think you can pass parameters to a form

What is awr report in Oracle?

Asked By: zyed.shaikh3 | Asked On: Oct 24th, 2011

Answered by: oracle2066 on: Dec 28th, 2011

You also have AWRSQRPT that collects statistics and tracks SQL statements as well.

Answered by: Lokesh M on: Nov 29th, 2011

Automatic Workload Repository (AWR) is the enhanced version of statspack and is used as performance gathering and reporting tool. AWR is basically used to gather performance related statistic such as ...

List out differences between Oracle server 9i and Oracle server 10g.

Asked By: subramanyam | Asked On: Dec 19th, 2005

Answered by: Azam on: Oct 24th, 2011

10 G supports grid computing, ASM (Automatic storage management) and Memory management. Oralce 10g is higher version of 9i , Oracle 10g has added a follwoing features Transparent Data Encryption A...

Answered by: Ashwin Hegde on: Aug 20th, 2011

i is for Internet
g is for Grid Computing

Database running slow

Asked By: sanjayocp | Asked On: Jun 21st, 2008

If your database is running slow from last 2 hrs.You can't wait for statspack report generation. What will be your first step to handle the problem? Where can be the problem?

Answered by: ramavenky on: Feb 19th, 2010

Check for Buffer Cache Size
Check For Poor SQL Query

Answered by: kven_sat on: Aug 7th, 2008

Remove unnecessary joins,  too much normalization can effect query to perform slow, excess use of cursors, indexes, procedures or temporary tables may effect on query to perform slow. If my answer is wrong please correct me

User not able to access database

Asked By: gyanendradba | Asked On: Aug 18th, 2009

When users are not able to log onto database, what are all the probable reasons?

Answered by: Arpit Narula on: Sep 14th, 2009

1. Database server is not up.
2. User not aware of the correct credentials.
3. TNS entry is not proper.
4. Some network problem.

What are the different types of record groups?

Asked By: Interview Candidate | Asked On: Sep 12th, 2004

Query record groups nonquery record groups state record groups

Answered by: Push_22 on: Sep 7th, 2009

Static Record groups
Query Based Record Groups
Non-Query Based Record Groups

What is a library?

Asked By: Interview Candidate | Asked On: Sep 12th, 2004

A library is a collection of subprograms including user named procedures, functions and packages.

Answered by: orazeb on: Jul 11th, 2009

When some procedures, function are frequently used in your applications, you can create a library containing these functions or procedures, and call them from anyform, to avoid redundancy or writing t...

Hi how to place different column in on columneg:if we have address column in that we have to place addr1,addr2,addr3.

Asked By: vijay | Asked On: Sep 18th, 2006

Answered by: siva14329 on: Mar 17th, 2009

That time use Abstract Data Type i.e.,first step create type.SQL>create type full_addSQL>( addr1 varchar2(15), addr2 varchar2(15),addr3 varchar2(15)); Second stepNow full_add is abstract type, then a...

Answered by: ddkdhar on: Feb 10th, 2007

can any body explain the concept here

Hi!!!I want to know that..Is there any special way to login into Oracle SQL*plus editor directly..Rather than every time u have enter user,password,host string...What should I do with login.SQL script.....

Asked By: Nitina | Asked On: Jun 20th, 2006

Answered by: kumars77 on: Dec 27th, 2008

Right click on SQLPLUS icon on desktop and place username/password in target box after existing path  e.g
C:oracleora92binsqlplusw.exe username/password

Answered by: sravan1 on: Dec 12th, 2006

Good tip.  working great.. thanks

Wat is the difference between object library and PL/SQL library

Asked By: pradeep_davis | Asked On: Sep 29th, 2005

Answered by: mohtaak on: Nov 20th, 2008

Object group can be used within same form but Object library can be used through out the data base connectivity in any form.

Answered by: akhileshkaddi on: Jun 23rd, 2006

when object library is attached to a form, complete object library are compile/used in compilation, assume that object library has some objects like 1, 2,3. But my form don't use 1,2 & 3 all, it u...

Write a SQL query to reflect changes made in one table if u have two tables emp1& emp2.

Asked By: prasad7777 | Asked On: Oct 22nd, 2006

Answered by: Mad Hatter on: Nov 6th, 2008

For example, if tables Emp1 and Emp2 both have identical structure, and some changes were applied in them, then MINUS can show the difference. Like
select *
from Emp1
MINUS
select *
from Emp2
UNION
select *
from Emp2
MINUS
select *
from Emp1

Answered by: ddkdhar on: Feb 10th, 2007

with triiger we can do this......but in sql there is no such thingbut we can do it by viewfor example emp1 is a table and emp2 is view .if you iinsert rows into view tht may maynot reflect in the base table

How to get a calender in date field in Oracle forms?

Asked By: Prasad | Asked On: Feb 8th, 2006

Answered by: Enamul on: Jul 9th, 2008

At first configure webconfig file that have in server folder.

Answered by: mad_bu on: Jan 5th, 2007

hi,   I am a new member in this forum, I tried your ans for attaching a calendar to an LOV field. But when i write a code in key-listval trigger it is giving me an error saying calendar.show...

1. What is bitmapped indexes?2. What is b-tree index?

Asked By: mallickarin | Asked On: Aug 2nd, 2006

Answered by: sweetytrivedi on: Jun 25th, 2008

B-Tree indexes are usually associated with the index that stores a list of ROWIDs for each key.While Bitmap is also organized as B tree , but the leaf node stores a bitmap for each value instead of a list of ROWIDs. B tree can be used for OLTP while bitmap is used for data warehousing system.

Answered by: hemshikha on: Sep 1st, 2006

Conventional wisdom holds that bitmap indexes are most appropriate for columns having low distinct values—such as GENDER, MARITAL_STATUS, and RELATION. This assumption is not completely accurate, howe...

Explaint the nvl2 function

Asked By: senthil | Asked On: Jul 25th, 2006

Answered by: nandk.sharma on: Jun 16th, 2008

nvl2 function is the upgraded form of nvl function.In nvl function we need to pass two parameters.i.e. nvl(interest_rate ,returned_value) if the value of interest_rate is null then the nvl function r...

Answered by: thumunagamani on: Jun 13th, 2008

nvl2(exp1,exp2,exp3)
if exp1 is null it manipulate exp3,if exp1 is not null it manipulates exp2
eg:select ename,nvl2(comm,comm+sal,sal) net from emp;

Navigation trap

Asked By: Ivana | Asked On: Mar 26th, 2008

Explain how the cursor can become stuck between two items, resulting in a navigation trap.

First | Prev | | Next | Last Page

 

 

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.