0% found this document useful (0 votes)
5 views2 pages

Admin One Assessment

The document provides a comprehensive overview of Oracle database concepts, including semaphores, installation steps, database creation, and SQL commands for database management. It covers various aspects such as control files, redo logs, tablespaces, and background processes, along with detailed explanations of database startup and shutdown phases. Additionally, it addresses user management, profiles, and connection types within Oracle databases.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views2 pages

Admin One Assessment

The document provides a comprehensive overview of Oracle database concepts, including semaphores, installation steps, database creation, and SQL commands for database management. It covers various aspects such as control files, redo logs, tablespaces, and background processes, along with detailed explanations of database startup and shutdown phases. Additionally, it addresses user management, profiles, and connection types within Oracle databases.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

1) What are Semaphores.

Explain shmmin, shmmax,shmmni

2) What are the steps carried out in installing Oracle software.

3) What steps are carried out during database creation

4) Please explain the following statement in details

CREATE DATABASE mynewdb

USER SYS IDENTIFIED BY sys_password

USER SYSTEM IDENTIFIED BY system_password

LOGFILE GROUP 1 ('/u01/app/oracle/oradata/mynewdb/redo01.log') SIZE 100M,

GROUP 2 ('/u01/app/oracle/oradata/mynewdb/redo02.log') SIZE 100M,

GROUP 3 ('/u01/app/oracle/oradata/mynewdb/redo03.log') SIZE 100M

MAXLOGFILES 5

MAXLOGMEMBERS 5

MAXLOGHISTORY 1

MAXDATAFILES 100

CHARACTER SET US7ASCII

NATIONAL CHARACTER SET AL16UTF16

EXTENT MANAGEMENT LOCAL

DATAFILE '/u01/app/oracle/oradata/mynewdb/system01.dbf' SIZE 325M REUSE

SYSAUX DATAFILE '/u01/app/oracle/oradata/mynewdb/sysaux01.dbf' SIZE 325M REUSE

DEFAULT TABLESPACE users

DATAFILE '/u01/app/oracle/oradata/mynewdb/users01.dbf'

SIZE 500M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED

DEFAULT TEMPORARY TABLESPACE tempts1

TEMPFILE '/u01/app/oracle/oradata/mynewdb/temp01.dbf'

SIZE 20M REUSE

UNDO TABLESPACE undotbs

DATAFILE '/u01/app/oracle/oradata/mynewdb/undotbs01.dbf'

SIZE 200M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED;


5) List down the view to see the location of controlfile and redolog files

6) What are the contents of controlfile

7) How to multiplex a controlfile ( please explain with pfile and spfile )

8) How to add a New redo log group.

9) How to add a new redo log member to existing group

10)How to drop a Redo log group

11)How to convert a database from archivelog to noarchivelog mode

12)Explain the database startup and shutdown phases

13)Explain in details what the shutdown options are? Immediate / Abort / Transactional/normal

14)Explain the mandatory Background process

15)Write few lines about LGWR / PMON/DBWR/CKPT

16)What is the Phases of Instance recovery? Explain each phase in few words.

17)What is the difference between DICTIONARY MANAGED tablespace and LOCALLY MANAGED
tablespace.

18)What is Automatic Segment space management.

19)What is UNDO tablespace used for. Create a new undo tablespace UNDOTBS2 and switch the
current undo to New Undo Tablespace

20)Create a tablespace USERS and make it the default permanent tablespace

21)Create a new TEMPORARY tablespace and make it the default temporary tablespace.

22)How to see the default permanent and temporary tablespace/

23)What are profiles. Please explain few password and resource limit parameters

24)What are block utilization parameters. Explain them in few words

25)What is dedicated server connection. Explain bequeath process in brief.

26)What is difference between local naming and EZ connect.

27)Export any user and clone it to another user

28)what is OS authenticated users

You might also like