Free Essay

Oracle Dba

In:

Submitted By sandeep11122003
Words 964
Pages 4
Golden rules of RAC diagnostics

By Riyaj Shamsudeen

©OraInternals Riyaj Shamsudeen

Me

n n n n

n n n n n

20+ years using Oracle products/DBA OakTable member, Oracle ACE Director Certified DBA -7.0,7.3,8,8i,9i &10g Specializes in RAC, performance tuning, EBS, & Exadata Chief DBA with OraInternals Co-author a few books Email: rshamsud@orainternals.com Blog : orainternals.wordpress.com Web: www.orainternals.com
©OraInternals Riyaj Shamsudeen 2

Golden rules of RAC diagnostics

1. Beware of top event tunnel vision. 2. Eliminate infrastructure as an issue. 3. Identify problem instance(s). 4. Review Send side metrics, and not just Receive side metrics. 5. Use histograms to identify any abnormalities, and not just averages.

©OraInternals Riyaj Shamsudeen

Top event tunnel vision

n

In RAC, the root cause can be hidden in other node and might not show up in the Top-5 wait events. Impact of side effect events can be much, much worse then actual root cause event itself. Performance of the instances are intertwined. Performance of background processes in one node, can affect the application performance in the all other nodes.

n

n n

©OraInternals Riyaj Shamsudeen

Top event tunnel vision

..2

Example 1

©OraInternals Riyaj Shamsudeen

5

Top event tunnel vision

..3

Example 2

©OraInternals Riyaj Shamsudeen

6

Top event tunnel vision

..4

Example 3

©OraInternals Riyaj Shamsudeen

7

Problem node

Example 3 (continued)

©OraInternals Riyaj Shamsudeen

8

gc buffer busy
A BL request for file #5, block #8 is pending. gc buffer busy acquire

FG2 gc current request charge time to ‘gc current block 2-way’ Wire

FG1
Open request File #5, blk #8

Flush request

Post

LGWR gc buffer busy release

FG3

©OraInternals Riyaj Shamsudeen

Inst 2

LMS

Block send

Inst 1

gc buffer busy

n

Event ‘gc buffer busy [acquire|release]’ can be the symptoms for all the RAC performance root causes discussed earlier. Gc buffer busy wait simply means that there is a pending request for a BL lock for that block already. All other process wait for the BL lock to be available and charge the time to gc buffer busy event.

n

n

©OraInternals Riyaj Shamsudeen

Gc buffer busy – Objects related
Following four pages only applicable if there are no other events indicating systemic issues. n ASH or trace files can be used to identify the blocks suffering from excessive ‘gc buffer busy’ waits. Only use this method if there is no other issue affecting background processes. To understand gc buffer busy waits: n Identify the object and object type n Identify the block type ash_gcwait_to_obj.sql can be used to identify the object name and type. 11

n

n

n

©OraInternals Riyaj Shamsudeen

Gc buffer busy – Identify object

@ash_gcwait_to_obj.sql INST_ID EVENT 1 gc buffer busy acquire 2 gc buffer busy acquire 2 gc buffer busy release OWNER RS RS RS OBJECT_NAME T_GEN_INS_01_N1 T_GEN_INS_01_N1 T_GEN_INS_01 OBJECT_TYPE INDEX INDEX TABLE CNT 3 10 4

---------- ------------------------ ------ ---------------- ----------------

©OraInternals Riyaj Shamsudeen

12

Gc buffer busy – Identify block

@ash_gcwait_to_block.sql INST_ID EVENT 2 gc buffer busy acquire 2 gc buffer busy acquire 2 gc buffer busy acquire 1 gc buffer busy acquire 2 gc buffer busy release 1 gc buffer busy acquire 2 gc buffer busy release 2 gc buffer busy release CURRENT_FILE# CURRENT_BLOCK# 4 4 4 4 4 4 4 4 103582 103607 103603 103582 103615 103583 103586 103613 CNT 4 3 3 2 2 1 1 1 ---------- ------------------------------ ------------- -------------- ----------

In this example, many different blocks are involved in ‘gc buffer busy’ waits. A symptom of heavy insert load.
Demo: ash_gcwait_to_block.sql
©OraInternals Riyaj Shamsudeen

13

Gc buffer busy – Identify block type n You might need to dump the block to identify the type and contents of the block.
103582 block max 103582;

alter system dump datafile 4 block min

