Follow the Steps:
Go to operator tab => Load plan executions and select the plan
Follow the Steps:
Go to operator tab => Load plan executions and select the plan
Suppose we have ADW database configured in OCI and We are running ODI load plans which contains multiple Package scenarios. Each scenario is inserting or marging data to configured ADW database. Sometimes the scenario is taking longer time like more than 2 or 3 hrs but not completing the process and got stuck. How we know that the particular process got stuck. Using performance hub, we can easily track the sessions when it is active or idle. Based on the perfomace metrics, we can take further decision to kill the stuck process and restart the failed scenario again.
Steps to check performance hub:
Login to OCI console and navigate to Databases.
Query:
Select sid,serial#,program,module,status,username,schemaname from gv$session where status ='ACTIVE'
This query is very useful to see all the active processes even we can see the ODI sessions here.
What : We will read 2 csv files having different schemas and marge them into a single final csv file.
Input:
Sample_1.csv
Implementation Steps:
FREQ=MONTHLY;BYMONTHDAY=1,10,15;BYHOUR=5,10 15,20;BYMINUTE=15;
The following exp indicates that the integration will run each month on the 1st, 10th, and 15th day of the month at 5:15AM, 10:15AM, 3:15PM, and 8:15PM
FREQ:DAILY;BYHOUR=0,1,2,3 4,5,6,7,8,9,10,12,13,14,15,16,17,18,19,20 21,22;BYMINUTE=0,5,10,15,20,25,30,35,40,45,50,55;
The following exp will run daily each 5 mins interval except 11th hour of the day.
Run the following commands to get the tablesapce used size, allocated max size:
For all Tablespace:
Select FILE_NAME, FILE_ID, TABLESPACE_NAME, BYTES/1024/1024/1024 size_gb, maxbytes/1024/1024/1024 max_gb, STATUS, AUTOEXTENSIBLE, ONLINE_STATUS from dba_data_files
For speecific tablespace:
Select FILE_NAME, FILE_ID, TABLESPACE_NAME, BYTES/1024/1024/1024 size_gb, maxbytes/1024/1024/1024 max_gb, STATUS, AUTOEXTENSIBLE, ONLINE_STATUS from dba_data_files where tablespace_name in ('undo_8')
1. Export 11g OSB code and import in 12c Jdeveloper. Steps to import OSB project in Jdeveloper: File⇾Import⇾Service Bus Resources⇾ Se...