Figure 15: Success!
Data Load Note #2: Depending on the target database you're using, you may need to increase the number of concurrent processes the database will run. If you find your execution plan is failing in many places with an ORA-12516 error, you may want to run the following statement logged into the database as sys as sysdba, and then shutdown/restart the database (please consult your DBA first if this environment is anything but a personal sandbox environment):
alter system set processes=250 scope=spfile;
Data Load Note #3: Additionally, if you have selected different offerings from what has been outlined in this article, you may find yourself running out of temp space in your dev_dw temp file. If you do, you can resize it with the following SQL statement and restart your load plan (please consult your DBA first if this environment is anything but a personal sandbox environment):
SQL> alter database tempfile 'C:apporacleoradataorcldev_dwtemp.dbf' resize 10G;
After the load completes, you can run a simple count query against the W_PRODUCT_XACT_F table in the dev_dw schema, like so:
SQL> select count(*) from w_product_xact_f;
COUNT(*)
----------
174742
Additionally, you can launch the 'Inventory > Activities' dashboard page under Supply Chain and Order Management in OBIEE, which is shown in Figure 16.