n

In this example, it is a leaf block of an index.
0x0101949e csc: 0x00.11c65d1 itc: 9 flg: E typ: 2 - INDEX

Block header dump:

Object id on Block? Y seg/obj: 0x13266 brn: 0 inc: 0 Itl 0x01 0x02 0x03 0x04 0x05

bdba: 0x1019498 ver: 0x01 opc: 0 exflg: 0 Xid Uba 0x00c00a1f.058a.01 0x00c00a37.058a.56 0x00c01232.045c.18 0x00c005d1.0402.12 0x00c00849.0446.05 Flag -BU------------Lck 1 55 90 73 75 Scn/Fsc fsc 0x0000.011c65d4 fsc 0x0000.00000000 fsc 0x0000.00000000 fsc 0x0000.00000000 fsc 0x0000.00000000

0x0008.001.0000144f 0x0008.015.00001449 0x0004.008.000016c0 0x0002.005.000015c1 0x000a.01c.0000158b

Leaf block dump ===============

Demo: dump_blocks.sql, tracefile.sql
©OraInternals Riyaj Shamsudeen

14

Object type Table

Block type Segment header Segment blocks

Possible issue(s) Freelists, freelist groups, deletes from one node,ASSM bugs etc Heavy insert workload, heavy update to few blocks, SQL performance issues scanning few objects aggressively. Numerous inserts on indexed columns, sequence generated keys Insert + numerous index scans, concurrent inserts and deletes etc Numerous short transactions Long pending transaction and CR block generation Sequences with nocache or order set and excessive access to sequence.
©OraInternals Riyaj Shamsudeen

Index

Leaf block Root block/ branch block

Undo

Undo header block Undo block

Dictionary SEQ$ (object)

15

Top 5 rules of RAC diagnostics

1. Beware of top event tunnel vision. 2. Eliminate infrastructure as an issue. 3. Identify problem instance(s). 4. Review Send side metrics, and not just Receive side metrics. 5. Use histograms to identify any abnormalities, and not just averages.

©OraInternals Riyaj Shamsudeen

Eliminate infra-structure as an issue

n

Wait events ‘gc cr block 2-way’ , ‘gc cr block 3-way’ , ‘gc current block 2-way’, and ‘gc current block 3-way’, ‘gc cr grant 2-way’, ‘gc cr grant 2-way’. Concurrency or congestion issues are not factored in to these events. The lowest wait time that you can possibly get for a block or a message transfer. A wait time of

Similar Documents

Premium Essay

Riodan Manufacturing

...Riodan Manufacturing Compared to the expansion and growth of business companies have witnessed throughout history, modern companies face many challenges and have some of the most advanced tools to be utilized. The invention of the modern day computer systems has revolutionized the way companies do business and allow for unprecedented growth. Unfortunately, the failure to embrace and understand this technology will lead to the down fall of even the largest corporate empire. Riodan Manufacturing is one of these companies. Riodan is an international company with locations in Georgia, Michigan, and Hangzhou, China. Having locations spread across the globe poses a challenge for the companies Information Technology Department. Having a good understanding of the company’s size and needs, the IT department helps ensure the company’s overall success. Riordan Manufacturing employs over 550 people, and has annual earnings of $46 million dollars. (Apollo Group, Inc., 2013) Riodan needs to find a way to align its IT Strategy and Business Strategies to ensure its future growth and profitability. The purpose of this paper is to identify the weakness in Riodan’s current information systems and make suggestions what improvements need to be made, leading to improved profits. The Financial and Accounting department will require several upgrades to both hardware and software to ensure the transition is not only seamless, but also easily upgradable in the future as well. After examining all of...

Words: 2539 - Pages: 11

Free Essay

Delphi

...Delphi: The bellybutton of the ancient world Look beyond simply the famed oracular priestess breathing in hallucinogenic gases and you find a place whose past speaks directly to the 21st century. That is the argument of Cambridge University's Dr Michael Scott who is researching how and why Delphi, a small Greek town and religious sanctuary perched on a difficult to reach mountainside, was for 1,000 years the proclaimed the 'bellybutton', the very centre of the ancient world. Famed for its oracle at the Temple of Apollo, he is also examining the evidence of Delphi's many other gods, athletic and musical games and the monuments to unity - as well as civil war - that crowded its religious sanctuaries. Dr. Scott uses the latest architectural plans of the temple of Apollo which reveal for the first time archaeological traces of what may have been the oracular priestess's consultation room inside the temple. He also argues that the town, which drew kings and emperors as well as cities and commoners from all corners of the Mediterranean world and beyond, still speaks as powerfully to us today as it did in the past. He said: "Imagine a place with the wealth of the Swiss banks, the religious power of the Vatican, the advertising potential of the World Cup and the historical importance of all the world's museums combined; that was Delphi. We would all like to know what the future has in store for us. In that, perhaps the most important thing Delphi teaches us is to look inward, to...

