English Русский Contacts Site map Add to favorites
Registration
Login
Master braindump list
New braindumps
Submit a dump
Get latest dump
braindumps.com.ua
flame
3COM (7)
Adobe (1)
BEA (1)
Checkpoint (22)
Cisco (20)
Citrix (17)
CIW (15)
Compaq (0)
CompTIA (51)
CWNA (2)
EMC (2)
Exin (4)
GEJOS (4)
HDI (1)
HP (4)
IBM (13)
Juniper (1)
Linux Prof Institute (LPI) (2)
Lotus (11)
Microsoft (2461)
Network Appliance (2)
Novell (16)
Oracle (412)
PLSQL (1)
PMI (4)
SAS (1)
Sun (87)
Teradata (4)
Login:
Password:
RSS feed

Contacts
Certification links
Links
Authorized user can see question and answers.
Please log in or sign up.

Exam question list:
Show all comments
Oracle 1Z0-031: Oracle9i: Database Fundamentals I
#11. You intend to use only password authentication and have used the password file utility to create a password file as follows:
$orapwd file=$ORACLE_HOME/dbs/orapwDB01
password=orapass entries=5
The REMOTE_LOGIN_PASSWORDFILE initialization parameter is set to NONE.
You created a user and granted only the SYSDBA privilege to that user as follows:
  1. CREATE USER dba_user
  2. IDENTIFIED BY dba_pass;
  3. GRANT sysdba TO dba_user;
The user attempts to connect to the database as follows:
connect dba_user/dba_pass as sysdba;
Why does the connection fail?

Show comments for this question (1)
Add comments
Link to this question

#12. John has created a procedure named SALARY_CALC. Which SQL query allows him to view the text of the procedure?

Show comments for this question (1)
Add comments
Link to this question

#13. You issue the following queries to obtain information about the redo log files:
  1. SQL> SELECT GROUP#, TYPE, member FROM v$logfile;
  2. GROUP# TYPE MEMBER
------ ------- --------------------------------------
1 ONLINE /databases/DB01/ORADATA/u02/log1a.rdo
1 ONLINE /databases/DB01/ORADATA/u03/log1b.rdo
2 ONLINE /databases/DB01/ORADATA/u02/log2a.rdo
2 ONLINE /databases/DB01/ORADATA/u03/log2b.rdo
3 ONLINE /databases/DB01/ORADATA/u02/log3a.rdo
3 ONLINE /databases/DB01/ORADATA/u03/log3b.rdo
  1. SQL> SELECT GROUP#, SEQUENCE#, status FROM v$log;
  2. GROUP# SEQUENCE# STATUS
------ --------- ---------
1 250 INACTIVE
2 251 CURRENT
3 249 INACTIVE
You immediately issue this command:
  1. ALTER DATABASE DROP LOGFILE MEMBER
  2. '/databases/DB01/ORADATA/u03/log2b.rdo';
Why does the command fail?

Show comments for this question (1)
Add comments
Link to this question

#14. You are in the process of dropping the BUILDING_LOCATION column from the HR.EMPLOYEES table. The table has been marked INVALID until the operation completes. Suddenly the instance fails. Upon startup, the table remains INVALID.
Which step(s) should you follow to complete the operation?

Show comments for this question (1)
Add comments
Link to this question

#15. You create a new table named DEPARTMENTS by issuing this statement:
  1. CREATE TABLE departments(
  2. department_id NUMBER(4),
  3. department_name VARCHAR2(30),
  4. manager_id NUMBER(6),
  5. location_id NUMBER(4))
  6. STORAGE(INITIAL 200K NEXT 200K
  7. PCTINCREASE 0 MINEXTENTS 1 MAXEXTENTS 5);
You realize that you failed to specify a tablespace for the table. You issue these queries:
  1. SQL> SELECT username, default_tablespace,
  2. TEMPORARY TABLESPACE
  3. 2> FROM user_users;

 USERNAME      DEFAULT_TABLESPACE       TEMPORARY_TABLESPACE 
 HR            SAMPLE                   TEMP
  1. SQL> SELECT * FROM user_ts_quotas;
 TABLESPACE_NAME    BYTES         MAX_BYTES     BLOCKS      MAX_BLOCKS 
 SAMPLE             28311552      -1            6912        -1 
 INDX               0             -1            0           -1 

In which tablespace was your new DEPARTMENTS table created?

