Rdf talend将关系数据库中的数据转换为turtle

Rdf talend将关系数据库中的数据转换为turtle,rdf,talend,Rdf,Talend,我刚刚开始探索Talend Open Studio数据集成。我对使用Talend将关系数据库中的数据转换为Turtle感兴趣。例如,假设我在电子牙科记录系统中有如下记录: patient_id 1001 tooth_num 1 procedure D2740 (porcelain crown) procedure_date 1/1/2017 @prefix : <http://example.com/> :patient_1001 a :Patient . :tooth_1 a :

我刚刚开始探索Talend Open Studio数据集成。我对使用Talend将关系数据库中的数据转换为Turtle感兴趣。例如,假设我在电子牙科记录系统中有如下记录:

patient_id 1001
tooth_num 1
procedure D2740 (porcelain crown)
procedure_date 1/1/2017
@prefix : <http://example.com/>
:patient_1001 a :Patient .
:tooth_1 a :Molar .
:tooth_1 :part_of :patient_1001 .
:procedure_D2740 a :Porcelain_Crown_Procedure .
:procedure_D2740 :procedure_date "2017-01-10"^^xsd:datetime .
:procedure_D2740 :restores :tooth_1 .
我想将此记录转换为许多类似以下内容的Turtle语句:

patient_id 1001
tooth_num 1
procedure D2740 (porcelain crown)
procedure_date 1/1/2017
@prefix : <http://example.com/>
:patient_1001 a :Patient .
:tooth_1 a :Molar .
:tooth_1 :part_of :patient_1001 .
:procedure_D2740 a :Porcelain_Crown_Procedure .
:procedure_D2740 :procedure_date "2017-01-10"^^xsd:datetime .
:procedure_D2740 :restores :tooth_1 .
@前缀:
:病人_1001 a:病人。
:牙_1 a:磨牙。
:牙齿1:患者的部分1001。
:程序_D2740A:瓷_冠_程序。
:程序_D2740:程序_日期“2017-01-10”^^xsd:datetime。
:步骤_D2740:恢复:齿_1。
通常,我会编写一个计算机程序来实现这一点。但是,我希望加快创建此转换代码的过程。我能在塔伦德做这样的事吗


谢谢。

查看tMap组件。我认为基于您的示例,它将对您有所帮助。请查看tMap组件。根据你的例子,我认为这会对你有所帮助。