Words: 388 - Pages: 2

Premium Essay

Diogene Research Paper

...Diogenes of Sinope was known for being different from the rest of society. Diogenes was popularly known as a Kyon, which in Greek means “dog.” The word cynic derives from Kyon and was later associated with the philosophy of cynicism which is “The end of life is virtue, not pleasure, and it can only be obtained by independence of all earthly possessions and pleasures” (Philosophy.lander.edu) as well as living a “living a life full of virtue in agreement with nature”(Philosophybasics.com). Diogenes lives in a barrel, and he happily demonstrates that there is more to life than just power and riches. The fact that he lives in such a simple manner, shows that he doesn’t need materials to be happy. In Tendryakov’s Revelations next to a Philosopher’s Barrel, Diogenes of Sinope is an outcast in society. Although he was an outcast, he was very popular because of how differently he lived his life and behaved around others. “There was only one person in the city who did not even stir to cast a glance at Alexander, the Macedonian king. He himself was famous both in Corinth and without it—Diogenes of Sinope, the strange sage. (Translator's Private Collection).” Diogenes was not like the rest of the Greeks, he kept to himself and didn’t really care too much for people of power. In this quote, he was the only one to not care for Alexander the Great or anyone else for that matter. The idea of not having any ethical duties in society is hard to imagine. Diogenes was detached from everyday human...

Words: 1142 - Pages: 5

Premium Essay

Sony Barcelona Plant (a)

...Sony Barcelona Plant (A) This paper is written to analysis the case of “Sony Barcelona Plant (A)”. This case is mainly to discuss how was going on in new strategy plan in Europe plants. In this report, there have some of main topics will be discussed which are including that what factors causes STAR project difficult to complete smoothly, how to define a new strategy, what are Information system problems, what are the different opinions in changing the Information system and why to select Oracle ERP Suite. Then, some recommendations will be provided at the end as well. What factors causes STAR project difficult to complete smoothly? 1. According to different real situation or environment, there were different needs among the different plants which made it difficult to create the synthesis hoped for; 2.Not significant advances had been made and the real implementation of any application was not being planned; 3.The NTT consultants’ lack of experience; 4.A lack of commitment because the entire project team was centralized in one location; 5.Production information system was built base on the theoretical idea. How to define a new strategy? 1.Create more flexibility and economies of scale in the production process and in the procurement of common elements; 2.Reduce production time cycles; 3.Improving materials and resource planning and shortening the “time-to-market” and “time-to-delivery” cycles; 4.Reduce inventory costs and improve material planning; 5.Increase collaboration...

Words: 523 - Pages: 3

Free Essay

Maruti Suzuki

...1. Before Maruti Suzuki adopted the Oracle suite their databases were because they were rapidly growing larger and the technology that hosted their data wasn’t keeping up with their growth. Their previous systems weren’t very flexible and were very inefficient. The systems required extensive training and offered low turn around times. 2. The advantages of the company moving to a single vendor is that all of their systems and databases will be compatible with each other which promotes flexibility and makes it easier for the company to expand. Possible risks of using a single vendor could include data loss if the system as a whole were to crash, also if the vendor goes out of business the system could go down. 3. The important business factors management used when evaluating Oracles offerings were, the need for the systems to be simple and easily scalable, the company needed the databases to run multiple processes on a single network, Oracles databases also had to be compatible with legacy systems. 4. Its important that a companies vendors can integrate with legacy systems because the company doesn’t want to pay more money to replace systems already in use, with the use of middleware the company can update old systems instead of crating new ones. 5. Some of the benefits management reported from using oracles suit of products included, data being available online almost immediately, as well as allowing multiple views of data and consolidating accounts which...

Words: 252 - Pages: 2

Free Essay

Mysql Database Management System

...database management system (DBMS) “creates, reads, updates, and deletes data in a database while controlling access and security” (Baltzan, 2015, p.92). The database management system that I have decided to write about is MySQL. SQL stands for structured query language which “asks users to write lines of code to answer questions against a database” (Baltzan, 2015, p.92). The company that makes and distributes the system is Oracle Corporation. ​Oracle Corporation is a worldwide computer technology corporation that was founded on July 16, 1977 in Santa Clara, California by Larry Ellison, Bob Miner, and Ed Oates. The headquarters are located in Redwood City, California and focuses on increasing and selling computer hardware systems and enterprise software products but mostly its own brands of database management systems. Oracle also builds tools for database development and systems of middle-tier software, enterprise resource planning (ERP) software, customer relationship management (CRM) software, and supply chain management (SCM) software. ​In this article “DBA and Developer Guide to MySQL 5.6”, talks about the new development of MySQL on how it is much better and that it has improved and just explaining more about its improvement. It has better performance and scalability, better application availability with online DDL/Schema, and better developer agility with NoSQL Access with Memcached API to InnoDB. It has improved in replication for high performance, self-healing, distributed...

Words: 481 - Pages: 2

Free Essay

Enhanced Database Security

...Submitted by Shahid Sami April 24, 2011 Table of Contents PAPER OVERVIEW 3 DETAILED DESCRIPTION 3 IMPLEMENTATION 3 1. Removing Default Passwords 3 2. Configuring Oracle Binary Permissions 6 3. Use of UMASK 7 4. Limiting SYSDBA login 9 5. Protecting the Listner 10 6. Limiting the privileges 12 PITFALLS AND RECOMMENDATIONS 13 RESOURCES 14 PAPER OVERVIEW I will be researching on the following topics. • Removing Default Passwords • Configuring Oracle Binary Permissions • Use of UMASK • Limiting SYSDBA login • Protecting the Listener • Limiting the privileges DETAILED DESCRIPTION Based on the Oracle 11g database, I will research on the above topics in detail. I will look into the shortcomings of the earlier versions of Oracle, the risks involved in those. I will also look into different types of authentications. How the binaries of the database can be protected. How to protect and secure the listener? IMPLEMENTATION 1. Removing Default Passwords When Oracle software is installed and a new database is created, the database create some common users. These users will have default passwords which are well know to many oracle users and hackers may try using them. So as a first step, one should identify these passwords and change them appropriately. Security expert Pete Finnigan has written some scripts to collect...

Words: 2160 - Pages: 9

Free Essay

Jagat

...Oracle 10g OCM Oracle 10g RAC Teradata Certified Certified Expert Masters (V2R5) Oracle 10g OCP Oracle 9i OCP ITIL V3 Certified Jagatsing Sursing Patil Email:- jagat_patil@yahoo.co.in Mobile+91-9320340010 Professional Summary Over all 16+ years experience in IT industries. 14+ years experience in Oracle 7,8i,9i,10g ,11g and Exadata engineering system. 2+ years experience in Teradata Database Administrator. Initial Level of experience in BIG Data Hadoop. • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • Expertise in proactively handling Oracle database issues to avoid major incident. Expertise in Root Cause Analysis and trouble shooting skills Expertise in mentoring database specialists and Handling Escalated calls. Expertise in providing solution within given SLA to avoid SLA bridge. Expertise in reviewing plan, risk and impact analysis before change. Expertise in implementing exact solution within given SLA. Expertise in providing exact solution during incident to avoid / reduce problem. Expertise in applying permanent fix to avoid problem. Expertise in providing different types of solution to migrate Non-Exadata into Exadata. Expertise in capacity management of databases according to their growth. More than 10 end to end RAC setup implemented in Oracle 10G and 11G on various platforms like RHEL ,SUN Solaris and AIX. More than 20 Dataguard setup implemented in Oracle 9i,10g and...

Words: 4360 - Pages: 18

Free Essay

Provisioning Database Through Oem

...|Manickaraja Kumarappan | IT Infrastructure Standards Provisioning through Oracle Enterprise Manager For document reviewers and modification history, see Table of Contents, Document History. Any change to this document need to be reviewed and approved by Standard team or SME of this Domain. For document modification refer Revision History in next page. Table of Contents 1. Purpose and Scope 3 2. Pre-Install requirements 3 3. EM Deployment Entities that are available today 4 3.1. List of Deployment Procedures 4 3.2. List of Software Library Components 5 3.3. List of Database Templates 5 4. Steps to Provision Oracle Components 6 4.1. Provisioning a RAC Database. 6 4.2. Provisioning a Standalone Database. 17 4.3. Monitoring a submitted procedure. 28 5. Executing root.sh script post install 32 5.1. For CRS install 32 5.2. For RDBMS Install 33 6. Manual Tasks 33 7. Glossary 34 8. Appendix 34 9. References 34 10. Documentation History 35 a. Revision History 35 b. Contributors 35 c. Reviewers 35 Purpose and Scope This document provides complete steps for provisioning an Oracle CRS, RDBMS home and create a vanilla database through Oracle Enterprise Manager (OEM) Cloud control 12c. Pre-Install requirements a) Enterprise Manager Agent should be...

