Presentation is loading. Please wait.

Presentation is loading. Please wait.

95-733 Internet Technologies1 SQL/XML Releasing the data from RDBMS Examples from the article “Generating XML from Relational Database Tables” by Selim.

Similar presentations


Presentation on theme: "95-733 Internet Technologies1 SQL/XML Releasing the data from RDBMS Examples from the article “Generating XML from Relational Database Tables” by Selim."— Presentation transcript:

1 95-733 Internet Technologies1 SQL/XML Releasing the data from RDBMS Examples from the article “Generating XML from Relational Database Tables” by Selim Mimaroglu in the September 2004 “Web Services Journal”

2 95-733 Internet Technologies2 Consider a table of experts: Expert_id_prefix expert_id expert EXP 3 Feynmann, R.P. EXP 4 Stotler, Raymond EXP 5 Gardner, Alfred EXP 6 Upton, Steve EXP 7 McGuiness, Debra

3 95-733 Internet Technologies3 Using Oracle: SQL> select XMLELEMENT(“name”,expert) from experts where expert_id between 4 and 10; Using IBM’s DB2 select XML2CLOB(XMLELEMENT(NAME ”name”,expert)) from experts where expert_id between 4 and 10; Microsoft’s SQL Server 2000 supports the same idea. Generating XML with SQL

4 95-733 Internet Technologies4 Producing Stotler, Raymond Gardner, Alfred Upton, Steve McGuiness, Debra


Download ppt "95-733 Internet Technologies1 SQL/XML Releasing the data from RDBMS Examples from the article “Generating XML from Relational Database Tables” by Selim."

Similar presentations


Ads by Google