Skip navigation.

Data Services Developer's Guide

  Previous Next vertical dots separating previous/next from contents/index/pdf Contents View as PDF   Get Adobe Reader

Obtaining Enterprise Metadata

A first step in enabling the data services provided by the BEA Aqualogic Data Services Platform (DSP) is to obtain metadata from physical data available to your application.

Topics in this chapter include:

 


Creating Data Source Metadata

Metadata is simply information about the structure of a data. For example, a list of the tables and columns in a database is metadata.

In DSP, data services are initially derived from metadata extracted from physical data sources. These base data services are often called physical data services.

Figure 3-1 Data Services Available to the RTL Sample Application

Data Services Available to the RTL Sample Application


 

Table 3-2 list the types of sources from which DSP can create metadata.

Table 3-2 Data Sources Available for Creating Data Service Metadata

Data Source Type

Access

Relational (including tables, views, stored procedures, and SQL)

JDBC

Web Services (.wsdl)

URI, UDDI, WSDL

Delimited (.csv)

File-based data such as spreadsheets

Java functions (.java)

Programmatic

XML (.xml)

File- or data stream-based

When information about physical data is developed using the Metadata Import Wizard two things happen:

DSP provides a Metadata Import wizard that introspects available data sources and identifies data objects that can be rendered as data services or functions. Once created, physical data services become the building-blocks for queries and logical data services.

The next sections of this chapter describe how you can use the Metadata Import wizard to create data services from various types of data.

Creating Metadata From Relational Sources

You can create metadata on any relational data source available to the BEA WebLogic Platform. For details see the BEA Platform document entitled How Do I Connect a Database Control to a Database Such as SQL Server or Oracle.

Four types of metadata can be created from a relational data source:

Note: When using an XA transaction driver you need to mark your data source's connection pool to allow LocalTransaction in order for single database reads and updates to succeed.

For additional information in XA transaction adaptor settings see "Developing Adaptors" in BEA WebLogic Integration documentation: http://download.oracle.com/docs/cd/E13214_01/wli/docs81/devadapt/dbmssamp.html

Importing Relational Table and View Metadata

To create metadata on relational tables and views follow these steps:

  1. Select the project in which you want to create your metadata. For example, if you have a project called myLDProject right-click on the project name and select Import Source Metadata... from the pop-up menu. Click Next.
  2. From the available data sources in the Import Wizard select Relational (see Figure 3-3).
  3. Figure 3-3 Selecting a Relational Source from the Import Metadata Wizard

    Selecting a Relational Source from the Import Metadata Wizard


     
  4. Either select a data source from available sources or make a new data source available to the WLS.
  5. Figure 3-4 Import Data Source Metadata Selection Dialog Box

    Import Data Source Metadata Selection Dialog Box


     

Data Object Selection Options

For information on creating a new data source see Creating a New Data Source.

If you choose to select from an existing data source, several options are available (Figure 3-4).

Select All Database Objects

If you choose to select all, a table will appear containing all the tables, views, and stored procedures in your data source organized by catalog and schema.

Filter Data Source Objects

Sometimes you know exactly the objects in your data source that you want to turn into data services. Or your data source may be so large that a filter is needed. Or you may be looking for objects with specific naming characteristics (such as %audit2003%, a string which would retrieve all objects containing the enclosed string).

In such cases you can identify the exact parts of your relational source that you want to become data service candidates using standard JDBC wildcards. An underscore (_) creates a wildcard for an individual character. A percentage sign (%) indicates a wildcard for a string. Entries are case-sensitive.

For example, you could search for all tables starting with CUST with the entry: CUST%. Or, if you had a relational schema called ELECTRONICS, you could enter that term in the Schema field and retrieve all the tables, views, and stored procedure that are a part of that schema.

Another example:

 CUST%, PAY% 

entered in the Tables/Views field retrieves all tables and views starting with either CUST or PAY.

Note: If no items are entered for a particular field, all matching items are retrieved. For example, if no filtering entry is made for the Procedure field, all stored procedures in the data object will be retrieved.

For relational tables and views you should choose either the Select all option or Selected data source objects. For details on stored procedures see Importing Stored Procedure-Based Metadata.

SQL statement

Allows you to enter an SQL statement that is used as the basis for creating a data service. See Using SQL to Import Metadata for details.

Creating a New Data Source

Most often you will work with existing data sources. However, if you choose New... the WLS DataSource Viewer appears (Figure 3-5). Using the DataSource Viewer you can create new data pools and sources.

Figure 3-5 BEA WebLogic Data Source Viewer

BEA WebLogic Data Source Viewer


 

For details on using the DataSource Viewer see Configuring a Data Source in WebLogic Workshop documentation.

Selecting an Existing Data Source

Only data sources that have set up through the BEA WebLogic Administration Console are available to a Data Services Platform application or project. In order for the BEA WebLogic Server used by DSP to access a particular relational data source you need to set up a JDBC connection pool and a JDBC data source.

http://download.oracle.com/docs/cd/E13222_01/wls/docs81/ConsoleHelp/domain_jdbcconnectionpool_config_general.html
http://download.oracle.com/docs/cd/E13222_01/wls/docs81/ConsoleHelp/domain_jdbcdatasource_config.html

Figure 3-6 Selecting a Data Source

Selecting a Data Source


 

Once you have selected a data source, you need to choose how you want to develop your metadata — by selecting all objects in the database, by filtering database objects, or by entering a SQL statement. (see Figure 3-4).

Creating Table- and View-Based Metadata

Once you have selected a data source and any optional filters, a list of available database objects appears.

Figure 3-7 Identifying Database Objects to be Used as Data Services

Identifying Database Objects to be Used as Data Services


 

Using standard dialog commands you can add one or several tables to the list of selected data objects. To deselect a table, select that table in the right-hand column and click Remove.

A Search field is also available. This is useful for data sources which have many objects. Enter a search string, then click Search repeatedly to move through your list.


 
  1. Once you have selected one or several data sources, click Next to verify the location of the to-be-created data services and the names of your new data services.
  2. The imported data summary screen:

    • Lists selected objects by name. You can mouse over the XML type to see the complete path (Figure 3-8).
    • Lists the location of the generated data service in the current application.
    • Identifies any name conflicts. Name conflicts occur when there is an data service of the same name present in the target directory. Any name conflicts are highlighted in red.

    You can edit the file name to clarify the name or to avoid conflicts. Simply click on the name of the file and make any editing changes.

    Alternatively, choose Remove All to return to the initial, nothing-is-selected state.

  3. There are several situations where you will need to change the name of your data service:
    • There already is a data service of the same name in your application.
    • You are trying to create multiple data services with the same name.

    In such cases the name(s) of the data service(s) having name conflicts appear in red. Simply change to a unique name using the built-in line editor.

    Figure 3-8 Relational Source Import Data Summary Screen

    Relational Source Import Data Summary Screen


     
  4. Click Finish. A data service will be created for each object selected. The file extension of the created data services will always be .ds.