Words: 4373 - Pages: 18

Premium Essay

Saverr Rupee

...+918792525328 Professional Summary Over 3 years of IT experience as Oracle Database Administrator(Oracle DBA) in Production Environment. Expertise * Knowledge of Installation, Configuration and maintenance of Oracle 10g and 11g Databases. * Configuring Physical Standby database and its maintenance.Database Upgradation from 10g to 11g. * Analyzing database performance using sql trace and TKPROF. Good in Export and Import for taking logical backup & refresh activities. * Configuration of Flash Recovery Area, Flashback Database and Block Change Tracking for Target Databases. * Creation and maintenance of database links and materialized views. * Index creation and reorganization. * Moderate understanding MSSQL & SYBASE. Mainly User-management, backup & restore activities. * Using AWR, ADDM, ASH report and other Oracle utilities for Proactive Oracle Tuning. * Good in Database Cloning (Cold/Hot ) * Good in User Management and User security. * Database backup and restoration activities. * Good in Business Communication. * Good in Business Writing, Coordination. * Ability to exhibit good team spirit. * Ability to complete assigned work on time. Technical Skills Language | SQL, PL/SQL,Shell Scripting. | Database | Oracle 10g,11g, MSSQL,SYBASE. | Operating System | Linux(RHEL 4,RHEL 5). | Oracle Tools | SQL*PLUS,RMAN,tkprof. | Work Experience Organization: Cambridge...

