11.2.0.3 Database Certified with E-Business Suite
Submitted by rajeevkdba on Tue, 2011-11-15 00:38
Oracle 11.2.0.3, the second patch set for the 11gR2 database, is now certified with with E-Business Suite and is available for download in 32 and 64-bit.
You can download it from only your meta link account credential.
Patch No: 10404530
Oracle E-Business Suite Release 11i
Prerequisites
* 11.5.10.2 + ATG PF.H RUP 6 and higher
Certified Platforms
* Linux x86 (Oracle Linux 4, 5)
* Linux x86 (RHEL 4, 5)
* Linux x86 (SLES 10)
* Linux x86-64 (Oracle Linux 4, 5)
- rajeevkdba's blog
- Login to post comments
- Read more
Reference partitioning and partitionwise joins
Submitted by John Watson on Mon, 2011-11-07 08:46Why do you sometimes not get partitionwise joins? Because the optimizer isn't clever enough. Reference partitioning has many benefits, one of which is that the optimizer understands it. You will always get a partitionwise join if your tables are reference partitioned.
- John Watson's blog
- Login to post comments
- Read more
Progress status of an index rebuild or creation, or other long operations.
Submitted by David Lozano Lucas on Fri, 2011-10-07 08:12
When we launch a long operation, such as a RMAN backup or rebuild of a large index, we can come to despair of not having an estimate of the time it may take. We can even come to think that is doing nothing.
For the progress of a long operation we can query the view V$SESSION_LONGOPS, first obtaining the process ID from V$SESSION. In the case of DBA, we know exactly which user is rebuilding the index, so we can simplify it into a single query.
The following example shows the progress of the reconstruction of a partition of an index.
- David Lozano Lucas's blog
- Login to post comments
- Read more
Constraints and performance: you want as many constraints as possible
Submitted by John Watson on Sun, 2011-09-18 10:14Several times I have had to deal with people who do not want to define constraints. I have never understood why they don't, because my experience is that the more constraints you can define, the better Oracle will perform. If anyone knows where the idea that not defining constraints is a Good Thing comes from, I would be interested to know.
Following are two very simple examples of constraints allowing the optimizer to develop better plans.
First, foreign key constraints. These give the optimizer a lot of information about the data that may mean it can cut out whole tables from a query.
Partition Exchange by Example
Submitted by saibalguha on Wed, 2011-09-07 04:12One of the great features about partitioning, and most specifically range-based partitioning, is the ability to load data quickly and easily with minimal impact on the current users using:
alter table call exchange partition data_2007 with table call_temp;
Star Transformation
Submitted by subrata.dass on Tue, 2011-08-23 03:42Star Transformation in Siebel Analytics (OBIEE)
(Subrata Dass)
Introduction
Star Transformation is a join method mostly used in Data Warehousing Environments to fine tune typical query performance. It is of utmost importance in DB environments where reporting tools like Siebel Analytics (OBIEE) is in use. It can also be used for other tools such as Business Objects. The conventional join mechanisms that the star transformation seeks to supersede are Hash join, nested-loops and sort merge join.
This paper shows how to take full advantage of this RDBMS feature.
How to make Dynamic List Item in Oracle Forms Builder?
Submitted by zahid9999 on Thu, 2011-08-11 03:31In this article I will tell you how you can make a dynamic List of values in oracle forms builder, most developer use many techniques to make List of values.
Best practice - Implementation of OA Framework Technology
Submitted by satishbabugunukula on Tue, 2011-08-02 19:26This post is to discuss about the Best Practices that was followed in implementing a new Self Service Applications using OA Framework.
A College needed a web based enrollment system for its students to enroll online without needing to fill up a paper. This was designed for a new i-module for Student Enrolment was developed in OA Framework, using jDeveloper,Rapid Application Development Environment. The benefits of the RAD environment and OA Framework Technology was well utilized to meet the deadlines.
The main challenges faced by the project were , I identification of a roadmap to transform existing system and there was no proper oracle documentation on how to develop a transaction page in OA Framework.
Playing with Oracle Lobs
Submitted by dwaipayan19861 on Wed, 2011-07-13 10:08
LOBs deal with unstructured data, the ones which are the most difficult to store and retrieve in a relational database.
In this article, I am going to discuss extensively and manipulate the ORACLE
* LOBs that are stored in the database itself like BLOB,CLOB,NCLOB ,and
* LOBs like BFILE which are Stored outside the database as Operating System files.
First let us create a directory :
create or replace directory my_dir as 'D:\pics';
Directory created.
BFILE:
BFILEs act as a pointer and store the location of the external OS files in database tables.
1.
- dwaipayan19861's blog
- Login to post comments
- Read more
Oracle RMAN Reporting
Submitted by satishbabugunukula on Thu, 2011-07-07 18:49For any company the most important asset is data and the most challenging job is to recovery the database with less downtime with out any data loss, in the event of database failure. In many situations users end up with incomplete recovery of the database with out knowing which data files backed and which data files need to backup. You should ensure that your database is backed up efficiently and should restore successfully when needed. The RMAN reporting provides effective and easy way to determine database backup for a successful recovery.