Database-specific Considerations

Database vendors variously support database catalogs and schemas. Table 3-9 describes this support for several major vendors.

Table 3-9 Vendor Support for Catalog and Schema Objects

Vendor

Catalog

Schema

Oracle

Does not support catalogs. When specifying database objects, the catalog field should be left blank.

Typically the name of an Oracle user ID.

DB2

If specifying database objects, the catalog field should be left blank.

Schema name corresponds to the catalog owner of the database, such as db2admin.

Sybase

Catalog name is the database name.

Schema name corresponds to the database owner.

Microsoft SQL Server

Catalog name is the database name.

Schema name corresponds to the catalog owner, such as dbo. The schema name must match the catalog or database owner for the database to which you are connected.

Informix

Does not support catalogs. If specifying database objects, the catalog field should be left blank.

Not needed.

PointBase

Pointbase database systems do not support catalogs. If specifying database objects, the catalog field should be left blank.

Schema name corresponds to a database name.

XML Name Conversion Considerations

When a source name is encountered that does not fit within XML naming conventions, default generated names are converted according to rules described by the SQLX standard. Generally speaking, an invalid XML name character is replaced by its hexadecimal escape sequence (having the form _xUUUU_).

For additional details see section 9.1 of the W3C draft version of this standard:

http://www.sqlx.org/SQL-XML-documents/5WD-14-XML-2003-12.pdf 

Once you have created your data services you are ready to start constructing logical views on your physical data. See Using Data Services Design View. and Modeling Data Services.

Importing Stored Procedure-Based Metadata

Enterprise databases utilize stored procedures to improve query performance, manage and schedule data operations, enhance security, and so forth. You can import metadata based on stored procedures. Each stored procedure becomes a data service.

Note: Refer to your database documentation for details on managing stored procedures.

Stored procedures are essentially database objects that logically group a set of SQL and native database programming language statements together to perform a specific task.

Table 3-10 defines some commonly used terms as they apply to this discussion of stored procedures.

Table 3-10 Terms Commonly Used When Discussing Stored Procedures

Term

Usage

Function

A function is identical to a procedure except a function always return one or more values to the caller and a procedure never returns a value. The value can be a simple type, a row type, or a complex user defined type.

Package

A package is a group of related procedures and functions, together with the cursors and variables they use, stored together in a database for continued use as a unit. Similar to standalone procedures and functions, packaged procedures and functions can be called explicitly by applications or users.

Procedure

A sequence of programming commands written in an extended SQL (such as PL/SQL or T-SQL) or Java, stored in the database where it is to be used to maximize performance and enhance security. The application can call the stored procedure to fetch or manipulate database records, rather than using code outside the database to get the same results. Procedures do not return values.

Stored procedure

The term stored procedure is used when referring to a procedure, function, or package.

Rowset

The set of rows returned by a procedure or query.

Result set

JDBC term for rowset.

Parameter mode

Procedures can have three modes: IN, OUT, and INOUT. There roughly correspond to "write", "read", and "read/write".

Importing Stored Procedures Using the Metadata Import Wizard

The initial three steps for importing stored procedures are the same as importing any relational metadata (described under Importing Relational Table and View Metadata).

Note: Examples in this section use an Oracle database containing a large number of stored procedures.

Relational Source Import Data Summary Screen

You can select any combination of database tables, views, and stored procedures. If you select one or several stored procedures, the Metadata Import Wizard will guide you through the additional steps required to turn a stored procedure into a data service. These steps are:


 
  1. Select one or several stored procedures. A data service can represent only one stored procedure. In other words, if you have five stored procedures, you will create five data services.
  2. Figure 3-11 Selecting Stored Procedure Database Objects to Import

    Selecting Stored Procedure Database Objects to Import


     
  3. Click Next after you have added the database objects that you want to become data services.
  4. You next need to select, then configure each stored procedure. If your stored procedure has an OUT parameter requiring a complex element, you may need to provide a schema.
  5. Figure 3-12 Configuring a Stored Procedure in Pre-editing Mode

    Configuring a Stored Procedure in Pre-editing Mode


     

    Data objects in the stored procedure that cannot be identified by the Metadata Import wizard will appear in red, without a datatype (Figure 3-12). In such cases you need to enter Edit mode (click the Edit button) to identify the data type.

    Your goal in correcting an error condition associated with a stored procedure is to bring the metadata obtained by the import wizard into conformance with the actual metadata of the stored procedure. In some cases this will be correcting the location of the return type. In others you will need to adjust the type associated with an element of the procedure or add elements that would not found during the initial introspection of the stored procedure.

    Figure 3-13 Stored Procedure in Editing Mode (with Callouts)

    Stored Procedure in Editing Mode (with Callouts)


     

The Edit Procedure dialog allows you to:

  1. Select a stored procedure from the complete list of stored procedures that you want to turn into data services.
  2. Edit stored procedure parameters including setting mode (in, out, inout), type, and for out parameters, schema location.
  3. Verify and, if necessary, add, remove, or change the order of parameters.
  4. Verify and, if necessary, add, remove, or change any editable rowset.
  5. Supply a return type (either simple or complex through identifying a schema location) in cases the Metadata Import wizard was unable to determine the type.
  6. Accept or cancel your changes.

You need to complete information for each selected stored procedure before you can create your data services. In particular, any procedures shown in red must be addressed.

Details for each section of the procedure import dialog box appear below.

Procedure Profile

Each element in a stored procedure is associated with a type. If the item is a simple type, you can simply choose from the pop-up list of types.

Figure 3-14 Changing the Type of an Element in a Stored Procedure

Changing the Type of an Element in a Stored Procedure


 

If the type is complex, you may need to supply an appropriate schema. Click on the schema location button and either enter a schema path name or browse to a schema. The schema must reside in your application.

After selecting a schema, both the path to the schema file and the URI appear. For example:

