Application DBA's or ADBA's are responsible for looking after the application tasks pertaining to a specific application.
This includes the creation of database objects, snapshots, SQL tuning, etc.
Typical ADBA responsibilities:
* Implement and maintain the database design
* Create database objects (tables, indexes, etc.)
* Write database procedures, functions and triggers
* Assist developers with database activities
* Tune database queries
* Monitor application related jobs and data replication activities
Saturday, February 6, 2010
Oracle DBA Qualifications
Must be certified as an Oracle DBA.
Hardworking mentality
Lots and lots of EXPERIENCE
Hardworking mentality
Lots and lots of EXPERIENCE
Oracle DBA Skill Set
1)Good understanding of the Oracle database, related utilities and tools
2)A good understanding of the underlying operating systemA good knowledge of the physical database design
3)Ability to perform both Oracle and operating system performance tuning and monitoring Knowledge of ALL Oracle backup and recovery scenarios
4) A good knowledge of Oracle security managementA good knowledge of how Oracle acquires and manages resources
5)A good knowledge Oracle data integritySound knowledge of the implemented application systemsExperience in code migration, database change management and data management through the various stages of the development life cycle
6)A sound knowledge of both database and system performance tuningA DBA should have sound communication skills with management, development teams, vendors and systems administratorsProvide a strategic database direction for the organisation.
7)A DBA should have the ability to handle multiple projects and deadlinesA DBA should possess a sound understanding of the business
2)A good understanding of the underlying operating systemA good knowledge of the physical database design
3)Ability to perform both Oracle and operating system performance tuning and monitoring Knowledge of ALL Oracle backup and recovery scenarios
4) A good knowledge of Oracle security managementA good knowledge of how Oracle acquires and manages resources
5)A good knowledge Oracle data integritySound knowledge of the implemented application systemsExperience in code migration, database change management and data management through the various stages of the development life cycle
6)A sound knowledge of both database and system performance tuningA DBA should have sound communication skills with management, development teams, vendors and systems administratorsProvide a strategic database direction for the organisation.
7)A DBA should have the ability to handle multiple projects and deadlinesA DBA should possess a sound understanding of the business
Oracle DBA Roles and Responsibilities
The job of the DBA seems to be everything that everyone else either doesn't want to do, or doesn't have the ability to do. DBAs get the enviable task of figuring out all of the things no one else can figure out. More seriously though, here is a list of typical DBA responsibilities:
Installation, configuration and upgrading of Oracle server software and related products Evaluate Oracle features and Oracle related products Establish and maintain sound backup and recovery policies and procedures Take care of the Database design and implementation Implement and maintain database security (create and maintain users and roles, assign privileges) Perform database tuning and performance monitoring Perform application tuning and performance monitoring Setup and maintain documentation and standards Plan growth and changes (capacity planning) Work as part of a team and provide 7x24 support when required Perform general technical trouble shooting and give consultation to development teams Interface with Oracle Corporation for technical support. Patch Management and Version Control
Installation, configuration and upgrading of Oracle server software and related products Evaluate Oracle features and Oracle related products Establish and maintain sound backup and recovery policies and procedures Take care of the Database design and implementation Implement and maintain database security (create and maintain users and roles, assign privileges) Perform database tuning and performance monitoring Perform application tuning and performance monitoring Setup and maintain documentation and standards Plan growth and changes (capacity planning) Work as part of a team and provide 7x24 support when required Perform general technical trouble shooting and give consultation to development teams Interface with Oracle Corporation for technical support. Patch Management and Version Control
Thursday, February 4, 2010
Change NonArchive Mode to Archive Mode
Archive Mode is very important.Archive files are the online backup of Redo log files.
Change the mode
Shutdown the database by SHUTDOWN NORMAL OR SHUTDOWN IMMEDIATE;
then
STARTUP MOUNT;
ALTER DATABASE ARCHIVELOG;
Enabling Automatic Archival
by
ALTER SYSTEM SET LOG_ARCHIVE_START=TRUE SCOPE=SPFILE;
then
SHUTDOWN DATABASE;
then
STARTUP
We can check the log mode by issue
SELECT LOG_MODE FROM V$DATABASE;
We can see the log mode and current sequence number by
ARCHIVE LOG LIST;
Change the mode
Shutdown the database by SHUTDOWN NORMAL OR SHUTDOWN IMMEDIATE;
then
STARTUP MOUNT;
ALTER DATABASE ARCHIVELOG;
Enabling Automatic Archival
by
ALTER SYSTEM SET LOG_ARCHIVE_START=TRUE SCOPE=SPFILE;
then
SHUTDOWN DATABASE;
then
STARTUP
We can check the log mode by issue
SELECT LOG_MODE FROM V$DATABASE;
We can see the log mode and current sequence number by
ARCHIVE LOG LIST;
Subscribe to:
Posts (Atom)