网管联盟 | 网管论坛 | 网管u家 | 网管博客 | 网管软件 | 网管求职 | 小游戏 | 网管搜索 | 网管原创 | 网管聚合 | 网管读摘 | 网管焦点 | 世界素材 | 会员投稿 | 会员中心 
中国网管联盟
Windows Linux Cisco 网络技术 数据库 黑客攻防 DotNet Java PHP 认证 新闻资讯 服务器 存储资讯 网络设备 网管学堂 技术专题 焦点 网吧频道
 当前位置: > bitsCN.com > 认证考试 > Oracle认证 > 怎样通过ORACLE8DBA(OCP)  

怎样通过ORACLE8DBA(OCP)

2002-07-11  作者:BitsCN整理  来源:中国网管联盟  点评 投稿 收藏


  怎样才能通过ORACLE8DBA(OCP)考试
  
  Hi, little fish
  
  I can share my tips, but I find your website have not the oracle certification.
  
  You can add it. If my tips can help you, tell me.
  
  
  Best regards,
  
  
  Sandy
  
            
  
  --------------------------------------
  
  How to pass the ORACLE 8 DBA(OCP) exam:
  
  
  1. Get and read the student books from oracle or your friend(12 total), all the content in the books.
  
  2. Do the assess exam.(run the attachment file assess.exe to install it).
  
   (Download assess.exe).
  
  3. You can find more information at Oracle website.
  
  4. Other tips below:
  
  
  1Z0-001 - Into to Oracle: SQL and PL/SQL
  
  
  1.An expr. with NULL always evaluates to NULL, except ||, which treats NULL as ’’
  
  2.Comparison to NULL is always FALSE

网管bitscn_com


  
  3.All functions, except COUNT(*), ignores NULL values
  
  4.NULLS are displayed last with ORDERED BY in Oracle8
  
  5.Logical evaluation: TRUE takes precedence with OR, FALSE with AND
  
  6.There are a lot of questions about GROUP BY/ HAVING...
  
  7.Use WHERE to exclude rows, HAVING to exclude groups from a query
  
  8.Know when a cartesian product will be formed. You need a min of N-1 conditions when you join N tables.
  
  9.Know the difference between an equi (=), self (must use tab aliases), outer (+) and non-equi (IN, etc) join
  
  10.You can only have a subquery in a FROM/ WHERE/ HAVING clause of a SELECT statement
  
  11.Sub-queries and VIEWS cannot contain ORDER BY
  
  12.A literal is any char/num/expr in a SELECT LIST that’s not a col or col alias
  
  13.MIN and MAX are the only functions that can operate on any datatype
  
  14.PRIMARY KEY and UNIQUE constraints will implicitly create INDEXES

网管bitscn_com


  
  15.There is a lot of questions like: "Which line will return an error?". Look for names starting with numbers, invalid constraints, etc.
  
  
  1Z0-013 - Oracle8: Database Administration
  
  
  1.INSTANCE=SGA + background processed (not server processes); INSTANCE will open a DATABASE on disk
  
  2.SGA=System Global Area/ PGA=Program Global Area
  
  3.Oracle server creates PGA as writeable and non-shared/ SGA as shared
  
  4.Know what background processes are doing in detail, DBWR, SMON, PMON, LGWR, etc.
  
  5.SMON coalesces adjacent free extents into larger extent
  
  6.Server processes executes SQL; Main phases are PARSE (setup parse tree=most effective search path), EXECUTE (apply parse tree) and FETCH (get rows)
  
  7.Server configurations: single-task, two-task (dedicated server), MTS (shared server)
  
  8.Shared Server: SQL*Net2/8 required, one requestQ for system, responseQ per dispatcher

网管u家u.bitscn@com


  
  9.Dedicated Server: use for batch, connect internal, server manager
  
  10.With shared server session data and cursor state moves to SGA, stack space remains in PGA
  
  11.No quota means segments cannot grow or be created, only object owner needs quotas.
  
  12.By default a user has no access to any TS
  
  13.If quota=0 NO ACCESS; -1=UNLIMITED (see view sys.dba_ts_quotas)
  
  14.Clusters pre-allocate space/ 2 types: index clusters (stored together for faster join performance) and hush clusters
  
  15.I’ve got about 3 questions on index clusters and none about hush clusters
  
  16.Sysprivs and roles use WITH ADMIN OPTION, use WITH GRANT OPTION for object privs.
  
  17.Revoke a GRANT...WITH ADMIN OPTION is not hierarchical and will not cascade, unlike WITH GRANT OPTION
  
  18.Know how to calculate the size of the N nd extend. INITIAL, NEXT, NEXT := NEXT*(1+PCTINCREASE/100)...
  
  19.PCTUSED is not valid for indexes; OPTIMAL is only valid for rollsegs; PCTINCREASE for rollsegs is 0 (cannot be set)

网管论坛bbs_bitsCN_com


  
  20.There are at least 3 questions about what will happen when PCTFREE/PCTUSED are increased/decreased
  
  21.MAXTRANS applies to all blocks; INITRANS to new blocks only (23 bytes per freelist entry)
  
  22.Run orapwd utility before setting REMOTE_LOGIN_PASSWORDFILE=EXCLUSIVE|SHARED; Grant OSDBA/OSOPER to users; Check V$PWFILE_USERS
  
  23.DB_NAME is the only mandatory parm; DB_BLOCK_SIZE cannot change after db creation
  
  24.Defaults: DB_BLOCK_SIZE=2K/ DB_BLOCK_BUFFERS=60/ SHARED_POOL_SIZE=3,500,000 bytes
  
  25.Must have at least one control file and 2 log groups
  
  26.Read consistency: readers do not block writers and writers do not block readers
  
  AUDIT_TRAIL=DB uses SYS.AUD$ table, view via DBA_AUDIT_TRAIL
  
  27.Use AUDIT SELECT for sequences
  
  28.You need to set RESOURCE_LIMIT=TRUE for PROFILES (resource checking)
  
  29.One can DROP from a READ ONLY ts
  
  

