Home Database Oracle what is oracle DBA

what is oracle DBA

Feb 23, 2022 pm 02:07 PM
oracle

Oracle DBA refers to the Oracle database administrator, which is the collective name for relevant staff engaged in managing and maintaining the Oracle database management system; it is mainly responsible for the full life cycle management of business databases from design, testing to deployment and delivery. The core goal is to ensure the stability, security, integrity and high performance of the database management system.

what is oracle DBA

The operating environment of this tutorial: Windows 7 system, Oracle 11g version, Dell G3 computer.

oracle DBA refers to the oracle database administrator.

DBA (Database Administrator, "Database Administrator") is the collective name for relevant staff engaged in managing and maintaining database management systems (DBMS), and belongs to operation and maintenance engineers. a branch.

DBA is mainly responsible for the full life cycle management of business databases from design, testing to deployment and delivery. Its core goal is to ensure the stability, security, integrity and high performance of the database management system.

In foreign countries, some companies also refer to DBAs as database engineers. The work content of the two is basically the same, both of which are to ensure the stable and efficient operation of database services 24 hours a day.

DBA is different from database development engineers. The main responsibility of DBA is to operate and manage the database management system, focusing on operation and maintenance management. The main responsibility of a database development engineer is to design and develop database management systems and database application software systems, focusing on software research and development.

DBA is mainly responsible for the following aspects:

  • Design database, including tables and fields

  • Monitor and monitor database log

  • Database backup and recovery

  • Management of database user passwords and permissions/database security

  • Check Whether the SQL statement conforms to the specification

oracle DBA management tool

1、OSW

if , as an Oracle maintenance engineer, you should at least install one tool in the system you maintain, so I recommend this first. It's like a camera on the top of a bank's automatic teller machine. It silently records everything in your operating system. You can take a look at it at any time when you need to review it.

In order to save space, it will separately package the hourly information into a gzip compressed file. You can decompress it according to which time period it is. Many times, anomalies appear in a certain system in the middle of the night, and they don't officially break out until work. If OSW is installed casually, the problem will be solved very quickly. Another tool with similar functions to OSW is nmon, but it is only available on AIX and Linux platforms. If you master OSW and oratop, nmon can also be retired.

2. oratop

As the name suggests, oratop pays tribute to top, displaying database-related information in real time in a display method similar to the top command in Unix/Linux.

It is worth mentioning that it not only supports single-instance databases, but also supports RAC, Active DG, and 12c multi-tenant databases.

oratop is so easy to use. Without further explanation of its functions, you can just use it.

3. ora

Unlike oratop, ora is completely responsive and integrates many functional queries that require a long series of SQL statements. This tool was originally developed by Oracle. During use, DBAs can add new function points according to their own needs. During the problem analysis process, they can quickly learn the situation of the database objects and make corresponding processing decisions:

For example, if the CPU of a certain system suddenly soars, you can use ora active|wc -l to see how many active statements there are, and you can use ora active|grep sequen to see which SQLs are waiting for sequential reading at the same time. You can see the specific SQL statement through ora sqltext SQL_ID. You can view the specific execution plan through ora plan SQL_ID and whether there are multiple execution plans for the same statement. You can see how big the corresponding table is, what indexes it has, and when it was done through ora size. Statistics collection. After seeing these contents, I believe you have a clear understanding of the basic SQL situation.

4. SQL Devloper

The above three are all command line tools, which are commonly used by technical guys who are inconvenient to use graphical interfaces. If you have always liked to use graphical interfaces and have used pirated Toad and PL/SQL Developer for more than ten years, it is recommended that you use the free SQL Developer.

5, AWR/ASH/ADDM

These three scripts are all in the $ORACLE_HOME/rdbms/admin directory.

Most engineers will at least look at AWR when checking system performance. If you need to see the database situation within a specific few minutes, you usually need to use ASH. If you want Oracle to help you automatically diagnose, you have to use ADDM.

6. ORAchk

ORAchk was previously called RACcheck. Later, its inspection scope was expanded and renamed ORAchk. It is a special tool for health check in the database system. This tool It is mainly used to check whether the software configuration meets the requirements and whether some best practices have been applied. Through this tool, users can easily and automatically perform health checks and assessments on their systems. If you are using Exadata, Oracle also provides the exachk tool.

Check items include:

  • OS kernel parameters

  • OS package/patch

  • Other RAC-related configurations on the OS

  • CRS/Grid Infrastructure

  • RDBMS

  • ASM

  • Database parameters

  • Settings that have a greater impact on the RAC database

  • Upgrade when upgrading to 11.2.0.3/11.2.0.4/12c Check

  • Maximum Availability Architecture (MAA) check

7, RDA