{http://temp.openuri.org/schemas/Customer.xsd}CUSTOMER

Procedure Parameters

The Metadata Import wizard, working through JDBC, identifies any stored procedure parameters. This includes the name, mode (input [in], output [out], or bidirectional [inout]) and data type. The out mode supports the inclusion of a schema.

Complex type is only supported under three conditions:

All parameters are editable, including the name.

Note: If you make an incorrect choice you can use the Previous, then Next button to return the dialog to its initial state.

Editable Rowsets

Not all databases support rowsets. In addition, JDBC does not report information related to defined rowsets. In order to create data services from stored procedures that use rowset information, supply the correct ordinal (matching number) and a schema. If the schema has multiple global elements, you can select the one you want from the Type column. Otherwise the type will be the first global element in your schema file.

The order of rowset information is significant; it must match the order in your data source. Use the Move Up / Move Down commands to adjust the ordinal number assigned to the rowset.

Complete the importation of your procedures by reviewing and accepting items in the Summary screen (see step 4. in Importing Relational Table and View Metadata for details).

Note: XML types in data services generated from stored procedures do not display native types. However, you can view the native type in the Source View pragma (see Using Source View).

Stored Procedure Data Service and Schema Files

Imported stored procedure metadata is quite similar to imported metadata for relational tables and views.

Note: If a stored procedure has only one return value and the value is either simple type or a RowSet which is mapping to an existing schema, no schema file created.

Handling Stored Procedure Rowsets

A rowset type is a complex type. The name of the rowset type can be:

The rowset type contains a sequence of a repeatable elements (for example called CUSTOMER) with the fields of the rowset.

Note: All rowset-type definitions must conform to this structure.

In some cases the Metadata Import wizard can automatically detect the structure of a rowset and create an element structure. However, if the structure is unknown, you will need to provide it through the wizard.

Stored Procedure Support for Commonly Used Databases

Each database vendor approaches stored procedures differently. XQuery support limitations are, in general, due to JDBC driver limitations.

General Restriction

DSP does not support rowset as an input parameter.

Oracle Stored Procedure Support

Table 3-15 summarizes DSP support for Oracle database procedures.

Table 3-15 Support for Oracle Store Procedures

Term

Usage

Procedure types

  • Procedures

  • Functions

  • Packages

Parameter modes

  • Input only

  • Output only

  • Input/Output

Parameter data types

Any Oracle PL/SQL data type except those listed below:

  • ROWID

  • UROWID

Note: When defining function signatures, note that the Oracle %TYPE and %ROWTYPE types must be translated to XQuery types that match the true types underlying the stored procedure's %TYPE and %ROWTYPE declarations. %TYPE declarations map to simple types; %ROWTYPE declarations map to rowset types.

For a list of database types supported by DSP see Relational Data Types-to-Metadata Conversion.

Data returned from a function

Oracle supports returning PL/SQL data types such as NUMBER, VARCHAR, %TYPE, and %ROWTYPE as parameters.

Limitations

The following identifies limitations associated with importing Oracle database procedure metadata.

  • The Metadata Import wizard can only detect the data structure for cursors that have a binding PL/SQL record. For a dynamic cursor you need to manually specify the cursor schema.

  • Data from a PL/SQL record structure cannot be retrieved due to Oracle JDBC driver limitations.

  • The Oracle JDBC driver supports rowset output parameters only if they are defined as reference cursors in a package.

  • The Oracle JDBC driver does not support NATURALN and POSITIVEN as output only parameters.

Sybase Stored Procedure Support

Table 3-16 summarizes DSP support for Sybase SQL Server database procedures.

Table 3-16 Support for Sybase Stored Procedures

Term

Usage

Procedure types

  • Procedures

  • Grouped procedures

  • Functions

Functions are categorized as a scalar or inline table-valued and multi-statement table-valued function. Inline table-valued and multi-statement table-valued functions return rowsets.

Parameter modes

  • Input only

  • Output only

Parameter data types

For the complete list of database types supported by DSP see Relational Data Types-to-Metadata Conversion.

Data returned from a function

Sybase functions supports returning a single value or a table.

Procedures return data in the following ways:

  • As output parameters, which can return either data (such as an integer or character value) or a cursor variable (cursors are rowsets that can be retrieved one row at a time).

  • As return codes, which are always an integer value.

  • As a rowset for each SELECT statement contained in the stored procedure or any other stored procedures called by that stored procedure.

  • As a global cursor that can be referenced outside the stored procedure supports, returning single value or multiple values.

Limitations

The following identifies limitations associated with importing Sybase database procedure metadata:

  • The Sybase JDBC driver does not support input/output or output only parameters that are rowsets (including cursor variables).

  • The Jconnect driver and some versions of the BEA Sybase driver cannot detect the parameter mode of the procedure. In this case, the return mode will be UNKNOWN, preventing importation of the metadata. To proceed, you need to set the correct mode in order to proceed.

  • Only data types generally supported by DSP metadata import can be imported as part of stored procedures.

IBM DB2 Stored Procedure Support

Table 3-17 summarizes DSP support for IBM DB2 database procedures.

Table 3-17 Support for IBM Store Procedures

Term

Usage

Procedure types

  • Procedures

  • Functions

  • Packages

Each function is also categorized as a scalar, column, row, or table function.

Here are additional details on function categorization:

  • A scalar function is one that returns a single-valued answer each time it is called.

  • A column function is one which conceptually is passed a set of like values (a column) and returns a single-valued answer (AVG( )).

  • A row function is a function that returns one row of values.

  • A table function is function that returns a table to the SQL statement that referenced it.

Parameter modes

  • Input only

  • Output only

  • Input/output

Parameter data types

For the complete list of database types supported by DSP see Relational Data Types-to-Metadata Conversion.

Data returned from a function

DB2 supports returning a single value, a row of values, or a table.

Limitations

The following identifies limitations associated with importing DB2 database procedure metadata:

  • Column type functions are not supported.

  • Rowsets as output parameters are not supported.

  • The DB2 JDBC driver supports float, double, and decimal input only and output only parameters.

Float, double, and decimal data types are not supported as input/output parameters.

  • Only data types generally supported by DSP metadata import can be imported as part of stored procedures.

Informix Stored Procedure Support

Table 3-18 summarizes DSP support for Informix database stored procedures.

Table 3-18 Support for Informix Stored Procedures

Term

Usage

Procedure types

  • Procedures

  • Functions

A function may return more than one value.

Parameter modes

  • Input only

  • Output only

  • Input/output

Parameter data types

For the complete list of database types supported by DSP see Relational Data Types-to-Metadata Conversion.

Data returned from a function

Informix supports returning single value, multiple values, and rowsets.

Limitations

Informix treats return value(s) from functions or procedures as a rowset. For this reason a rowset needs to be defined for the return value(s).

The following limitations have been identified:

Informix Native Driver Limitations

  • All parameter names are missing; instead in the Metadata Import wizard parameters are assigned the same system-generated name:

RETURN VALUE

  • All return values are reported as parameters with mode return instead of mode result. This leads to a problem since only the first parameter should be in mode return. This also causes a runtime failure. The workaround is to get the value(s) using resultset.

BEA WebLogic Driver Limitations

  • Input parameter names and return values are reported as result mode. Since there is no name declared for those return values insider the procedure, their corresponding parameters have no name either. The problem is that this does not model "result" parameters as a group; thus result parameters are likely to repeat as multiple rows. (Unlike the Oracle cursor which has the cursor itself as an outer parameter, there is no holder for Informix result parameters.)

Recommendations

Due to the limitations described above, the following approach is suggested for importing Informix stored procedure metadata:

    1. Use the BEA WebLogic driver wherever possible.

    2. Define a schema that matches the return value structure (using the same approach as external schemas for other databases).

    3. In the Metadata Import wizard's stored procedure section, remove all the parameters in the Result section using Edit mode. Add a result parameter and associate it with the schema defined in step 2. (If you are using the Informix native driver assign a proper name for the input parameters.)

    4. Manually edit the parameter's section of the generated data service file.

Microsoft SQL Server Stored Procedure Support

Table 3-19 summarizes DSP support for Microsoft SQL Server database procedures.

Table 3-19 DSP Support for Microsoft SQL Server Stored Procedures

Term

Usage

Procedure types

SQL Server supports procedures, grouped procedures, and functions. Each function is also categorized as a scalar or inline table-valued and multi-statement table-valued function.

Inline table-valued and multi-statement table-valued functions return rowsets.

Parameter modes

SQL Server supports input only and output only parameters.

Parameter data types

SQL Server procedures/functions support any SQL Server data type as a parameter.

Data returned from a function

SQL Server functions supports returning a single value or a table.

Data can be returned in the following ways:

  • As output parameters, which can return either data (such as an integer or character value) or a cursor variable (cursors are rowsets that can be retrieved one row at a time).

  • As return codes, which are always an integer value.

  • As a rowset for each SELECT statement contained in the stored procedure or any other stored procedures called by that stored procedure.

Limitations

The following identifies limitations associated with importing SQL Server procedure metadata.

  • Result sets returned from SQL server (as well as those returned from Sybase) are not detected automatically. Instead you will need to manually add parameters as a result.

  • The Microsoft SQL Server JDBC driver does not support rowset input/output or output only parameters (including cursor variables).

  • Only data types generally supported by DSP metadata import can be imported as part of stored procedures.

Using SQL to Import Metadata

One of the relational import metadata options (see Figure 3-4) is to use an SQL statement to customize introspection of a data source. If you select this option the SQL Statement dialog appears.

Figure 3-20 SQL Statement Dialog Box

SQL Statement Dialog Box


 

You can type or paste your SELECT statement into the statement box (Figure 3-20), indicating parameters with a "?" question-mark symbol. Using one of the DSP data samples, the following SELECT statement can be used:

SELECT * FROM RTLCUSTOMER.CUSTOMER WHERE CUSTOMER_ID = ?

RTLCUSTOMER is a schema in the data source, CUSTOMER is, in this case, a table.

For the parameter field, you would need to select a data type. In this case, CHAR or VARCHAR.

The next step is to assign a data service name.

When you run your query under Test View, you will need to supply the parameter in order for the query to run successfully.

Once you have entered your SQL statement and any required parameters click Next to change or verify the name and location of your new data service.

SQL Statement Dialog Box

Figure 3-21 Relational SQL Statement Imported Data Summary Screen

Relational SQL Statement Imported Data Summary Screen


 

The imported data summary screen identifies a proposed name for your new data service.

The final steps are no different than you used to create a data service from a table or view.

Relational Data Types-to-Metadata Conversion

The following table shows how data types provided by various relational databases are converted into XQuery data types. Types are listed in alphabetical order.

Table 3-22 Relational Data Types and Their XQuery Counterparts

Datatype Name

XQuery Equivalent

Oracle

IBM DB2

Sybase

Informix

Microsoft SQL Server

Pointbase

ARRAY

not supported

x

BFILE

not supported

x

BIGINT

xs:long

x

x

x

BINARY

xs:hexBinary

x

x

BIT

xs:boolean

x

x

BLOB

xs:hexBinary

x

x

x

x

BOOLEAN

xs:Boolean

x

x

BYTE

xs:hexBinary

x

CHAR

xs:string

x

x

x

x

x

x

CHAR() FOR BIT DATA

xs:hexBinary

x

CLOB

xs:string

x

x

x

x

DATE

xs:date

x

x

DATE

xs:datetime

x

DATETIME

xs:datetime

x

x

x

DECIMAL{n, s}
s>0

xs:decimal

x

x

x

x

x

DECIMAL{n}

xs:integer

x

x

x

x

x

DOUBLE

xs:double

x

DOUBLE PRECISION

xs:double

x

x

FLOAT

xs:double

x

x

x

x

x

x

IMAGE

xs:hexBinary

x

x

INT

xs:int

x

x

INT8

xs:long

x

INTEGER

xs:int

x

x

x

INTERVAL

not supported

x

INTERVALDS

xdt:dayTimeduration

x

INTERVALYM

xdt:yearMonthduration

x

LONG

xs:string

x

LONG RAW

xs:hexBinary

x

LONG VARCHAR

xs:string

x

LONG VARCHAR FOR BIT DATA

xs:hexBinary

x

LVARCHAR

xs:string

x

MONEY

xs:decimal

x

x

x

MSLABEL

not supported

x

NCHAR

xs:string

x

x

x

x

NTEXT

xs:string

x

NUMBER

xs:double

x

NUMBER{n, s} s<0

xs:integer

x

NUMBER{n, s} s>0

xs:decimal

x

NUMBER{n}

xs:integer

x

NUMERIC{n, s}
s>0

xs:decimal

x

x

x

x

NUMERIC{n}

xs:decimal

x

x

x

x

NVARCHAR

xs:string

x

x

x

NVARCHAR2

xs:string

x

RAW

xs:hexBinary

x

REAL

xs:float

x

x

x

x

REF

not supported

x

ROWID

xs:string

x

SERIAL

not supported

x

SERIAL8

not supported

x

SMALLDATETIME

xs:datetime

x

x

SMALLFLOAT

xs:float

x

SMALLINT

xs:short

x

x

x

x

x

SMALLMONEY

xs:decimal

x

x

SQL_VARIANT

xs:string

x

STRUCT

not supported

x

SYSNAME

xs:string

x

x

TEXT

xs:string

x

x

x

TIME

xs:time

x

x

TIMESTAMP

xs:datetime

x

x

x

TIMESTAMP

xs:hexBinary

x

TIMESTAMP WITH LOCAL TIME ZONE

xs:datetime

x

TIMESTAMP WITH TIME ZONE

xs:datetime

x

TINYINT

xs:short

x

x

UNIQUEIDENTIFIER

xs:hexbinary

x

UROWID

xs:string

x

VARBINARY

xs:hexBinary

x

x

VARCHAR

xs:string

x

x

x

x

x

VARCHAR() FOR BIT DATA

xs:hexBinary

x

VARCHAR2

xs:string

x

Importing Web Services Metadata

A web service is a self-contained, platform-independent unit of business logic that is accessible through application adaptors, as well as standards-based Internet protocols such as HTTP or SOAP.

Web services facilitate application-to-application communication and, as such, are increasingly important enterprise data resources. A familiar example of an externalized web service is a frequent-update weather portlet or stock quotes portlet that can easily be integrated into a Web application.

Turning a web service into a data service is similar to importing relational data source metadata (see Importing Relational Table and View Metadata). Here are the web service-specific steps involved:

  1. Select the DSP-based project in which you want to create your web service metadata. For example, if you have a project called DataServices right-click on the project name and select Import Metadata... from the pop-up menu.
  2. From the available data sources in the Metadata Import wizard select Web Service and click Next.
  3. There are three ways to access a web service:
    • From a web service description language (WSDL) file that is in your current application.
    • From a URI which is a WSDL accessible via a URL (HTTP).
    • From a Universal Description, Discovery, and Integration service (UDDI).
    • Figure 3-23 Locating a Web Service

      Locating a Web Service


       

Note: For the purpose of showing how to import web service metadata a WSDL file from the RTLApp sample is used for the remaining steps. If you are following these instructions locate ElecDBTestContract.wsdl. It is found in the ElecWS folder of the RTLApp application.

<beahome>\weblogic81\samples\liquiddata\RTLApp\ElecWS\controls\
ElecDBTestContract.wsdl

Figure 3-24 Selecting a Web Service WSDL File

Selecting a Web Service WSDL File


 
  1. From the selected web service choose the operations that you want to turn into data services.
  2. Figure 3-25 Identifying Web Service Operations to be Used as data services

    Identifying Web Service Operations to be Used as data services


     


     

    Using standard dialog editing commands you can select one or several operations to be added to the list of selected web service operations. To deselect an operation, click on it, then click Remove. Or choose Remove All to return to the initial state.


     
  3. Click Next to verify the location of the to-be-created data services and their names.
  4. Figure 3-26 Web Services Imported Data Summary Screen

    Web Services Imported Data Summary Screen


     

    The screen in Figure 3-26:

    • Lists the web service operations you have selected.
    • Lists the target location for the generated services.
    • Identifies in red any name conflicts with data services in the same location.

    You can edit the data service name either to clarify the name or to avoid conflicts with other existing or planned data services. Simply click on the name of the data service to change its name.

  5. Click Finish. A data service will be created for each selected operation.

Web Services Imported Data Summary Screen

Testing the Metadata Import Wizard With a Web Service URI

If you are interested in testing the Metadata Import wizard with a web service URI, the following URI is available as of this writing:

http://ws.strikeiron.cmo/DataEnhancement?WSDL

Simply copy the above string into the Web Service URI field and click Next to begin selecting elements you want to turn into data services.

Importing Java Function Metadata

You can create metadata based on custom Java functions. When you use the Metadata Import wizard to introspect a .class file, metadata is created around both complex and simple types. Complex types become data services while simple Java routines are converted into XQueries and placed in an XQuery function library (XFL). In Source View (see Using Source View) a pragma is created that defines the function signature and relevant schema type for complex types such as Java classes and elements.

In the RTLApp DataServices/Demo directory there is a sample that can be used to illustrate Java function metadata import.

Web Services Imported Data Summary Screen

Supported Java Function Types

Your Java file can contains two types of functions:

Types of Java Functions

Use in Data Services Platform

Functions processing primitive types or arrays of primitive types

Grouped into an XQuery Function Library file, callable by any data service in the same application.

Functions processing complex types or arrays of complex types

Grouped into a data services, using XMLBean Java-to-XML technology.

Before you can create metadata on a custom Java function you must create a Java class containing both schema and function information. A detailed example is described in Creating XMLBean Support for Java Functions.

Using the Import Wizard on a Java Function

Importing Java function metadata is similar to importing relational data source metadata (see Importing Relational Table and View Metadata). Here are the Java function-specific steps involved:

  1. Select the DSP-based project in which you want to create your Java function metadata. (In the DataServices project of the RTLApp there is a special Demo folder containing XML, CSV and Java data and schema samples.)
  2. Build your project to validate its contents. A build will create a .class file from your .java function and place it in your application's library.
  3. Right-click on the Java folder and select Import Source Metadata from the pop-up menu.
  4. From the available data sources in the Metadata Import wizard select Java Function (see Figure 3-27). Click Next.
  5. Figure 3-27 Selecting a Java Function as the Data Source

    Selecting a Java Function as the Data Source


     
  6. Your Java .class file must be in your BEA WebLogic application. You can browse to your file or enter a fully-qualified path name starting from the root directory of your DSP-based project.
  7. Figure 3-28 Specifying a Java Class File for Metadata Import

    Specifying a Java Class File for Metadata Import


     
  8. Click Next to verify the name and location of your new data service.
  9. Figure 3-29 Java Function Imported Data Summary Screen

    Java Function Imported Data Summary Screen


     


     

    You can edit the proposed data service name either for clarity or to avoid conflicts with other existing or planned data services. All functions returning complex data types will be in the same data service. Simply click on the proposed data service name to change it.

  10. Click Finish.

Note: If your Java function contained any simple routines, these will be placed in an XML File Library.

Creating XMLBean Support for Java Functions

Before you can import Java function metadata, you need to create a .class file that contains XMLBean classes based on global elements and compiled versions of your Java functions. To do this, you first create XMLBean classes based on a schema of your data. There are several ways to accomplish this. In the example in this section you create a WebLogic Workshop project of type Schema.

Generally speaking, the process involves:

Creating a Metadata-enriched Java Class: An Example

In the following example there are a number of custom functions in a .java file called FuncData.java. In the RTLApp this file can be found at:

ld:DataServices/Demo/Java/FuncData.java

Some functions in this file return primitive data types, while others return a complex element. The complex element representing the data to be introspected is in a schema file called FuncData.xsd.

File

Purpose

FuncData.java

Contains Java functions to be converted into data service query functions. Also contains as small data sample.

FuncData.xsd

Contains a schema for the complex element identified in FuncData.java

The schema file can be found at:

ld:DataServices/Demo/Java/schema/FuncData.xsd

To simplify the example a small data set is included in the .java file as a string.

The following steps will create a data service from the Java functions in FuncData.java:

  1. Create a new DSP-based application called CustomFunctions.
  2. Create a new project of type Schema in your application; name it Schemas.
  3. Right-click on the newly created Schemas project and select the Import... option.
  4. Browse to the RTLApp and select FuncData.xsd for import.
  5. Importing a schema file into a schema project automatically starts the project build process.

    When successful, XMLBean classes are created for each function in your Java file and placed in a JAR file called JavaFunctSchema.jar

    The .jar file is located in the Libraries section of your application.

  6. Build your project.
  7. In your DSP-based project (customFunctionsDataServices) create a folder called JavaFuncMetadata.
  8. Right-click on the newly created JavaFuncMetadata folder and select the Import... option.
  9. Browse to the ld:DataServices/Demo/Java folder in the RTLApp and select FuncData.java for import. Click Import.
  10. Build your project.
  11. The JAR file named for your DSP-based project is updated to include a.class file named FuncData.class; It is this file that can be introspected by the Metadata Import wizard. The file is located in a folder named JavaFuncMetadata in the Library section of your application.

    Figure 3-30 Class File Generated Java Function XML Beans

    Class File Generated Java Function XML Beans


     
  12. Now you are ready to create metadata from your Java function. Right-click on your DSP-based project icon (customFunctionsDataServices) and select Import Source Metadata.
  13. Select Java Function as the data source, click Next.
  14. Browse to your Java class file FuncData.class (dialog box is shown in Figure 3-28).
  15. The file is located in customFunctionsDataServices.jar (the fully-qualified name is customFunctionsDataServices.FuncData.class).

    Click Open, then Next.

    Figure 3-31 Java Function Imported Data Summary Screen

    Java Function Imported Data Summary Screen


     

Of the Java functions available to be imported in Figure 3-31 getAllProducts and getFirstProduct are complex elements. The remaining simple Java functions represent either Java primitives or Java object primitives and will be placed in an .xfl file.

  1. Once you've selected your functions click Next to verify that the name of your new data service is unique to your application.
  2. Figure 3-32 Java Function Import Summary Screen

    Java Function Import Summary Screen


     


     

You can edit the projected data service name for clarity or to avoid conflicts with other existing or planned data services. Conflicts are shown in red. Simply click on the name of the data service to change its name. You can also change the name of your library, as has been done in the Summary page shown in Figure 3-32.

When ready, click Finish to create your data service and library file. (See also XQuery Function Library (XFL) Files.)

Looking at Source

The .java file used in this example contains both functions and data. More typically, your routine will access data through a data import function. The first function in Listing 3-1 simply retrieves the first element in an array of PRODUCTS. The second returns the entire array.

Listing 3-1 JavaFunc.java getFirstPRODUCT() and getAllPRODUCTS() Functions

public class JavaFunc {

...

public static noNamespace.PRODUCTSDocument.PRODUCTS getFirstProduct(){
noNamespace.PRODUCTSDocument.PRODUCTS products = null;
try{
noNamespace.DbDocument dbDoc = noNamespace.DbDocument.Factory.parse(testCustomer);
products = dbDoc.getDb().getPRODUCTSArray(1);
//return products;
}catch(Exception e){
e.printStackTrace();
}
return products;
}

public static noNamespace.PRODUCTSDocument.PRODUCTS[] getAllProducts(){
noNamespace.PRODUCTSDocument.PRODUCTS[] products = null;
try{
noNamespace.DbDocument dbDoc = noNamespace.DbDocument.Factory.parse(testCustomer);
products = dbDoc.getDb().getPRODUCTSArray();
//return products;
}catch(Exception e){
e.printStackTrace();
}
return products;
}
}

The schema used to create XMLBeans is shown in Listing 3-2. It simply models the structure of the complex element; it could have been obtained by first introspecting the data directly.

Listing 3-2 B-PTest.xsd Model Complex Element Parsed by Java Function

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="db">
<xs:complexType>
<xs:sequence>
<xs:element ref="PRODUCTS" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AVERAGE_SERVICE_COST" type="xs:decimal"/>
<xs:element name="LIST_PRICE" type="xs:decimal"/>
<xs:element name="MANUFACTURER" type="xs:string"/>
<xs:element name="PRODUCTS">
<xs:complexType>
<xs:sequence>
<xs:element ref="PRODUCT_NAME"/>
<xs:element ref="MANUFACTURER"/>
<xs:element ref="LIST_PRICE"/>
<xs:element ref="PRODUCT_DESCRIPTION"/>
<xs:element ref="AVERAGE_SERVICE_COST"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PRODUCT_DESCRIPTION" type="xs:string"/>
<xs:element name="PRODUCT_NAME" type="xs:string"/>
</xs:schema>

Java functions require that an element returned (as specified in the return signature) come from a valid XML document. A valid XML document has a single root element with zero or more children, and its content matches the schema referred.

Listing 3-3 Approach When Data is Retrieved Through a Document

	public static noNamespace.PRODUCTSDocument.PRODUCTS getNextProduct(){

// create the dbDocument (the root)
noNamespace.DbDocument dbDoc = noNamespace.DbDocument.Factory.newInstance();
// the db element from it
noNamespace.DbDocument.Db db = dbDoc.addNewDb();
// get the PRODUCTS element
PRODUCTS product = db.addNewPRODUCTS();
//.. create the children
product.setPRODUCTNAME("productName");
product.setMANUFACTURER("Manufacturer");
product.setLISTPRICE(BigDecimal.valueOf((long)12.22));
product.setPRODUCTDESCRIPTION("Product Description");
product.setAVERAGESERVICECOST(BigDecimal.valueOf((long)122.22));

// .. update children of db
db.setPRODUCTSArray(0,product);

// .. update the document with db
dbDoc.setDb(db);

//.. now dbDoc is a valid document with db and is children.
// we are interested in PRODUCTS which is a child of db.
// Hence always create a valid document before processing the
children.
// Just creating the child element and returning it, is not
// enough, since it does not mean the document is valid.
// The child needs to come from a valid document, which is created
// for the global element only.

return dbDoc.getDb().getPRODUCTSArray(0);

}

How Metadata for Java Functions Is Created

In DSP, user-defined functions are typically Java classes. The following are supported:

In order to support this functionality, the Metadata Import wizard supports marshalling and unmarshalling so that token iterators in Java are converted to XML and vice-versa.

Functions you create should be defined as static Java functions. The Java method name when used in an XQuery will be the XQuery function name qualified with a namespace.

Table 3-33 shows the casting algorithms for simple Java types, schema types and XQuery types.

Table 3-33 Simple Java Types and XQuery Counterparts

Java Simple or Defined Type

Schema Type

boolean

xs:boolean

byte

xs:byte

char

xs:char

double

xs:double

float

xs:float

int

xs:int

long

xs:long

short

xs:short

string

xd:string

java.lang.Date

xs:datetime

java.lang.Boolean

xs:boolean

java.math.BigInteger

xs:integer

java.math.BigDecimal

xs:decimal

java.lang.Byte

xs.byte

java.lang.Char

xs:char

java.lang.Double

xs:double

java.lang.Float

xs:float

java.lang.Integer

xs:integer

java.lang.Long

xs:long

java.lang.Short

xs:short

java.util.Calendar

xs:datetime

java.sql.timestamp

xs:datetime

Java functions can also consume variables of XMLBean type that are generated by processing a schema via XMLBeans. The classes generated by XMLBeans can be referred in a Java function as parameters or return types.

The elements or types referred to in the schema should be global elements because these are the only types in XMLBeans that have static parse methods defined.

The next section provides additional code samples that illustrate how Java functions are used by the Metadata Import wizard to create data services.

Technical Details, with Additional Example Code

In order to create data services or members of an XQuery function library, you would first start with a Java function.

Processing a Function Returning an Array of Java Primitives

As an example, the Java function getListGivenMixed( ) can be defined as:

public static float[] getListGivenMixed(float[] fpList, int size) { 
int listLen = ((fpList.length > size) ? size : fpList.length);
float fpListop = new float[listLen];
for (int i =0; i < listLen; i++)
fpListop[i]=fpList[i];
return fpListop;
}

After the function is processed through the wizard the following metadata information is created:

xquery version "1.0" encoding "WINDOWS-1252";

(::pragma xfl <x:xfl xmlns:x="urn:annotations.ld.bea.com">
<creationDate>2005-06-01T14:25:50</creationDate>
<javaFunction class="DocTest"/>
</x:xfl>::)

declare namespace f1 = "lib:testdoc/library";

(::pragma function <f:function xmlns:f="urn:annotations.ld.bea.com" nativeName="getListGivenMixed">
<params>
<param nativeType="[F"/>
<param nativeType="int"/>
</params>
</f:function>::)

declare function f1:getListGivenMixed($x1 as xsd:float*, $x2 as xsd:int) as xsd:float* external;

Here is the corresponding XQuery for executing the above function:

declare namespace f1 = "ld:javaFunc/float"; 
let $y := (2.0, 4.0, 6.0, 8.0, 10.0)
let $x := f1:getListGivenMixed($y, 2)
return $x

Processing complex types represented via XMLBeans

Consider that you have a schema called Customer (customer.xsd), as shown below:

<?xml version="1.0" encoding="UTF-8" ?> 
<xs:schema targetNamespace="ld:xml/cust:/BEA_BB10000" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="CUSTOMER">
<xs:complexType>
<xs:sequence>
<xs:element name="FIRST_NAME" type="xs:string" minOccurs="1"/>
<xs:element name="LAST_NAME" type="xs:string" minOccurs="1"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

If you want to generate a list conforming to the CUSTOMER element you could process the schema via XMLBeans and obtain xml.cust.beaBB10000.CUSTOMERDocument.CUSTOMER. Now you can use the CUSTOMER element as shown:

public static xml.cust.beaBB10000.CUSTOMERDocument.CUSTOMER[] 
getCustomerListGivenCustomerList(
xml.cust.beaBB10000.CUSTOMERDocument.CUSTOMER[] ipListOfCust)
throws XmlException {
xml.cust.beaBB10000.CUSTOMERDocument.CUSTOMER [] mylocalver =
ipListOfCust;
return mylocalver;
}

Then the metadata information produced by the wizard will be:

(::pragma function <f:function xmlns:f="urn:annotations.ld.bea.com" kind="datasource" access="public"> 
<params>
<param nativeType="[Lxml.cust.beaBB10000.CUSTOMERDocument$CUSTOMER;"/>
</params>
</f:function>::)

declare function f1:getCustomerListGivenCustomerList($x1 as element(t1:CUSTOMER)*) as element(t1:CUSTOMER)* external;

The corresponding XQuery for executing the above function is:

declare namespace f1 = "ld:javaFunc/CUSTOMER"; 
let $z := ( 
validate(<n:CUSTOMER xmlns:n="ld:xml/cust:/BEA_BB10000"><FIRST_NAME>John2</FIRST_NAME><LAST_NAME>Smith2</LAST_NAME> 
</n:CUSTOMER>), 
validate(<n:CUSTOMER xmlns:n="ld:xml/cust:/BEA_BB10000"><FIRST_NAME>John2</FIRST_NAME><LAST_NAME>Smith2</LAST_NAME> 
</n:CUSTOMER>), 
validate(<n:CUSTOMER xmlns:n="ld:xml/cust:/BEA_BB10000"><FIRST_NAME>John2</FIRST_NAME><LAST_NAME>Smith2</LAST_NAME> 
</n:CUSTOMER>), 
validate(<n:CUSTOMER xmlns:n="ld:xml/cust:/BEA_BB10000"><FIRST_NAME>John2</FIRST_NAME><LAST_NAME>Smith2</LAST_NAME> 
</n:CUSTOMER>)) 
for $zz in $z 
return
f1:getCustomerListGivenCustomerList($z)

Restrictions on Java Functions

The following restrictions apply to Java functions:

Importing Delimited File Metadata

Spreadsheets offer a highly adaptable means of storing and manipulating information, especially information which needs to be changed quickly. You can easily turn such spreadsheet data in a data services.

Spreadsheet documents are often referred to as.csv files, standing for comma-separated values. Although .csv is not a typical native format for spreadsheets, the capability to save spreadsheets as .csv files is nearly universal.

Although the separator field is often a comma, the metadata import wizard supports any ASCII character as a separator, as well as fixed-length fields.

In the RTLApp DataServices/Demo directory there is a sample that can be used to illustrate delimited file metadata import.

Java Function Import Summary Screen

Providing a Document Name, a Schema Name, or Both

There are several approaches to developing metadata around delimited information, depending on your needs and the nature of the source.

Using the Metadata Import Wizard on Delimited Files

Importing XML file information is similar to importing a relational data source metadata (see Importing Relational Table and View Metadata). Here are the steps that are involved:

  1. Select the project in which you want to create your delimited file metadata. For example, if you have a project called myProject right-click on the project name and select Import Source Metadata from the pop-up menu.
  2. From the available data sources in the Metadata Import wizard select Delimited Source as the data type (see Figure 3-34).
  3. Figure 3-34 Selecting a Delimited Source from the Import Metadata Wizard

    Selecting a Delimited Source from the Import Metadata Wizard


     
  4. The file must be in your DSP application. You can supply either a schema name, a source file name, or both. Several other criteria can be supplied:
    • Header. Indicates whether the delimited file contains header data. Header data is located in the first row of the spreadsheet. If you check this option, the first row will not be treated as data.
    • Delimited or Fixed Width. Data in your file is either separated by a specific character (such as a comma) or is of a fixed width (such as 10 spaces). If the data is delimited, you also need to provide the delimited character. By default the character is a comma (,).
    • Figure 3-35 Specifying Import Delimited Metadata Characteristics

      Specifying Import Delimited Metadata Characteristics


       
  5. Once you have selected a document and optional schema, click Next to verify the location and unique location/name of your new data service.
  6. Figure 3-36 Delimited Document Imported Data Summary Screen

    Delimited Document Imported Data Summary Screen


     

    You can edit the data service name either to clarify the name or to avoid conflicts with other existing or planned data services. Conflicts are displayed in red. To adjust the name, double click on the name of the data service to activate the line editor.

  7. Click Finish. A data service will be created with your schema as its XML type. The extension of the created data service will always be .ds.

Note: When importing .csv data there are several things to keep in mind:

Importing XML File Metadata

XML files are a convenient means of handling hierarchical data. XML files and associated schemas are easily turned into data services.

Importing XML file information is similar to importing a relational data source metadata (see Importing Relational Table and View Metadata).

In the case of XML files, you need to supply both a schema and an XML file. The Metadata Import Wizard allows you to browse for an XML file anywhere in your application. You can also import data from any XML file on your system using an absolute path prepended with the following:

file:///

For example, on Windows systems you can access an XML file such as Orders.xml from the root C: directory using the following URI:

file:///c:/Orders.xml

On a UNIX system, you would access such a file with the URI:

file:///home/Orders.xml

XML File Import Sample

In the RTLApp DataServices/Demo directory there is a sample that can be used to illustrate XML file metadata import.

Here are the steps involved:

  1. Select your DSP-based project in which you want to create your XML file metadata. For example, if you have a project called myProject, right-click on the project name and select Import Metadata... from the pop-up menu.
  2. From the available data sources in the Metadata Import wizard select XML Source.
  3. Figure 3-37 Selecting an XML File from the Import Metadata Wizard

    Selecting an XML File from the Import Metadata Wizard


     
  4. In order to access XML data you must first identify a schema; the schema must be located in your application.
  5. Figure 3-38 Specify an XML File Schema for XML Metadata Import

    Specify an XML File Schema for XML Metadata Import


     
  6. Optionally specify an XML file. If the XML file exists in your DSP-based project you can simply browse to it. More likely your document is available as a URI, in which case you want to leave the XML file field empty and supply a URI at runtime.
  7. Once you have selected a schema and optional document name, click Next to verify that the name of your new data service is unique to your application.
  8. Figure 3-39 XML File Imported Data Summary Screen

    XML File Imported Data Summary Screen


     

    You can edit the data service name either to clarify the name or to avoid conflicts with other existing or planned data services. Conflicts are shown in red. Simply click on the name of the data service to change its name. Then click Next.

  9. Next select a global element in your schema (Figure 3-40). Click Ok.
  10. Figure 3-40 A Selecting a Global Element When Importing XML Metadata

    A Selecting a Global Element When Importing XML Metadata


     
  11. Complete the importation of your procedures by reviewing and accepting items in the Summary screen (see step 4. in Importing Relational Table and View Metadata for details).

A Selecting a Global Element When Importing XML Metadata

Testing the Metadata Import Wizard with an XML Data Source

When you create metadata for an XML data source but do not supply a data source name, you will need to identify the URI of your data source as a parameter when you execute the data service's read function (various methods of accessing data service functions are described in detail in the Client Application Developer's Guide).