Show comments for this question (1)
Add comments
Link to this question

#16. The user Smith created the SALES HISTORY table. Smith wants to find out the following information about the SALES HISTORY table:
• The size of the initial extent allocated to the sales history data segment
• The total number of extents allocated to the sales history data segment
Which data dictionary view(s) should Smith query for the required information?

Show comments for this question (1)
Add comments
Link to this question

#17. You are going to re-create your database and want to reuse all of your existing database files. You issue the following SQL statement:
  1. CREATE DATABASE sampledb
  2. DATAFILE
  3. '/u01/oradata/sampledb/system0l.dbf'
  4. SIZE 100M REUSE
  5. LOGFILE
  6. GROUP 1 ('/u01/oradata/sampledb/logla.rdo',
  7. '/u02/oradata/sampledb/loglb.rdo')
  8. SIZE 50K REUSE,
  9. GROUP 2 ('/u01/oradata/sampledb/log2a.rdo',
  10. '/u02/oradata/sampledb/log2b.rdo')
  11. SIZE 50K REUSE
  12. MAXLOGFILES 5
  13. MAXLOGHISTORY 100
  14. MAXDATAFILES 10;
Why does the CREATE DATABASE statement fail?

Show comments for this question (1)
Add comments
Link to this question

#18. Evaluate the SQL statement:
  1. CREATE TABLESPACE hr_tbs
  2. DATAFILE '/usr/oracle9i/OraHomel/hr_data.dbf' SIZE 2M
  3. AUTOEXTEND ON
  4. MINIMUM EXTENT 4K
  5. NOLOGGING
  6. DEFAULT STORAGE (INITIAL 5K NEXT 5K PCTINCREASE 50)
  7. EXTENT MANAGEMENT DICTIONARY
  8. SEGMENT SPACE MANAGEMENT AUTO;
Why does the statement return an error?

Show comments for this question (1)
Add comments
Link to this question

#19. You query DBA_CONSTRAINTS to obtain constraint information on the HR_EMPLOYEES table:
  1. SQL> SELECT constraint_name, constraint_type, deferrable,
  2. 2> deferred, validated
  3. 3> FROM dba_constraints
  4. 4> WHERE owner = 'HR' AND table_name='EMPLOYEES';
 CONSTRAINT_NAME    C    DEFERRABLE        DEFERRED     VALIDATED 
 EMP_DEPT_FK        R    NOT DEFERRABLE    IMMEDIATE    VALIDATED 
 EMP_EMAIL_NV       C    NOT DEFERRABLE    IMMEDIATE    VALIDATED 
 EMP_EMAIL_UK       U    NOT DEFERRABLE    IMMEDIATE    VALIDATED 
 EMP_EMP_ID_PK      P    NOT DEFERRABLE    IMMEDIATE    VALIDATED 
 EMP_HIRE_DATE_NN   C    NOT DEFERRABLE    IMMEDIATE    VALIDATED 
 EMP_JOB_FK         R    NOT DEFERRABLE    IMMEDIATE    VALIDATED 
 EMP_JOB_NN         C    DEFERRABLE        DEFERRED     NOT VALIDATED 
 EMP_LAST_NAME_NN   C    NOT DEFERRABLE    IMMEDIATE    VALIDATED 
 EMP_MANAGER_FK     R    NOT DEFERRABLE    IMMEDIATE    VALIDATED 
 EMP_SALARY_MIN     C    NOT DEFERRABLE    IMMEDIATE    VALIDATED
Which type of constraint is EMP_JOB_NN?

Show comments for this question (1)
Add comments
Link to this question

#20. Evaluate the following SQL:
  1. CREATE USER sh IDENTIFIED BY sh;
  2. GRANT
  3. CREATE ANY MATERIALIZED VIEW
  4. CREATE ANY DIMENSION
  5. DROP ANY DIMENSION
  6. QUERY REWRITE
  7. GLOBAL QUERY REWRITE
  8. TO dw_manager
  9. WITH ADMIN OPTION;
  10. GRANT dw_manager TO sh WITH ADMIN OPTION;

Which three actions is the user SH able to perform? (Choose three.)

Show comments for this question (1)
Add comments
Link to this question


 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] ... [37 
Up ^ gen. 0.154 Server date 06:24 22-11-2008 Developed by Zip © 2006 Up ^
Forum
Start online exam simulation
Master braindump
User braindumps