网管联盟bitsCN@com


  1Z0-014 - Oracle8: Performance Tuning Workshop
  
  
  1.Tuning process is ITERATIVE and PROGRESSIVE
  
  2.Many inserts/updates with OLTP, many table scans with DSS
  
  3.By default the SYSTEM tablespace will be used for sorts, CHANGE IT!!!
  
  4.SEP=Sort Extent Pool is in SGA, Sorts are done in user memory except with MTS it’s in UGA
  
  5.Use DBMS_APPLICATION_INFO to register and track modules/ created with dbmsutil.sql/ See V$SQLAREA and V$SESSION
  
  6.OPTIMIZER_MODE is for instance, OPTIMIZER_GOAL is for session
  
  7.RULE is based on rank/ COST is based on lowest relative cost/ COOSE goes to COST if stats exists
  
  8.TKPROF: Logical reads = QUERY (logical reads in consistent mode) + CURRENT (logical reads in current mode)
  
  9.V$SYSSTAT: Logical reads = consistent gets + db block gets
  
  10.Tune table scans: DB_FILE_MULTIBLOCK_READ_COUNT=/ CACHE_SIZE_THRESHOLD=
  
  Dict. row cache: V$ROWCACHE - getmisses/gets must be < 15% 中国网管联盟bitsCN.com
  
  11.Library cache: V$LIBRARYCACHE - pins/reloads <= 1% and GETHITRATIO > 0.90
  
  12.DB Block cache: V$BH/V$CACHE - logical_reads/ (logical_reads + physical reads) must be > 80% (90% with RAW)
  
  13.V$CACHE is usefull for Oracle Parallel Server
  
  14.Set DB_BLOCK_LRU_LATCHES if you have misses in V$LATCH
  
  15.If Redo log space requests <>0, increase LOG_BUFFER= with 5%
  
  16.Latches can be WILLING-TO-WAIT (eg redo allocation) or NOWAIT (eg redo copy)
  
  17.Oracle maintains all locks as ENQUEUES/ Deadlocks are resolved at statement level
  
  18.Lock modes: RX=DML/ TM=table/ TX=transaction and rollseg/ RS=SELECT... FOR UPDATE/ SRX=DML and no SELECT FOR UPDATE/ UL=user lock/ S=prevents any DML
  
  19.Index foreign key column on child table to prevent SHARE lock during DML on parent!!!
  
  20.Use SID and Serial# in V$SESSION to kill a session
  
  21.Impact of reducing DB_BLOCK_BUFFERS: Set DB_BLOCK_LRU_STATISTICS= and query V$KCBCBH 网管联盟bitsCN@com
  
  22.Impact if increasing DB_BLOCK_BUFFERS: Set DB_BLOCK_EXTENDED_LRU_STATISTICS= and query V$KCBCBH
  
  23.To keep sorts in memory, increase SORT_AREA_SIZE
  
  24.SORT_WRITE_BUFFERS (16k - 32k) * SORT_WRITE_BUFFER_SIZE (2-8) + SORT_AREA_SIZE
  
  25.Any MTS parameter may be wrong, but if MTS_SERVICE=SID, you will get a dedicated server connection if shared cannot be established
  
  
  1Z0-015 - Oracle8: Backup and recovery Worksho

TAGs   通过   怎样   and   to   is   in   for   the   with   be   are   can   will      
 上一篇:OCP考试与培训新规则的官方解释   下一篇:ORACLE认证常识
相关文章列表
怎样通过ORACLE8DBA(OCP) 评论:
loading.. 评论加载中…
评论:请自觉遵守互联网相关政策法规,评论不得超过250字。

验证码: 注册用户
本类热门排行:
1.ORACLE 常见问题
2.今年4月三级数据库笔试试题及答案
3.某门户网站数据库职位笔试题
4.据说是阿里巴巴公司DBA笔试题
5.某数据集团数据库初试笔试题
6.Oracle面试题目及解答应对面试官
7.我学Oracle和考OCP的经验
8.关于Oracle和ORACLE认证证书以及报价(图)
9.07年上半年数据库系统工程师考试上午试题
10.07年上半年数据库系统工程师考试下午试题
最新推荐文章:
1.07年上半年数据库系统工程师考试下午试题
2.07年上半年数据库系统工程师考试上午试题
3.据说是阿里巴巴公司DBA笔试题
4.Oracle11g数据库的认证体系结构
5.Oracle推出打折的11i认证Beta版考试
6.如何应对ORACLE数据库的部分面试题目
7.OCP认证033之自制讲稿—调整共享池
8.某数据集团数据库初试笔试题
9.数据库考试简介之Oracle认证
10.今年4月三级数据库笔试试题及答案
网管论坛交流:
·不疯魔不成活
·令你大开眼界的真正标准化机房,已整理重
·为赈灾,女孩舍身拍“裸照”
·Windows Server 2003服务器群集创建和配
·exchange2k3全套官方资料
·双儿一周岁了。。。特殊的礼物来啦。。
·存储备份技术版块守则
·无盘技术交流区守则
·DOS命令基础大全之命令详解<作者吐血
·Windows XP 操作系统默认设置需要注意的