views:

763

answers:

1

when trying to view 'Reports > Data Modeler Reports > Design Contents > Relational Model > Relational Designs' in Oracle SQL developer. It gives "Data Modeler reporting repository required." Can anyone see what's wrong with it? Thanks a lot!

alt text

+1  A: 

You need to create a reporting repository schema like this:

SQL> create user DM_REPORT_REPOS identified by DM_REPORT_REPOS;

User created.

SQL> grant connect, resource to DM_REPORT_REPOS;

Grant succeeded.

Then in SQL Developer Data Modeller you can open the model you want to report on and export it to this repository via File/Export/To Reporting Schema. You will need to create a new Connection for the schema you just created.

Then in SQL Developer you can also create a new Connection for the repository and select this to run the reports.

Tony Andrews