Presentation is loading. Please wait.

Presentation is loading. Please wait.

Confidential ODBC May 7, 20071 2.0.0 Features What is ODBC? Why Create an ODBC Driver for Rochade? How do we Expose Rochade as Relational Transformation.

Similar presentations


Presentation on theme: "Confidential ODBC May 7, 20071 2.0.0 Features What is ODBC? Why Create an ODBC Driver for Rochade? How do we Expose Rochade as Relational Transformation."— Presentation transcript:

1 Confidential ODBC May 7, 20071 2.0.0 Features What is ODBC? Why Create an ODBC Driver for Rochade? How do we Expose Rochade as Relational Transformation of Oracle RIM to Relational Overview

2 Confidential ODBC May 7, 20072  Client Server architecture.  Server runs on Linux, Unix or Windows – the same platforms as the Rochade Server. Push the SQL query workload onto the server where it belongs.  Data sources are defined at the Server level so all ODBC or JDBC clients use the same configuration.  ODBC client runs on Linux, Unix or Windows.  JDBC client runs Linux, Unix or Windows. Now you can easily code Java programs and use JDBC to retrieve your Rochade metadata. Create your entire Rochade Application using SQL if you prefer. 2.0.0 Features

3 Confidential ODBC May 7, 20073  Integration with WebAccess Discovery  Create discovery topic with MQ ODBC topic template.  Customize the result set for your needs.  Administration Console.  Allows the administrator to manage the server remotely via a Windows GUI.  Allows the administrator to remotely configure the server. 2.0.0 Features

4 Confidential ODBC May 7, 20074 What is ODBC? Definition: (pronounced as separate letters) Short for Open DataBase Connectivity, a standard database access method developed by the SQL Access group in 1992. The goal of ODBC is to make it possible to access any data from any application, regardless of which database management system (DBMS) is handling the data. ODBC manages this by inserting a middle layer, called a database driver, between an application and the DBMS. The purpose of this layer is to translate the application's data queries into commands that the DBMS understands. For this to work, both the application and the DBMS must be ODBC-compliant -- that is, the application must be capable of issuing ODBC commands and the DBMS must be capable of responding to them. Since version 2.0, the standard supports SAG SQL. http://www.webopedia.com/TERM/O/ODBC.html

5 Confidential ODBC May 7, 20075 What is ODBC? ODBC Interface MS AccessMS ExcelOther tools… Oracle ODBC Driver UDB ODBC Driver MQ ODBC Driver Oracle Server/Database UDB Server/Database Rochade Server/Database User can use any ODBC compliant tool… To access any ODBC data source… Via an ODBC Driver

6 Confidential ODBC May 7, 20076  Rochade Metadata is stored in a Rochade database:  Based on proprietary indexed flat files  Query language is proprietary and difficult to understand  Query language must be invoked via programming interface.  Query language doesn’t allow for join and predicate processing at the same time.  Query language doesn’t allow formatting of the result set. Why Create an ODBC Driver for Rochade?

7 Confidential ODBC May 7, 20077  Open Rochade Metadata to Many Reporting Tools.  Various BI tools have  MS Access  MS Excel  Crystal Reports  Many more… Why Create an ODBC Driver for Rochade?

8 Confidential ODBC May 7, 20078  Open Rochade Metadata to SQL.  Join linked or namespaced items together and display item attribute information.  Filter queries based on complex SQL predicates.  Select attributes to display in the result set  Sort based on any column in the result set  All standard SQL is available. Why Create an ODBC Driver for Rochade?

9 Confidential ODBC May 7, 20079 How do we Expose Rochade as Relational  Item Types – Exposed as Tables.  Text Attributes – Exposed as columns.  Value Attributes – Exposed as columns.  Binary Attributes – Don’t have solution yet.  Namespace Attributes – This is a 1 to many connection in Rochade, so it’s exposed as a column in the child table that points at the parent.  Link Attributes – This is a many to many connection in Rochade, so it’s exposed as an intersection table.  Item Name – Exposed as “ ” column.

10 Confidential ODBC May 7, 200710 How do we Expose Rochade as Relational  Qualified Name – Exposed as “ ” column.  Last Update Date and Time – Exposed as “ ”.  Last Update User – Exposed as “ ”.  Create Date and Time – Exposed as “ ”.  Create User – Exposed as “ ”.  Link Qualifier – Exposed as “ ” in the intersection table.

