DBA to understand the new environment,
This is not textbook, but a number of ideas and experiences, for this problem, each person's understanding of the perspective is not the same. Welcome to continue to supplement the sound.
1, one should first understand the current version of Oracle databases and platforms, and related information
This is very important, busy as a long time also know which version of your database, running in what system, it would mean is very sad, so I personally think that this is the first step you need to know. The following these scripts can help you get the relevant information you need.
select * from v$version; |
2, then you have to understand what components of the database Zhongzhuang
select * from dba_registry; |
3, clear the environment is a stand-alone or cluster?
There are many ways to judge this, I am here to give a help dbms_utility to determine the method.
set serveroutput on |
4, is configured with the DataGuard?
select protection_mode, protection_level, remote_archive, database_role, dataguard_broker,guard_status |
5, it hired a archive mode?
conn /as sysdba |
select log_mode from v $ database;
6, it hired a flashback database feature?
select flashback_on from v$database; |
If so, further view of the configuration FRA
7, it hired a force logging and additional logging?
select force_logging,supplemental_log_data_min, supplemental_log_data_pk, supplemental_log_data_ui, |
8, to understand the composition of the control files
select * from v$controlfile; |
9, to understand the composition of the log file
select l.group#, lf.type, lf.member, l.bytes, l.status LOG_STATUS, lf.status LOGFILE_STATUS |
10, to understand the composition and location of the parameter file
show parameter spfile |
11, about instance related information
select instance_name, host_name, status, archiver, database_status, instance_role, active_state |
12, user and password-related
Whether to use the default password?
Whether to use a profile?
It hired a password verification function?
User authentication method?
The password is case-sensitive and so on.
select name, value from gv$parameter where name = 'resource_limit'; |
13, is opened BLOCK CHANGE TRACKING
select filename, status, bytes from v$block_change_tracking; |
14, begun using those features (Feature)?
DBMS_FEATURE_USAGE_REPORT |
15, table spaces and data files of the planning
That we are all familiar with, do not write
16, character set-related
select * from database_properties; |
17, the system the existence of invalid object
select owner, object_type, COUNT(*) |
18, further
Are you using ASM?
The current system of backup methods and strategies that?
Network file configuration is how?
19, look at the recent alert log to get some useful information
20, run a few performance analysis report to see how the recent state of the system running
21, ran an RDA report, collection of complete system status report
Well, with these some basic information (not completely), you are basically on your new contact with this system have a rough understanding of access to, you then slowly in-depth analysis, and then formulate a set of realistic The operation and maintenance of norms, slowly pig bar.
Related Posts of DBA to understand the new environment,
-
ORACLE10G full version centos5 installed (the installation has passed)
ORACLE10G full version centos5 installed (the installation has passed) 1. Centos 5.0 install rn GUI must be installed, it is best not to start selinux rn rn rn 2. . Ready to install the software: (this is very important, is the first installation fai ...
-
SGA extended the principle of 32bit oracle
SGA extended the principle of 32bit oracle From: http://www.itpub.net/247048.html Because the median 32bitrnoracle restrictions can only visit the oracle process 4g (2 of 32 power) following virtual memory address, the time at a lot of people this is ...
-
Oracle 10 client under linux installation instructions at
Oracle 10 client under linux installation instructions at 1. Preparation conditions: Environment: linux red linux5 64 bit and have the following rpm package to ensure that the installation binutils-2.15.92.0.2-10.EL4 compat-db - 4.1.25 -9 control-center-2
-
Dbms_obfuscation_toolkit use of Oracle's encryption and decryption of data (to)
In order to protect sensitive data, oracle start from 8i to provide a data encryption package: dbms_obfuscation_toolkit. Take advantage of this package, our data can be DES, Triple DES or MD5 encryption. This article on the use of this and the use of ...
-
Oracle XDB relax resolve port conflict of 8080
In this paper, carried: http://www.enet.com.cn/article/2008/0306/A20080306175452.shtml Oracle 9i from the start, Oracle includes the installation of the default XDB. After starting the database, Oracle XDB's http service will automatically take u ...
-
Oracle in the relationship between User and Schema
If we want to know the database and the User What is the relationship between Schema, we must first know about User and Schema database What is the concept in the end. In SQL Server2000 in architecture because of the reason, User and Schema there is ...
-
High Availability Oracle Flashback
Brief introduction Flashback Database is a point in time (PIT) restore the database approach. This incomplete recovery strategy can be used to restore the logic because of human error cause damage to the database. At the introduction of 10g, it is de ...
-
An example of the use of TKPROF
First, view and edit parameters SQL> show parameter max_dump_file_size NAME TYPE VALUE ------------------------------------ ----------- --- --------------------------- max_dump_file_size string UNLIMITED SQL> show parameter user_dump_dest NAME TYPE
-
Diagnosis and principles of order
SQL> select disk.value "Disk", mem.value "Mem", 2 (disk.value / mem.value) * 100 "Ratio" 3 from v $ sysstat mem, v $ sysstat disk 4 where mem.name = 'sorts (memory)' 5 and disk.name = 'sorts (disk)'; D ...
-
ORACLE 10G dataguard configuration Step by Step
oracle dataguard













Leave a Reply