ORACLE-如何管理多个表中的rdf模式和实例数据?
我需要将 rdf 模式存储在 ORACLE 的一个表中,并将 rdf 实例数据存储在另一表中。
- 我怎样才能做到这一点?
- 如何配置 joseki-config.ttl 以适用于多个模型?一些例子将帮助我理解解决方案。
- 是否有可能为多个表创建单个模型?
请告诉我。
I need to store the rdf schema in one table and rdf instance data in another table in ORACLE.
- How I can do this?
- How to configure the joseki-config.ttl to work for multiple models? Some example will help me to understand the solution.
- Is there any possibility to create a single model for multiple tables?
Please let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 SDB 与 Joseki 和 Oracle 一起使用。然后你就可以拥有持久的数据集(模型的集合)。 Joseki 下载的 joseki-config-sdb.ttl 中有一个 SDB 配置示例。
SDB 控制数据库表布局。模型存储在默认图形名称或命名图形表中。在不改变SDB代码的情况下,无法控制其他布局。
请注意,TDB(Jena 的自定义数据库层)比使用基于 JDBC 的关系数据库具有更好的扩展性和更快的速度。 Fuseki 是 Joseki 的新版本。
Jena 用户邮件列表为 [电子邮件受保护]。
You need to use SDB with Joseki and Oracle. Then you can have a persistent datasets (a collection of models). There is an example of an SDB configuration in the Joseki download in joseki-config-sdb.ttl.
SDB controls the database table layout. A model is stored in the default graph name or in the named graphs table. There is no control for other layouts without changing the code of SDB.
Note that TDB, a custom database layer for Jena, scales better and is faster than using a relational database over JDBC. Fuseki is the new version of Joseki.
The Jena user mailing list is [email protected].