Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 216 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
BIFOD Schema dump

Hi Experts,
Where I will get the BIFOD schema dump( tables and data). I have downloaded the RPD from oracle site. They have provided the BISAMPLE dump but I didn't find any dump related to BIFOD. Can you please help me out where I will get this.
Regards,
Sree!!
Answers
-
Hello,
First, to clarify I have never used the bi sample.
The question is: do you have an Oracle Virtual Box Machine with this sample?
if the answer is yes then do these steps:
0. open the connection properties in your RPD,check what is your schema (database user), go to the OS a apply these commands:
1.
CONN / AS SYSDBA
ALTER USER scoot IDENTIFIED BY tiger ACCOUNT UNLOCK;
2.
CREATE OR REPLACE DIRECTORY test_dir AS '/u01/app/oracle/oradata/';
GRANT READ, WRITE ON DIRECTORY test_dir TO scott;
3.
expdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log
Kind Regards,
0