Tools to Administer, Monitor and Tune the Oracle Database.
Submitted by mbartov on Fri, 2012-08-10 10:07I just posted a complete integrated set of tools to manage, monitor and tune the Oracle database.
It is free, no registration or email is required. I will just appreciate any kind of feedback to make it better.
The package comprises the following topics:
Objects
This section allows you to view and maintain virtually all database objects, including partitioned tables and materialized views. It also includes a function to view inter-dependency between objects.
Users
This section allows you manage users and security.
- mbartov's blog
- Login to post comments
- Read more
1Z0-052 Oracle DBA Admin 1 OCA Study Guide by Matthew Morris: Review
Submitted by John Watson on Sun, 2012-08-05 00:31Matthew Morris (who makes many constructive and knowledgeable contributions to the forum) has written a series of study guides for the OCA/OCP exams. I asked him if I could have a copy of one to review. The result: it's very good. This is a copy of the review I put up on Amazon.
- John Watson's blog
- Login to post comments
- Read more
How to use Incarnation in Oracle 10G
Submitted by andy huang on Wed, 2012-06-06 08:05
OS:Red Hat Linux As 5
DB Version:10.2.0.4
[=16]In 9i,we open the database with resetlogs just only once when we do the incomplete recover,but in the 10g, it can open the database with resetlogs more than once,the flowing test is show how to open the database with resetlogs many times.
1.
- andy huang's blog
- Login to post comments
- Read more
Oracle Data Guard 11g – Overview Client Failover Configuration
Submitted by mahir.quluzade on Tue, 2012-06-05 04:25- mahir.quluzade's blog
- Login to post comments
- Read more
Oracle Database 11g Release 2: Performance Tuning Tips and Techniques (Richard Niemiec)
Submitted by John Watson on Tue, 2012-05-15 02:26I've been asked by the publishers to review "Oracle Database 11g Release 2: Performance Tuning Tips and Techniques" by Richard Niemiec of TUSC. Conclusion: it is good but not perfect. This is an extended version of the review I put up on Amazon.
- John Watson's blog
- Login to post comments
- Read more
FIne Grained Dependencies in Oracle 11g
Submitted by mohan_krishnan83 on Sat, 2012-04-14 09:31Dependency Oracle schema is the place where all the Database objects get stored. This make a room for the entire set of objects under the Category of Data Storage ( Tables, Views) and Data Access (Stored Procedure ,Functions ,Packages and Triggers) .These Objects make a reference across all these objects to form the application.This is known as dependency.
Conventional Dependency Model If an Object B is being referrd from object A (ie Object A refers another Object B) , Object A is known as Dependant Object and Object B is Known as referenced Object.
- mohan_krishnan83's blog
- Login to post comments
- Read more
Announcing my upcoming Book on Advanced Oracle PL/SQL Concepts (1Z0-146 Preparation handbook)
Submitted by sbh_orafaq on Wed, 2012-04-11 00:52Hello,
It gives me great pleasure and honour to announce my upcoming book Oracle Advanced PL/SQL Developer Professional Guide with Pact Publishers. The book 'Oracle Advanced PL/SQL Developer Professional Guide' is focussed on the preparation of OCP (1Z0-146) examination. The book doesn't restricts its scope to the examination but aims to strengthen the advanced concepts in Oracle 11g PL/SQL.
The book has been reviewed by Oracle ACEs Kamran Agayev, Ronald Rood and Mohan Dutta. It is under production and is expected to be released by May, 2012.
Basics of Partition Tables in Oracle
Submitted by giteshtrivedi on Tue, 2012-01-17 23:55Basics of Partition Tables
Partitioning is a method of splitting an object (a table or index) into separate parts (called partitions) based on some criterion that is assigned to the partition. The criterion might be a date range, a number range, or any other possible value. Imagine, for example, that you have a huge table that is driving you crazy because queries on it are really slow. You get so mad at this table that you take a logical hatchet and begin to slice the table up into many smaller tables is a partition.
Please use ANSI join syntax
Submitted by John Watson on Sun, 2012-01-01 06:41The old Oracle join syntax really should be consigned to history.
Script to find Oracle database performance
Submitted by ashrafb on Mon, 2011-11-21 15:43This single script provides the overall picture of the database in terms of Waits events, Active/Inactive killed sessions, Top Processes (physical I/O, logical I/O, memory and CPU processes), Top CPU usage by users, etc.
[code]set serveroutput on
declare
cursor c1 is select version
from v$instance;
cursor c2 is
select
host_name
, instance_name
, to_char(sysdate, 'HH24:MI:SS DD-MON-YY') currtime
, to_char(startup_time, 'HH24:MI:SS DD-MON-YY') starttime
from v$instance;
cursor c4 is
select * from (SELECT count(*) cnt, substr(event,1,50)