The identification takes the form of:

<uri>/path/filename.xml

where uri is representative of a path or path alias, path represents the directory and filename.xml represents the filename. The .xml extension is needed.

You can access files using an absolute path prepended with the following:

file:///

For example, on Windows systems you can access an XML file such as Orders.xml from the root C: directory using the following URI:

file:///c:/Orders.xml

On a UNIX system, you would access such a file with the URI:

file:///home/Orders.xml

Figure 3-41 shows how the XML source file is referenced.

Figure 3-41 Specifying an XML Source URI in Test View

Specifying an XML Source URI in Test View


 

 


Updating Data Source Metadata

When you first create a physical data service its underlying metadata is, by definition, consistent with its data source. Over time, however, you metadata can become "out of sync" for several reasons:

You can use the Update Source Metadata right-click menu option to report discrepancies between your source metadata files and the structure of the source data including:

In the case of Source Unavailable, the issue likely relates to connectivity or permissions. In the case of the other types of reports, you can determine when and if to update data source metadata to conform with the underlying data sources.

If there are no discrepancies between your metadata and the underlying source, the Update Source Metadata wizard will report up-to-date for each data service tested.

Considerations When Updating Source Metadata

Source metadata should be updated with care since the operation can have both direct and indirect consequences. For example, if you have added a relationship between two physical data services, updating your source metadata will remove the relationship from both data services. If the relationship appears in a model diagram, the relationship line will appear in red, indicating that the relationship is no longer described by the respective data services.

