Blogs
Impact on Packages - Assign permissions directly vs Assign permission via Roles
Submitted by girish.rohini on Wed, 2012-04-11 08:43Document depicts how Roles and Privileges behave for Packages
=================================================================
DB Version: 10.2.0.4
Users: TESTUSR (Table Owner)
TESTUSR_PKG (Package Onwer)
TESTUSR_APP (Application Owner)
Roles: TESTUSR_APP_ROLE
TESTUSR_PKG_ROLE
Table: TEST_TBL
Package: TEST_PKG
Table Text:
create table test_tbl(a number);
Package Text:
CREATE OR REPLACE PACKAGE test_pkg AS -- spec
PROCEDURE insert_test_tbl (
a NUMBER);
PROCEDURE delete_test_tbl (
a NUMBER);
END test_pkg;
CREATE OR REPLACE PACKAGE BODY
- girish.rohini's blog
- Login to post comments
- Read more
An export is not a backup
Submitted by John Watson on Thu, 2010-05-27 15:48Posts on Orafaq reveal that a significant subset of database administrators believe
that an export is a backup. This paper summarizes what an export is, what a backup is,
and why the two are different.
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
R12 - XLA / FAH - Business Events in Create Accounting
Submitted by vamsi kasina on Wed, 2012-05-09 16:42
The following business events are disabled as default by Oracle.
For any custom process those can be enabled by users. But only extract and postprocessing events will be called in document mode.
Custom code / package can be used as a subscription to the respective business event.
oracle.apps.xla.accounting.preaccounting - To identify the events, which will be processed by create accounting oracle.apps.xla.accounting.extract - To populate the transaction objects only for the events in xla_events_gt
- vamsi kasina'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.
- John Watson's blog
- Login to post comments
- Read more
R12 - XLA / FAH - Useful Notes / GDFs / Patches
Submitted by vamsi kasina on Wed, 2011-12-28 10:18
Miultiple Entities GDF 9651687
In SLA Not In GL GDF 9481239
FAQ for SLA Upgrade 604893.1
SLA Obsolete Profiles 553229.1
FAQ - FSAH / FAH 729545.1
XLA Setup Diagnostics Test 942252.1
- vamsi kasina's blog
- Login to post comments
- Read more
R12 - XLA / FAH - After running Validate AAD program, why the XLA dynamic package becomes invalid?
Submitted by vamsi kasina on Fri, 2011-12-23 13:51
Subledger Accounting / Financials Accounting Hub uses dynamic package to generate the journal entries.
Depending on the rules (AMB Setup and Event Model) the dynamic package will be created, when the Validate Application Accounting Definition program has been run.
The package will be generated with the naming convension XLA_{5DIGIT_APPL_ID}_AAD_{SEED_CUSTOM}_{6DIGIT_AAD_HASH}_PKG.
AAD_HASH value will be found in xla_product_rules_b.product_rule_hash_id.
SELECT 'XLA_' || lpad(application_id,5,'0') || '_AAD_' ||
product_rule_type_code || '_' || lpad(product_rule_hash_id,6,'0') || '_PKG'
FROM xla_product_rules_b
WHERE application_id = &p_appl_id
AND amb_context_code = NVL('&amb_context_code','DEFAULT')
AND product_rule_code = '&aad_code';Examples for dynamic pakcages:XLA_00555_AAD_C_011117_PKG
XLA_00200_AAD_S_000012_PKG
- vamsi kasina's blog
- Login to post comments
- Read more