Words: 532 - Pages: 3

Premium Essay

Difference Between Truncate and Delete

... Truncate is a DDL statement whereas DELETE is a DML statement. 2. What are ORACLE PRECOMPILERS? A precompiler is a tool that allows programmers to embed SQL statements in high-level source programs like C, C++, COBOL, etc. The precompiler accepts the source program as input, translates the embedded SQL statements into standard Oracle runtime library calls, and generates a modified source program that one can compile, link, and execute in the usual way. Examples are the Pro*C Precompiler for C, Pro*Cobol for Cobol, SQLJ for Java etc. 3. What is difference between procedure and function. A function always returns a value, while a procedure does not. When you call a function you must always assign its value to a variable. 4. What are things you do to reduce patch timing ? You can take advantage of following - # Merging patches via admrgpch # Use various adpatch options like nocompiledb or nocompilejsp # Use defaults file # Staged APPL_TOP during upgrades # Increase batch size (Might result into negative ) 5. What is the purpose of a cluster? A cluster provides an optional method of storing table data. A cluster is comprised of a group of tables that share the same data blocks, which are grouped together because they share common columns and are often used together. For example, the EMP and DEPT table share the DEPTNO column. When you cluster the EMP and DEPT, Oracle physically stores all rows for each department from both the EMP and DEPT tables...

Words: 3117 - Pages: 13

Premium Essay

Oracle Sql Tutorial

