在 Oracle SQL Developer 中使用 Data Modeler(查看关系图)

发布于 2024-08-22 08:48:46 字数 256 浏览 6 评论 0原文

当尝试查看“报告>”时数据建模器报告>设计内容>>关系模型> Oracle SQL Developer 中的“关系设计”。它提供了“所需的数据建模器报告存储库”。谁能看出它出了什么问题吗?多谢!

替代文本

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

内心荒芜 2024-08-29 08:48:46

您需要创建一个如下所示的报告存储库架构:

SQL> create user DM_REPORT_REPOS identified by DM_REPORT_REPOS;

User created.

SQL> grant connect, resource to DM_REPORT_REPOS;

Grant succeeded.

然后在 SQL Developer Data Modeller 中,您可以打开要报告的模型,并通过文件/导出/到报告架构将其导出到此存储库。您将需要为刚刚创建的架构创建一个新的连接。

然后,在 SQL Developer 中,您还可以为存储库创建一个新的连接,并选择它来运行报告。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文