ALLInterview.com :: Home Page Forum9.Com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage   interview questions urls   External Links  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories >> Software >> Databases >> Oracle >> Architecture
 
 


 

Back to Questions Page
 
Question
what is the role of archiever
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   Satyam
I also faced this Question!!   © ALL Interview .com
Answer
archiver will maintain the Historical data from Master data
based on time.
this data will be used for planning and forecasting.
 
0
Mbujjibabu
 
 
Question
How to find the current session sid
Rank Answer Posted By  
 Question Submitted By :: Cspriyadba
I also faced this Question!!   © ALL Interview .com
Answer
select sid from v$mystat where rownum=1;
 
3
Cspriyadba
 
 
Answer
select username,sid,serial# from v$session
 
5
Umair Anwar
[Trinity Systems]
 
 
 
Question
How to find the SGA Size
Rank Answer Posted By  
 Question Submitted By :: Cspriyadba
I also faced this Question!!   © ALL Interview .com
Answer
show sga
It shows :
Total System Global Area  135338868 bytes
Fixed Size                   453492 bytes
Variable Size             109051904 bytes
Database Buffers           25165824 bytes
Redo Buffers                 667648 bytes
 
0
---
 
 
Answer
select * from v$sga;

Fixed Size       72536    bytes 
Variable Size    22900736 bytes 
Database Buffers 409600   bytes 
Redo Buffers     77824    bytes 


Total System Global Area : - Total in bytes of all the sub-
divisions that makes up the SGA. 

Total System Global Area 23460696 bytes
 
1
Cspriyadba
[Trinity Systems]
 
 
Question
what is ORACLE MEMORY STRUCTURES
Rank Answer Posted By  
 Question Submitted By :: Cspriyadba
I also faced this Question!!   © ALL Interview .com
Answer
There are 2 basic memory structures on the Oracle Instance

1.	System Global Area (SGA)
2.	Program Global Area (PGA)
 
2
Cspriyadba
 
 
Question
How free extents are managed in Ver 6.0 and Ver 7.0 ?
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   IBM
I also faced this Question!!   © ALL Interview .com
Answer
Free extents cannot be merged together in Ver 6.0.

Free extents are periodically coalesces with the neighboring
free extent in Ver 7.0
 
0
Orawhiz
 
 
Question
What is Database Buffers ?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
Database buffer is part of SGA, Which it is contain oracle
blocks copied from datafile and modification carried in this
area. In oracle 9i BUFFER CACHE is divided into three parts
buffer_cache, buffer_keep_cache,buffer_recycle_cahce.

THANKS
 
0
Ravi Dutta., Oracle Dba
 
 
Answer
Database buffers store the most recently used blocks of 
database data. It can also contain modified data that has 
not yet been permanently written to disk.
 
3
Pravin Kadam
 
 
Question
What is the OPTIMAL parameter ?
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   TCS
I also faced this Question!!   © ALL Interview .com
Answer
OPTIMAL parameter is used to set the optimal length of a
rollback segment
 
0
Orawhiz
 
 
Question
What is meant by recursive hints ?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
Number  of  times processes repeatedly query the dictionary
table is called recursive  hints.  It  is due to the data
dictionary cache is too small. By increasing  the
SHARED_POOL_SIZE parameter we can optimize the size of Data
Dictionary Cache.
 
0
Orawhiz
 
 
Question
How will you monitor the space allocation ?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
this can be monitored in DB_data_files
 
0
Guest
 
 
Answer
SQL>desc dba_data_files;
SQL>desc v$tablespace;
SQL>select bytes from dba_data_files where tablespace_name 
like 'TABLSPACE_NAME';
 
2
Mohanish Sahoo
 
 
Question
What is a Rollback segment entry ?
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   TCS
I also faced this Question!!   © ALL Interview .com
Answer
this contains the commited and uncommited data stored in
rollback table space prior to 9i. in 9i, it is called as
undo table space.
 
0
Ravi Dutta
 
 
Answer
ROLLBACK SEGMENT OR UNDO SEGMENT IS THE AREA IN UNDO TABLE 
SPACE WHERE CHANGED OR NEW UNCOMMITTED DATA RESIDES.

WHEN WE COMMIT, UNDO SEGMENT DATA BECOME UNUSEABLE. BUT IT 
STILL RESIDES IN THE UNDO SEGMENT FOR 600 SECONDS.

TO REMOVE THE CONSITANCY ISSUE FROM ORACLE DB.
 
0
Manvendra
 
 
Answer
WHEN WE COMMIT, UNDO SEGMENT DATA BECOME UNUSEABLE. BUT IT 
STILL RESIDES IN THE UNDO SEGMENT FOR 900 SECONDS.

it is called undo retention period
 
0
Ravi
 
 
Question
What is use of Rollback Segments In Database ?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
TRANSACTION RECOVERY, READ CONSISTENCY
 
0
Ravi Dutta, Oracle Dba
 
 
Answer
use of rollback segment is used  for if our transection is 
not complete than starat with initial level
 
0
Pradip
 
 
Question
What is the role of PCTFREE parameter is Storage clause ?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
A oracle block divided into three parts.
block header,pctfree,pctused.


block header :its contain the information datafiles.


pctfree: its a free space in a datablock for updation and 
insertion of a row.default is 10% of a block size.one more 
thing it's default value is depand of OS also.


pctused : its a space where data are store in a block.its 
default value is 40% of a block size.
 
0
Ankur Aggarwal
 
 
Answer
pctfree is only used for future updation, not for inserts.
 
0
Vivek
 
 
Question
What is meant by redo log buffer ?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
when ever the buffer cache is crashed, the transactions
present in the buffer cache is lost. this can be recovered
by the redo log buffer, which contains all the transactions
present in the buffer cache
 
0
Ravi Dutta
 
 
Question
List the Optional Flexible Architecture (OFA) of Oracle 
database ?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
SYSTEM - Data dictionary tables.
DATA  - Standard operational tables.
DATA2- Static tables used for standard operations
INDEXES - Indexes for Standard operational tables.
INDEXES1 - Indexes of static tables used for standard
operations.
TOOLS - Tools table.
TOOLS1 - Indexes for tools table.
RBS - Standard Operations Rollback Segments,
RBS1,RBS2 - Additional/Special Rollback segments.
TEMP - Temporary purpose tablespace
TEMP_USER - Temporary tablespace for users.
USERS - User tablespace.
 
0
Orawhiz
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com