...Oracle/SQL Tutorial1 Michael Gertz Database and Information Systems Group Department of Computer Science University of California, Davis gertz@cs.ucdavis.edu http://www.db.cs.ucdavis.edu This Oracle/SQL tutorial provides a detailed introduction to the SQL query language and the Oracle Relational Database Management System. Further information about Oracle and SQL can be found on the web site www.db.cs.ucdavis.edu/dbs. Comments, corrections, or additions to these notes are welcome. Many thanks to Christina Chung for comments on the previous version. Recommended Literature George Koch and Kevin Loney: Oracle8 The Complete Reference (The Single Most Comprehensive Sourcebook for Oracle Server, Includes CD with electronic version of the book), 1299 pages, McGraw-Hill/Osborne, 1997. Michael Abbey and Michael Corey: Oracle8 : A Beginner’s Guide [A Thorough Introduction for First-time Users], 767 pages, McGraw-Hill/Osborne, 1997. Steven Feuerstein, Bill Pribyl, Debby Russell: Oracle PL/SQL Programming (2nd Edition), O’Reilly & Associates, 1028 pages, 1997. C.J. Date and Hugh Darwen: A Guide to the SQL Standard (4th Edition), Addison-Wesley, 1997. Jim Melton and Alan R. Simon: Understanding the New SQL: A Complete Guide (2nd Edition, Dec 2000), The Morgan Kaufmann Series in Data Management Systems, 2000. 1 revised Version 1.01, January 2000, Michael Gertz, Copyright 2000. Contents 1. SQL – Structured Query Language 1.1. Tables 1.2. Queries (Part I) 1.3. Data Definition...

Words: 21631 - Pages: 87

Premium Essay

Apology by Socrates

...people found him as a evil-doer and corrupter of the youth and that Socrates did not receive the same gods which whom the state received but instead he would introduce other new deities. The Athenian society felt as if everyone should believe in the same gods and anyone who did not or whomever taught that there could be something greater or even something different was considered an outcast and that they had to get rid of them in this case Socrates was this outcast. When Socrates has to present in court and to respond about his charges he is calm and plain spoken. Socrates explains to the courts that he has no experience with the court laws and he will speak the way he knows how. Socrates goes on to explain that his teachings come from the Oracle Delphi which he claims that he is the wisest man of all men. Socrates speaks of his ignorance and explains that he has to be wiser than other men only that he knows nothing. I believe that the premise would be when he explains his ignorance and that when he went to politians, poets and craftsmen and they too knew nothing. Socrates claims that society needs him and I believe that the premise would be when...

Words: 518 - Pages: 3

Free Essay

Oracle Rac Setup

...Build Your Own Oracle RAC Cluster on Oracle Enterprise Linux and iSCSI (Continued) The information in this guide is not validated by Oracle, is not supported by Oracle, and should only be used at your own risk; it is for educational purposes only. 12. Create "oracle" User and Directories Perform the following tasks on both Oracle RAC nodes in the cluster! In this section we will create the oracle UNIX user account, recommended O/S groups, and all required directories. The following O/S groups will be created: Description | Oracle Privilege | Oracle Group Name | UNIX Group name | Oracle Inventory and Software Owner |   |   | oinstall | Database Administrator | SYSDBA | OSDBA | dba | Database Operator | SYSOPER | OSOPER | oper | We will be using the Oracle Cluster File System, Release 2 (OCFS2) to store the files required to be shared for the Oracle Clusterware software. When using OCFS2, the UID of the UNIX user " oracle" and GID of the UNIX group " oinstall" must be the same on both of the Oracle RAC nodes in the cluster. If either the UID or GID are different, the files on the OCFS2 file system will show up as "unowned" or may even be owned by a different user. For this article, I will use 501 for the " oracle" UID and 501 for the " oinstall" GID. Note that members of the UNIX group oinstall are considered the "owners" of the Oracle software. Members of the dba group can administer Oracle databases, for example starting up and shutting down databases. Members...

Words: 13991 - Pages: 56

Free Essay

Senior Database Administrator

...success. Education  (2003- 2007) Bachelor’s degree in computer information system from Jordan University with GPA: 3. 35 out of 4 (very good).  Studying MBA at German Jordanian University -Talal abu Ghazaleh Graduate School of business (expected date to graduate 2014). Certifications/Exams  Pass University achievement exam with rank 49 out of 906 students.  Oracle DB 10g: oracle certified professional.  Oracle DB 11g: oracle certified associate.  Oracle E-Business Suite R12 Applications Database administrator certified professional.  Oracle DB 10g: Managing oracle on Linux certified expert.  Oracle E-Business Suite R12 system administrator certified expert.  Pass Oracle enterprise linux fundmental exam as a prerequisite for oracle enterprise linux system administrator certified associate.  Pass ITILV3 Foundation exam.  Oracle DB 10g: Administering Real application clusters certified expert.  Oracle DB: SQL Certified Expert. Professional Experience From To Title& Duties May 2011 Present @Umniah Senior database administrator Duties: Administration on Oracle E-business suite release R11.5.10.1 - Support/Maintain/Troubleshoot Umniah...

Words: 1191 - Pages: 5