Couple of Oracle Application Concurrent Manager related scripts which we use frequently. A) UNDER WHICH MANAGER THE REQUEST WAS RUN SELECT b.user_concurrent_queue_name FROM fnd_concurrent_processes a…
2 CommentsExpert Oracle Posts
Below are some of the useful scripts related to Oracle Applications database
–FIND DATABASE SIZE
select 'DATA_n_INDEX: ' || sum(bytes)/1024/1024/1024 || ' GBytes' DATABASE_SIZE from dba_data_files union select 'TEMP: ' || sum(bytes)/1024/1024/1024 || ' GBytes' from dba_temp_files union select 'REDO LOGS: ' || sum(bytes)/1024/1024/1024 || ' GBytes' from v$log union select 'CONTROLFILE: ' || sum(FILE_SIZE_BLKS*BLOCK_SIZE)/1024/1024 || ' MBytes' from v$controlfile;3 Comments
The look and feel of the Self Service EBS Application gets distorted with fonts showing garbled/distorted as shown below Below solutions have helped us…
Leave a CommentA Multipath disk provide failover by using redundant physical path components, eliminating a single point of failure with the Storage Area Network (SAN). Multipathing is a software technology…
3 CommentsMany times proper functioning of application demands that the account/password of the OS (Linux/UNIX) user which owns the application should not expire. chage is the OS…
Leave a CommentThe Data Guard broker logically groups primary and standby databases in a Data Guard setup into a broker configuration that allows the broker to manage and monitor…
Leave a CommentBelow are some of the frequently used Physical Standby Data Guard related SQL queries 1) Basic information of database (primary or standby) SQL> SELECT DATABASE_ROLE,…
6 CommentsBelow is basic diagram of Data Guard Physical Standby Database: PHYSICAL STANDBY DATA FLOW Let us understand how the data flows in data guard…
5 CommentsOracle is tightening up security around Java. Java is one of the most wildly exploited piece of software by viruses and malware bots. Code signing…
2 CommentsOracle Data Guard ensures high availability, data protection, and disaster recovery for enterprise data. Data Guard provides a comprehensive set of services that create, maintain,…
6 Comments