Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Creating Essbase App copy using Filesystem backup in Unix

3587912Jul 15 2019 — edited Jul 15 2019

We take a file level backup of our Essbase applications in prod. 

We are now trying to create Essbase app copy from prod to development using the backup. Our key steps as below:

1. Create a copy of the application from production - app to dev - bk_app

2. Stop the application 

3. Copy contents of the file backup from app/db folder to the bk_app/db folder

Now when we try to start the app we are getting an error saying the DB cannot be started. 

We checked the log file and error is:

“Error: 1053001 Cannot open object file: /hypprd/apphome/Oracle/Middleware/user_projects/prd_server/EssbaseServer/essbaseserver1/app/app/db/ess00001.ind”

where /hypprd/apphome/Oracle/Middleware is the production location for index files. 

Dev location for index file is instead:

  /hypdev/apphome/Oracle/Middleware/user_projects/dev_server/EssbaseServer/essbaseserver1/app/bk_app/db/ess00001.ind”

Normally this process works on Windows. How do we get this to work on Unix as well?

Comments

521217
You can't update several tables in 1 statement.
Pavan Kumar
Hi,

First Thing is that you query is wrong you can not Update the table like that.
Second thing is that there does not exits any relation between the tables
"MTP_ROUTING mtpRouting" and "REF_IP_PROTOCOL refIp"

Third is that your required query will be like this

Update table
Set Columns = < Sub query>
Where <Conditions>.

Please post the correct joining conditions between the tables so that we can able to help you.

Please go through this link
2710189

- Pavan Kumar N
1 - 2

Post Details

Added on Jul 15 2019
4 comments
290 views