Home > Software design >  Will OBIEE RPD work if all the tables in physical layer are not present in database?
Will OBIEE RPD work if all the tables in physical layer are not present in database?

Time:03-23

Here's a scenario:
Say I have a report which touches 10 tables in the physical layer. There are 100 tables in the physical layer of the RPD. Now I am changing the connection pool in the physical layer to point it to a different database/data-source. This new database has only those 10 tables in it (with the exact same structure as that in the previous database), which my report is using, but the rest of the 90 tables from the connection pool are not present.
Will my report work after this repointing to a different database/data-source? Or do I have to create all those 100 tables in the new database before trying to run my report?
I am just changing the connection pool in the RPD. Otherwise the everything in the RPD remains unchanged

CodePudding user response:

Yes it will. You will start seeing errors as soon as you reference something which doesn't exist.

  • Related