11 Confidential ODBC May 7, 200711 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational  Start with one portion of the Oracle RIM.  Pick item types that have link and namespace attributes.  Pick some of the attributes.

12 Confidential ODBC May 7, 200712 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational  ORA_DATABASE  DEFINITION (text)  DESCRIPTION (text)  ORA_HAS-SCHEMA (namespace)

13 Confidential ODBC May 7, 200713 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational  ORA_USER  DEFINITION (text)  DESCRIPTION (text)  ORA_HAS-TABLE (namespace)  ORA_HAS-INDEX (namespace)

14 Confidential ODBC May 7, 200714 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational  ORA_TABLE  DEFINITION (text)  COMMENT (text)  ORA_INDEX (link)  ORA_HAS-COLUMN (namespace)

15 Confidential ODBC May 7, 200715 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational  ORA_INDEX  DEFINITION (text)  COMMENT (text)  ORA_UNIQUE (text)  ORA_USES-COLUMN (link)

16 Confidential ODBC May 7, 200716 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational  ORA_COLUMN  DEFINITION (text)  DESCRIPTION (text)  ORA_DATATYPE (text)  ORA_NULLS-ALLOWED (text)

17 Confidential ODBC May 7, 200717 Transformation of Oracle RIM to Relational  ORA_COLUMN  DEFINITION (text)  DESCRIPTION (text)  ORA_DATATYPE (text)  ORA_NULLS-ALLOWED (text) Table Name:ORA_COLUMN DEFINITIONDESCRIPTIONORA_NULLS-ALLOWEDORA_DATATYPE Standard derived column names derived column name to support namespace

18 Confidential ODBC May 7, 200718 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational ORA_DATABASE 1 to Many 1 to 1 Legend Create table with same name.

19 Confidential ODBC May 7, 200719 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational ORA_DATABASE 1 to Many 1 to 1 Legend ORA_USER Create table with same name and also add column.

20 Confidential ODBC May 7, 200720 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational ORA_DATABASE 1 to Many 1 to 1 Legend ORA_USER ORA_TABLE <JOIN~ORA_TABLE ~ORA_INDEX ~ORA_INDEX> Create table with same name and also add column.

21 Confidential ODBC May 7, 200721 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational ORA_DATABASE 1 to Many 1 to 1 Legend ORA_USER ORA_TABLE <JOIN~ORA_TABLE ~ORA_INDEX ~ORA_INDEX> Since there’s a link attribute, create intersection table.

22 Confidential ODBC May 7, 200722 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational ORA_DATABASE 1 to Many 1 to 1 Legend ORA_USER ORA_TABLE <JOIN~ORA_TABLE ~ORA_INDEX ~ORA_INDEX> Create table with same name and also add column. ORA_INDEX <JOIN~ORA_INDEX ~ORA_USES-COLUMN ~ORA_COLUMN>

23 Confidential ODBC May 7, 200723 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational ORA_DATABASE 1 to Many 1 to 1 Legend ORA_USER ORA_TABLE <JOIN~ORA_TABLE ~ORA_INDEX ~ORA_INDEX> ORA_INDEX <JOIN~ORA_INDEX ~ORA_USES-COLUMN ~ORA_COLUMN> Since there’s a link attribute, create intersection table.

24 Confidential ODBC May 7, 200724 Link Namespace Legend ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER Transformation of Oracle RIM to Relational ORA_DATABASE ORA_COLUMN ORA_TABLEORA_INDEX ORA_USER 1 to Many 1 to 1 Legend <JOIN~ORA_TABLE ~ORA_INDEX ~ORA_INDEX> <JOIN~ORA_INDEX ~ORA_USES-COLUMN ~ORA_COLUMN> Create table with same name and also add column.

25 Confidential ODBC May 7, 200725 Transformation of Oracle RIM to Relational   - Contains the item ID of the ORA_TABLE table row.  - Contains the item ID of the ORA_INDEX table row.  - Contains the link qualifier text for the link.   - Contains the item ID of the ORA_INDEX table row.  - Contains the item ID of the ORA_COLUMN table row.  - Contains the link qualifier text for the link. What’s the structure of the intersection tables from the previous slide?


Download ppt "Confidential ODBC May 7, 20071 2.0.0 Features What is ODBC? Why Create an ODBC Driver for Rochade? How do we Expose Rochade as Relational Transformation."

Similar presentations


Ads by Google