Home
Interview Questions
Oracle
Basics
Oracle Basics Interview Questions
All Questions
Answered
Unanswered
Showing Questions 1 - 20 of 381
Questions
Sort by:Answers|Date
SEP
23
2006
01:39 AM
29772
Views
3
Ans
Best Answered
First | Prev | Next | Last Page
Jump to Page: 1
What is the difference between
entity and attribute?
GeekAdmin
Oracle Basics Interview Questions
To put the definition of an entity is an entity is a single
person, place, or thing about which data can be stored.
That is in other words for example when one wants to
store information about STUDENT then it has details like
studentno, student name, address for communication,
phone number, class of the student and so on. All of these
details together is placed in the entity or table called as
STUDENT....
rishabh
Jan 29th, 2016
Attributes are the properties of entity, i.e, Every
entity has some attributes.
magedabd
Apr 10th, 2010
The question is: " is the attribute instance." The
attribute itself is not an instance but the value
"Exforsys" stored in the attribute is aninstance.
Select Best Answer
JUL
02
2010
05:23 AM
2144
Views
5
Ans
Answer Question
SQL Commands to Manipulate
Oracle Database Structures
samarendra161
Oracle Basics Interview Questions
Which is the subset of SQL commands used to manipulate
Oracle database structures, including tables?
test
Jan 5th, 2016
DDL is used to define database structure (cerate ,
alter, drop, truncate)
DML is used to manipulate data ( select, insert,
update, delete)
So DDL is used to manipulate database
sri ram reddy
Nov 14th, 2015
Alter command manipulates Oracle database
structures including tables
Select Best Answer
NOV
17
2015
03:27 AM
Answer Question
Object and Relational View
sreenu
Oracle Basics Interview Questions
Explain the difference between object view and relational
view.
916
Views
1
Ans
Diptiman
Dec 21st, 2015
A "Relational View" is the projection of the data
using simple relational tables like: CREATE OR
REPLACE VIEW relational_view (employee_name,
department_name) AS SELECT employee_name,
department_na...
Select Best Answer
OCT
03
2006
05:03 AM
8680
Views
20
Ans
Answer Question
Create a query that will display the
total no.of employees and, of that
total, the no.of employees hired in
1995,1996,1997, and 1998. create
appropriate column headings.
adarsh_sp
Oracle Basics Interview Questions
RAVI
Dec 8th, 2015
Code
1.
SELECTTO_CHAR(HIREDATE,YYYY),COUNT(*)FROMEMPGROUPBYTO_CHAR(HIREDATE,YYYY)HAVINGTO_CHA
YaserAbbasi
Sep 25th, 2015
Late by couple of years but here you go"oracle8
SELECT COUNT(*) as "Total" ,SUM(CASE
TO_CHAR(HIRE_DATE,YYYY) WHEN 1995 THEN 1
ELSE 0 END) as "1995", SUM(CASE
TO_CHAR(HIRE_DATE,YYY...
Select Best Answer
JAN
08
2007
Truncate command in oracle is DDL
command or DML command ? give
the answer with descirptive reason
which is and why?
nareshgupta12
10:26 PM
5706
Views
17
Ans
Answer Question
Oracle Basics Interview Questions
SRI RAM REDDY
Nov 14th, 2015
Truncate is DDL command, not a DML command
When we issue Truncate on a database table, the
records are deleted from the table, and structure
remains same. Once we issue truncate on a table,
the record...
Akshatha
Dec 25th, 2014
Truncate is DDL. Auto commits the transaction.
Also, truncating a table can reset the high water
mark if REUSE storage clause is not used.
Select Best Answer
JUN
14
2010
03:31 AM
1927
Views
1
Ans
Answer Question
GROUP BY Performance
ravikumar.drk
Oracle Basics Interview Questions
Which one will give best performance between GROUP BY
function in Oracle and GROUP BY function in Crystal
Reports? Explain
Shyam
Oct 22nd, 2015
The Group BY in Oracle will give best performance,
because Group By is not a function for Oracle.
Select Best Answer
Answer Question
JUL
26
2006
02:45 AM
43326
Views
11
Ans
What is the difference between
rownum,rowid
senthil
Oracle Basics Interview Questions
Read Best Answer
Editorial / Best Answer
rishipahuja
Member Since Aug-2006 |
Aug 6th, 2006
rowid has a physical significance i.e you can read
a row if you know rowid. It is complete physical
address of a row.
While rownum is temporary serial number
allocated to each returned row during query
execution.
vinay
Sep 20th, 2015
It it will be re-assigned to a different row when
inserted by Oracle.
Arif
Jul 3rd, 2015
I have one doubt like you said that rowid is
automatically created when we add a row(record)
then what happens to rowid
when we delete that record?
Improve Answer
OCT
10
What is difference between COM &
DCOM?
satish
Oracle Basics Interview Questions
2005
Balaji
04:42 AM
5311
Views
2
Ans
Aug 5th, 2015
The way for accessing a remote object.
maqk
Jan 2nd, 2006
What's the Difference between COM and DCOM?
Obviously, the difference is that DCOM is
distributed but COM is not. To be more precise,
there are three main elements added to COM: The
way for creating a ...
Select Best Answer
SEP
08
Answer Question
What is normalization? What is the
advantage of normalization?
Oracle Basics Interview Questions
2005
Subrat
08:29 AM
47325
Views
18
Ans
Jul 28th, 2015
It is a Process to obtain a database design that
allows for efficient access and storage of data. This
process use reduce data redundancy and the
chances of data becoming inconsistent.
rama
May 11th, 2015
Normalization is the process of dividing the data
into separate tables because of dividing data into
tables avoiding the data redundancy(duplications)
Select Best Answer
AUG
28
2014
Answer Question
What is the difference between
trigger and constraints ?
narasingha baral
Oracle Basics Interview Questions
01:28 AM
munny
Triggers are the stored procedures that are fired
when an DB event occur where as Constraints are
the checks or the rules that are enforced on data
columns to maintain the data integrity. Both can
be...
6594
Views
6
Ans
Jul 24th, 2015
Samudrala
Jan 30th, 2015
Constraints are the rules enforced on data
columns on table. These are used to limit the type
of data that can go into a table. This ensures the
accuracy and reliability of the data in the database.
C...
Select Best Answer
OCT
02
2006
03:46 PM
1992
Views
3
Ans
Answer Question
Can any one tell me how the get the
datafile when my controlfile is lost
and i have created a new controlfile.
and the information about the
datafile is present in the previous
controlfile which is corrupt and
deleted. and there is no backup of
the datafile is present
parthokonar1
Oracle Basics Interview Questions
SATHEES KUMAR
Jul 1st, 2015
Control file is a small binary file that record the
physical structure of the database like datafile and
redolog file location, timestamp,scn and used for
recover purpose all so but have no datafile backup
then you cant recover the database.
Rushil
Sep 17th, 2014
Hi, Can anyone explain what is data file and
control file.
Select Best Answer
MAR
29
Answer Question
Can you explain what is DUAL table
in oracle ?
Sundra
Oracle Basics Interview Questions
2006
shadiq
11:49 PM
8292
Views
17
Ans
Jun 25th, 2015
Insert into dual values (Y); will work i guess, only
thing is you need a sufficient privilege...
Also Dual can have 1000 columns and only one
row.
subrahmanyam pattapu
Jul 19th, 2011
Dual is default table in oracle .it contains single
row and single column.All the Character functions
and number functions and date functions
execution done in this Dual table.
Select Best Answer
NOV
02
2014
07:10 AM
Answer Question
Finding errors from Pl/SQL package
uma
Oracle Basics Interview Questions
How to check errors from plsql package not by log file not
by "show err"from sql * plus provided concurrent program
name
2359
Views
5
Ans
prakash
Jun 8th, 2015
Using dbms_utility.format_error_mask function will
be used to get errors from that package.
Karthik Sai
Feb 2nd, 2015
Using exception / dbms output are the best and
easier methods
Select Best Answer
OCT
11
2007
Answer Question
What steps server process has to
take to execute an update
statement.
Rohit Mathur
Oracle Basics Interview Questions
09:09 AM
anjum
When update statement fires data will be loaded
into buffer from data files and keeps the old image
into undo tablespace and modifies the data in
buffer once you commit modified data will be
written to data files if you rollback data from
undotablespace it will read and writes to the data
files.
May 1st, 2015
2554
Views
4
Ans
premk
Dec 23rd, 2009
When a user issues a update statement the server
process checks for weather the same type of
command is executed recently or not if that
command is executed very recently then it directly
proceed to t...
Select Best Answer
FEB
24
2015
09:49 AM
3118
Views
3
Ans
Answer Question
Difference between IS and AS in
oracle
shankar
Oracle Basics Interview Questions
What is the difference between IS and AS in Oracle
PL/SQL..?
Nupur
Apr 24th, 2015
In plsql there is no difference.
pabitra praharaj
Mar 26th, 2015
IS is used in to filter which value is null or not null.
AS is used in for ALIAS
Select Best Answer
MAR
27
2006
05:36 AM
20377
Views
7
Ans
Answer Question
What is the difference between ALL
and ANY in ORACLE?can any one
explain with example?
abhimanu.singh
Oracle Basics Interview Questions
Samudrala
Jan 30th, 2015
ANY The ANY comparison condition is used to
compare a value to a list or subquery. It must be
preceded by =, !=, >, ANY (2000, 3000, 4000);
EMPNO SAL ---------- ---------- 7...
Samudrala
Jan 30th, 2015
ALL The ALL comparison condition is used to
compare a value to a list or subquery. It must be
preceded by =, !=, >, ALL (2000, 3000, 4000);
EMPNO SAL ---------- ---------- 783...
Select Best Answer
SEP
16
2005
Answer Question
In Oracle varchar2 takes dynamic
space for storage then why char is
still in oracle?
Beena
Oracle Basics Interview Questions
06:57 PM
Vijay Shewale
The reason behind char is still in oracle that is
some of the table and objects are stored in oracle
in char data types. to support that data types for
that it is still in oracle. one more thing that ...
Sep 11th, 2014
6476
Views
19
Ans
Paras
Feb 23rd, 2013
To Provide backward compatibility. i.e. program
written in older version of Oracle might have CHAR
used in it. The newer version should be
compatible with it. Thats why CHAR is still there in
Oracle ..
Select Best Answer
AUG
27
2005
07:26 AM
21676
Views
55
Ans
Answer Question
What is the difference between
primary key, unique key, surrogate
key?
Oracle Basics Interview Questions
Read Best Answer
Editorial / Best Answer
Kolta Sam
Member Since Jul-2011 |
Jul 10th, 2011
Primary Key:
It is a visible key
It generated by user or application.
It could be changed by the user or application.
It could be queried
It used to form a relation between tables
It shouldnt contain null value
It resemble table row
It is a unique identifier for a table object.
It contains only one key
It could contain numeric and strings characters.
It is an unique key which each row contain a
distinct different key.
Example for it is a customer_Id.
It always starts by number one and second is two
and so on but can starts with a different number.
Could created on one or more columns
No duplicate records
Secondary Key:
It used to form a relation between tables.
It is alternate table key.
It used to search data with primary key
It could contains null value
It could contains more than one secondary key
for each table
Created only on one columns
No duplicate records
It creates index clustered by default
Surrogate Key:
It is invisible key for the user or the application.
It resembles database entity.
It generated by the system so it is invisible for
user and application.
It shouldnt contain null values
Only one surrogate key for each data entity
Its value is unique system wide.
Its value is never manipulated by the user or the
application.
It never reused
It is frequently sequential number
It called synthetic key, an entity identifier, a
system-generated key, a database sequence
number, a factless key, a technical key, or an
arbitrary unique identifier
No duplicate records
gagandeepp
Aug 21st, 2014
Null values can be used more than one times in
the unique key column .....because null is not equal
to null or null is not equal to zero or null is not
equal to space..............
Kote
Mar 26th, 2014
Primary key does not accept any null value but
unique key accepts null value for each row of
Unique columns. Kote
Improve Answer
SEP
09
2005
08:23 AM
12869
Views
12
Ans
What is the diffrence between and
constraints and triggers?
Oracle Basics Interview Questions
rc
Aug 15th, 2014
CONSTRAINTS:= 1.it will check the existing data
and feature data. 2.we cant change the constraint
behavior these are predefined. 3.constraint are
not support the object tables. 4.constraints can
crea...
vishnuvardhanarao
Nov 14th, 2012
Check constraints it cant work multiple tables
Select Best Answer
JAN
26
2008
Answer Question
BASECONV.CONVDATA
Satish_Chaudhary_2113
Oracle Basics Interview Questions
What is the function
BASECONV.CONVDATA(FILED_01,ARG_1,ARG_2) used for ?
10:39 AM
nagarjuna
Baseconv.convdata is the conversion of some
encrypted data to numeric data. the conversion
values depends on the arguments u are passing
for the function
May 2nd, 2014
1898
Views
1
Ans
Select Best Answer
Showing Questions 1 - 20 of 381
Questions
Sort by:Answers|Date
Answer Question
First | Prev | Next | Last Page
Jump to Page: 1
HAVE INTERVIEW QUESTION?
Please select the most appropriate category and mention a brief question title
along with clear question details.
Ask Question
Login to Ask Question or Register your free account
Name:
Email:
Category :
SelectCategory
Sub Category :
Question Title:
Question in Detail :
Job Role (Optional) :
SelectJobRole
Company (Optional) :
SelectCompany
Optional Features
Subscribe to GeekInterview Newsletter
Yes, Subscribe me to Interview & Career Tips
Send
Reset
TypeandPressEnter
SUBSCRIBE TO RSS FEED
Enter you email
Subscribe
RANDOM QUESTIONS
What is the sequence of events fired when a page is
saved.
Asked by: gnana
If the digits of my present age are reversed then I
get the age of my son.If 1 year ago my age was
twice as that of my son.Find my present age
Asked by: sujatha
What is difference between unique and primary key
constraints?
A table can have only one PRIMARY KEY whereas there
can be any number of UNIQUE keys. The columns that
compose PK are automatically define NOT NULL,
whereas...
Asked by: Interview Candidate
What is the command to find out the nfs version in
solaris?
Asked by: lakshmananit
Serialization process
Explain the use of serialization process in real time
projects?
Company Interviews
Accenture (52)
Aptitude Interview
Questions
Group Discussions Topics
Placement Assistance
Adobe (7)
Placement Assistance
AMD (1)
Placement Assistance
AMDOC (2)
Placement Assistance
Axes-Technologies (25)
Computer Awareness
Questions
Aztec-Systems (15)
Aptitude Interview
Questions
C Interview Questions
BirlaSoft (26)
Languages Interview
Questions
Cisco (35)
Micro Processor
Interview Questions
Cognizant (1)
Placement Assistance
Wipro (217)
Analytical Ability
Interview Questions
Languages Interview
Questions
Verbal Ability Questions
TAGS
CLOUD
Asked by: narayanamsaideva
Dell (22)
Aptitude Interview
Questions
GE (2)
Placement Assistance
HAL (1)
Placement Assistance
Infosys (212)
Challenging Puzzles
ISRO (6)
Placement Assistance
Mphasis (1)
Placement Assistance
Oracle (206)
Aptitude Interview
Questions
Java Interview Questions
SQL Interview Questions
Sonata (65)
Analytical Ability
Interview Questions
C Interview Questions
TCS (396)
Aptitude Interview
Questions
C FAQs
COBOL Interview
Questions
Critical Reasoning
Questions
Quantitative Aptitude
Questions
INTERVIEW QUESTIONS PDF FILES
SPONSORED LINKS
SOCIAL NETWORKS
FANS
FOLLOWERS
FOLLOWERS
SUBSCRIBE
TO RSS FEED
SPONSORED LINKS
OPEN QUESTIONS
ANSWERED
Adding new application at existing Oracle
11gr2 database.
I have a request about adding new application at
existing oracle 11gr2 database. What questions
should I raise with the vendor about there
application...
Asked by: dba707
How do we insert blob datatype into table?
How to insert image in table?
Asked by: aravinthancse
Oracle doc command
What is the meaning of 'doc' command in oracle ?
What are the use of it?
Asked by: hiteshvaghasiya1990
Massallocation jouranl entry
How to "reverse" a MassAllocation Journal Entry in
Oracle?
Asked by: 1849VOGTE
Compare duplicate tables
How to avoid Cartesian product comparing duplicate
tables in SQL?
Asked by: bambina_b
Passing record group from form to report in
d2k
How to run same report with different query
through parameter
Asked by: prasant0661
Exceptions
What do yo mean by exceptions? How many type of
predefined exceptions are there & What are they?
Asked by: samarendra161
Oracle inventory
Where is Oracle Inventory located in Oracle 10g and
11i ?
Asked by: rahuldoulagar
Change lov dynamically
What is POST in D2K.How can you change the LOV
Dynamically?
Asked by: kreddy.vonteddu
Mutual table
What is the Mutual Table?
Asked by: sure_prince
Db writers
How many database writers are available (max) to
create in Oracle.
Asked by: happy
Oracle DBA upgrade concepts
What is utlu211i.sql in Oracle DBA in upgrade
concepts? Any one explain in detail
Asked by: kalyan
Oracle Apps attribute and GLobal attribute
What is the difference between Attribute and Global
Attribute in Oracle Apps
Asked by: Bharat Bhatia
Oracle 11g architecture
What is the difference in Oracle 10g and 11g
Architecture
Asked by: MOHIT NARANG
Display the rank in asending & descending
order for salary column
Can anybody solve this interview question in
DataStage? My input is: EMPNO, DEPTNO, SALARY 1
A 100 2 A 4000 3...
Asked by: sai3689
Reverse duplicate
How to delete reverse duplicate in oracle. e.g i/p col1
col2 hyd blr mum del del blr blr hyd blr del i want in
o/p col1 col2 hyd blr mum...
Asked by: ankita_sri
40 ibm Oracle DBA interview questions
1) How to install patches? And what are prerequsites? 2) How to upgrade 10.2.0.1 to 10.2.0.4
AND 11.2.0.1 to 11.2.0.3 and 10.2.0.4 to 11.2.0.1? 3)
How...
Asked by: lingaiah
Select the even and odd records
How to select the Even and Odd records in SQL
server and in Oracle without using ROWNUM,ROWID
Asked by: Govardhana K J
Load excel data into Oracle database
1. How to load excel data into oracle database by
using sql loader? 2. What are the ways to load data
from excel file in oracle database ?
Asked by: Mayur
What is blender in Oracle hyperion drm?
Asked by: sakshi
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.
Subscribe
Follow @geekinterview
TAGS
Accenture
Aztec-Systems
Infosys
Wipro
ISRO
AMD
BirlaSoft
TCS
Axes-Technologies
Cisco
Cognizant
Sonata
Adobe
AMDOC
Dell
Oracle
GE
HAL
Mphasis
RANDOM QUESTION
Convert Source Column into Target Rows
C program to count numbers of positive and negative numbers
What is the command to find out the NFS version in solaris?
What is difference between MSI and EXE file ?
Arrays/Linked List
QUESTION OF THE DAY
CONTACT US
Geekinterview.com
248 Millington Road
Cortlandt Manor
New York 10567
?>
About US Privacy Policy Terms & Conditions DMCA Contact Us
Copyright 2014 GeekInterview.com | All Rights Reserved