Direct effects apply to physical data services. Indirect effects occur to logical data services, since such services are themselves ultimately based — at least in part — on physical data service. For example, if you have created a new relationship between a physical and a logical data service, updating the physical data service will invalidate the relationship. In the case of the physical data service, there will be no relationship reference. The logical data service will retain the code describing the relationship but it will be invalid because the opposite relationship notations will no longer be present.

Several safeguards are in place to protect your development effort while preserving your ability to keep your metadata up-to-date. These are described in the next section.

Thus updating source metadata should be done carefully. See Archival of Source Metadata for information of how your current metadata is preserved as part of the source update.

Using the Update Source Metadata Wizard

Note: Before attempting to update source metadata you should make sure that your build project has no errors.

The Update Source Metadata wizard allows you to update your source metadata.

Figure 3-42 Updating Source Metadata for Several Data Services

Updating Source Metadata for Several Data Services


 

You verify that your data structure is up-to-date by performing a metadata update on one or several data services in your DSP-based project. In Figure 3-42 the update will be on all the data services in the project.

After you select your target(s), the wizard identifies the metadata that will be verified and any differences between your metadata and the underlying source.

Figure 3-43 Data Services Metadata to be Updated

Data Services Metadata to be Updated


 

Next, your metadata is updated and an on-screen report prepared. Both general and field-level differences are displayed.

Figure 3-44 Sample Update Preview Report

Sample Update Preview Report


 

Table 3-45 describes the update source metadata message types and color legends.

Table 3-45 Source Metadata Update Targets and Color Legend

Category

Color

Data source field added

Green

A data source field has been added since the last metadata update.

Data service schema (XML type) modified

Black

A change has been made in a schema that was derived from a data source.

Data source field deleted

Red

A field used by your metadata is no longer appearing in source.

Field modified

Blue

A field in your metadata does not exactly match the data source field.

Function modified

Blue

A function in your metadata does not exactly match the data source function.

When you click Finish your metadata will be updated to conform with the underlying data sources.

Archival of Source Metadata

When you update source metadata two files are created and placed in a special directory in your application:

An update metadata source operations assigns the same timestamp to both generated files.

Figure 3-46 UpdateMetadataHistory Directory Sample Content

UpdateMetadataHistory Directory Sample Content


 

Working with a particular update operations report and source, you can often quickly restore relationships and other changes that were made to your metadata while being assured that your metadata is up-to-date.

 

Skip navigation bar  Back to Top Previous Next