RDA is the abbreviation of Remote Diagnostic Agent. Oracle is a tool used to collect and analyze databases. Running this tool will not change any parameters of the system. The relevant data collected by RDA is very comprehensive, which can simplify our daily monitoring and analysis of the database. Oracle Support also recommends that we feedback related issues when , providing the data collected by RDA, which can provide a strong guarantee for quickly solving the problem.

8. RMAN

When using RMAN, you must not only remember to make backups, but also perform recovery verification at least once a year, so as not to prepare in vain.

9. OEM CC

OEM Enterprise Manager has not only become more beautiful from the stand-alone version of 8i to the current OEM13c CC (Cloud Control), students who have passed the OCM exam have also I have the impression that if your DG does not use OEM, just memorizing the complicated commands will kill you.

In OEM, there is one tool that you must not forget, which is OSM.

In current OEMs, except for the Oracle database, almost everything else you want to monitor and manage can be plugged into it. It's a bit similar to IBM's tivoli and HP's openview, which gradually become bloated and less user-friendly.

Recommended tutorial: "Oracle Tutorial"

The above is the detailed content of what is oracle DBA. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What to do if the oracle can't be opened What to do if the oracle can't be opened Apr 11, 2025 pm 10:06 PM

Solutions to Oracle cannot be opened include: 1. Start the database service; 2. Start the listener; 3. Check port conflicts; 4. Set environment variables correctly; 5. Make sure the firewall or antivirus software does not block the connection; 6. Check whether the server is closed; 7. Use RMAN to recover corrupt files; 8. Check whether the TNS service name is correct; 9. Check network connection; 10. Reinstall Oracle software.

How to delete all data from oracle How to delete all data from oracle Apr 11, 2025 pm 08:36 PM

Deleting all data in Oracle requires the following steps: 1. Establish a connection; 2. Disable foreign key constraints; 3. Delete table data; 4. Submit transactions; 5. Enable foreign key constraints (optional). Be sure to back up the database before execution to prevent data loss.

How to solve the problem of closing oracle cursor How to solve the problem of closing oracle cursor Apr 11, 2025 pm 10:18 PM

The method to solve the Oracle cursor closure problem includes: explicitly closing the cursor using the CLOSE statement. Declare the cursor in the FOR UPDATE clause so that it automatically closes after the scope is ended. Declare the cursor in the USING clause so that it automatically closes when the associated PL/SQL variable is closed. Use exception handling to ensure that the cursor is closed in any exception situation. Use the connection pool to automatically close the cursor. Disable automatic submission and delay cursor closing.

How to create cursors in oracle loop How to create cursors in oracle loop Apr 12, 2025 am 06:18 AM

In Oracle, the FOR LOOP loop can create cursors dynamically. The steps are: 1. Define the cursor type; 2. Create the loop; 3. Create the cursor dynamically; 4. Execute the cursor; 5. Close the cursor. Example: A cursor can be created cycle-by-circuit to display the names and salaries of the top 10 employees.

How to paginate oracle database How to paginate oracle database Apr 11, 2025 pm 08:42 PM

Oracle database paging uses ROWNUM pseudo-columns or FETCH statements to implement: ROWNUM pseudo-columns are used to filter results by row numbers and are suitable for complex queries. The FETCH statement is used to get the specified number of first rows and is suitable for simple queries.

How to stop oracle database How to stop oracle database Apr 12, 2025 am 06:12 AM

To stop an Oracle database, perform the following steps: 1. Connect to the database; 2. Shutdown immediately; 3. Shutdown abort completely.

How to create oracle dynamic sql How to create oracle dynamic sql Apr 12, 2025 am 06:06 AM

SQL statements can be created and executed based on runtime input by using Oracle's dynamic SQL. The steps include: preparing an empty string variable to store dynamically generated SQL statements. Use the EXECUTE IMMEDIATE or PREPARE statement to compile and execute dynamic SQL statements. Use bind variable to pass user input or other dynamic values ​​to dynamic SQL. Use EXECUTE IMMEDIATE or EXECUTE to execute dynamic SQL statements.

What steps are required to configure CentOS in HDFS What steps are required to configure CentOS in HDFS Apr 14, 2025 pm 06:42 PM

Building a Hadoop Distributed File System (HDFS) on a CentOS system requires multiple steps. This article provides a brief configuration guide. 1. Prepare to install JDK in the early stage: Install JavaDevelopmentKit (JDK) on all nodes, and the version must be compatible with Hadoop. The installation package can be downloaded from the Oracle official website. Environment variable configuration: Edit /etc/profile file, set Java and Hadoop environment variables, so that the system can find the installation path of JDK and Hadoop. 2. Security configuration: SSH password-free login to generate SSH key: Use the ssh-keygen command on each node

See all articles