Oracle AD Controller ADCTRL is used to manage worker processes that perform a pivotal role in the function of batch processing for patching and many other Applications activities. ADCTRL is …
Read More »Undo Related Queries Part 2
List of All active Transactions
Read More »ORACLE APPLICATIONS R12 ARCHITECTURE
ORACLE APPLICATIONS R12 ARCHITECTURE Oracle E-Business Suite Release-12 have a Multi-tiered Architecture, that supports Oracle Applications products. They are comprised of a Database Tier which manages the Oracle Database and stores all …
Read More »Oracle RMAN Commands List
Oracle RMAN Commands List Here is the list of key most RMAN commands that are used for Backup and related activities: LIST Commands LIST Commands are generic RMAN commands …
Read More »PL/SQL Code For Dropping All Objects in Schema
PL/SQL Code For Dropping All Objects in Schema DECLARE v_itemcount INTEGER; BEGIN SELECT Count(*) INTO v_itemcount FROM all_objects AO WHERE AO.owner = USER AND AO.object_type NOT IN ( ‘INDEX’ ) AND AO.object_name NOT LIKE ‘BIN$%’; WHILE ( v_itemcount > 0 ) LOOP FOR v_cmd IN (SELECT ‘drop ‘ || AO.object_type || ‘ ‘ || AO.object_name || Decode(AO.object_type, ‘TABLE’, ‘ CASCADE CONSTRAINTS’, ”) AS DROPCMD FROM all_objects AO WHERE AO.owner = USER AND AO.object_type NOT IN ( ‘INDEX’ ) AND AO.object_name NOT LIKE ‘BIN$%’) LOOP …
Read More »Error creating AME rule R12 oracle.apps.per.ame.rules.server.RulesAM
ERROR
Read More »RAC Voting Disk
Rac Voting Disk The Voting Disk File is a file on the shared cluster system or a shared raw device file. Voting disk a key component of clusterware and its …
Read More »Undo Related Queries Part 1
To check Retention Guarantee for Undo Tablespace
Read More »ORA-04031: unable to allocate adautoconfig.sh dbTier txkcreateACL.sh exiting with status 1
ERROR Checking for existence of the ACL …. DECLARE * ERROR at line 1:
Read More »PL/SQL Code for Counting Rows In Schema Tables
PL/SQL Code for Counting Rows In Schema Tables DECLARE i INTEGER; BEGIN dbms_output.Put_line(‘Table Name,Row Count,’ || To_char(SYSDATE, ‘DD-MON-YYYY HH24:MI:SS’)); FOR v_table IN (SELECT ut.table_name FROM user_tables ut) LOOP EXECUTE IMMEDIATE ‘select count(*) from ‘|| v_table.table_name INTO i; dbms_output.Put_line(v_table.table_name || ‘,’ || To_char(i)); END LOOP; END;
Read More »