Kodo 3.1.2 + IBM  DB2 7.2 = No Suitable Driver?

Hello there,
we are trying to use Kodo 3.1.2 with DB 7.2 Fixpak 5 and higher.
I've build an ant-script with the following snippet:
<target name="defineSchemaKodo" if="jdo.implementierung.kodo">
<taskdef name="mappingtool"
classname="kodo.jdbc.ant.MappingToolTask">
<classpath refid="build.classpath"/>
</taskdef>
<taskdef name="schematool"
classname="kodo.jdbc.ant.SchemaToolTask">
<classpath refid="build.classpath"/>
</taskdef>
          <mappingtool action="buildSchema" schemaFile="${basedir}/package.schema">
<classpath refid="build.classpath"/>
          <fileset dir="${model.build.dir}">
               <include name="*.jdo" />
          </fileset>
          </mappingtool>
          <schematool action="createDB" file="${basedir}/schema.ddl">
<classpath refid="build.classpath"/>
     <fileset dir=".">
     <include name="${basedir}/package.schema" />
     </fileset>
     </schematool>
     </target>
The property "compile.classpath" contains db2java.jar, so the driver
should be availiable at runtime.
When running the script I get this stacktrace:
defineSchemaKodo:
[mappingtool] kodo.util.FatalDataStoreException: No suitable driver
[mappingtool] NestedThrowables:
[mappingtool] java.sql.SQLException: No suitable driver
[mappingtool]      at
kodo.jdbc.sql.SQLExceptions.getFatalDataStore(SQLExceptions.java:42)
[mappingtool]      at
kodo.jdbc.sql.SQLExceptions.getFatalDataStore(SQLExceptions.java:24)
[mappingtool]      at
kodo.jdbc.sql.DBDictionaryFactory.getDBDictionary(DBDictionaryFactory.java:61)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDBDictionaryInstance(JDBCConfigurationImpl.java:630)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getConnectionFactory(JDBCConfigurationImpl.java:880)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDataSource(JDBCConfigurationImpl.java:970)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDataSource2(JDBCConfigurationImpl.java:979)
[mappingtool]      at kodo.jdbc.schema.SchemaTool.<init>(SchemaTool.java:78)
[mappingtool]      at
kodo.jdbc.meta.MappingTool.newSchemaTool(MappingTool.java:269)
[mappingtool]      at
kodo.jdbc.meta.MappingTool.getSchemaTool(MappingTool.java:259)
[mappingtool]      at kodo.jdbc.meta.MappingTool.run(MappingTool.java:898)
[mappingtool]      at
kodo.jdbc.ant.MappingToolTask.executeOn(MappingToolTask.java:175)
[mappingtool]      at com.solarmetric.ant.TaskBase.execute(TaskBase.java:105)
[mappingtool]      at
org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:269)
[mappingtool]      at org.apache.tools.ant.Task.perform(Task.java:364)
[mappingtool]      at org.apache.tools.ant.Target.execute(Target.java:301)
[mappingtool]      at
org.apache.tools.ant.Target.performTasks(Target.java:328)
[mappingtool]      at
org.apache.tools.ant.Project.executeTarget(Project.java:1215)
[mappingtool]      at
org.apache.tools.ant.Project.executeTargets(Project.java:1063)
[mappingtool]      at
org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:569)
[mappingtool]      at
org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:367)
[mappingtool]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
[mappingtool]      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
Source)
[mappingtool]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source)
[mappingtool]      at java.lang.reflect.Method.invoke(Unknown Source)
[mappingtool]      at org.eclipse.ant.core.AntRunner.run(AntRunner.java:335)
[mappingtool]      at
org.eclipse.ui.externaltools.internal.ant.launchConfigurations.AntLaunchDelegate$1.run(AntLaunchDelegate.java:172)
[mappingtool]      at java.lang.Thread.run(Unknown Source)
[mappingtool] NestedThrowablesStackTrace:
[mappingtool] java.sql.SQLException: No suitable driver
[mappingtool]      at java.sql.DriverManager.getDriver(Unknown Source)
[mappingtool]      at
com.solarmetric.jdbc.PoolingDataSource.getDriver(PoolingDataSource.java:271)
[mappingtool]      at
com.solarmetric.jdbc.PoolingDataSource.newConnection(PoolingDataSource.java:313)
[mappingtool]      at
com.solarmetric.jdbc.ConnectionPoolImpl.makeConnection(ConnectionPoolImpl.java:270)
[mappingtool]      at
com.solarmetric.jdbc.ConnectionPoolImpl.getConnection(ConnectionPoolImpl.java:178)
[mappingtool]      at
com.solarmetric.jdbc.PoolingDataSource.getConnection(PoolingDataSource.java:237)
[mappingtool]      at
com.solarmetric.jdbc.DelegatingDataSource.getConnection(DelegatingDataSource.java:130)
[mappingtool]      at
com.solarmetric.jdbc.DecoratingDataSource.getConnection(DecoratingDataSource.java:81)
[mappingtool]      at
com.solarmetric.jdbc.DelegatingDataSource.getConnection(DelegatingDataSource.java:130)
[mappingtool]      at
kodo.jdbc.schema.DataSourceFactory$DefaultsDataSource.getConnection(DataSourceFactory.java:295)
[mappingtool]      at
kodo.jdbc.sql.DBDictionaryFactory.getDBDictionary(DBDictionaryFactory.java:56)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDBDictionaryInstance(JDBCConfigurationImpl.java:630)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getConnectionFactory(JDBCConfigurationImpl.java:880)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDataSource(JDBCConfigurationImpl.java:970)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDataSource2(JDBCConfigurationImpl.java:979)
[mappingtool]      at kodo.jdbc.schema.SchemaTool.<init>(SchemaTool.java:78)
[mappingtool]      at
kodo.jdbc.meta.MappingTool.newSchemaTool(MappingTool.java:269)
[mappingtool]      at
kodo.jdbc.meta.MappingTool.getSchemaTool(MappingTool.java:259)
[mappingtool]      at kodo.jdbc.meta.MappingTool.run(MappingTool.java:898)
[mappingtool]      at
kodo.jdbc.ant.MappingToolTask.executeOn(MappingToolTask.java:175)
[mappingtool]      at com.solarmetric.ant.TaskBase.execute(TaskBase.java:105)
[mappingtool]      at
org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:269)
[mappingtool]      at org.apache.tools.ant.Task.perform(Task.java:364)
[mappingtool]      at org.apache.tools.ant.Target.execute(Target.java:301)
[mappingtool]      at
org.apache.tools.ant.Target.performTasks(Target.java:328)
[mappingtool]      at
org.apache.tools.ant.Project.executeTarget(Project.java:1215)
[mappingtool]      at
org.apache.tools.ant.Project.executeTargets(Project.java:1063)
[mappingtool]      at
org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:569)
[mappingtool]      at
org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:367)
[mappingtool]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
[mappingtool]      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
Source)
[mappingtool]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source)
[mappingtool]      at java.lang.reflect.Method.invoke(Unknown Source)
[mappingtool]      at org.eclipse.ant.core.AntRunner.run(AntRunner.java:335)
[mappingtool]      at
org.eclipse.ui.externaltools.internal.ant.launchConfigurations.AntLaunchDelegate$1.run(AntLaunchDelegate.java:172)
[mappingtool]      at java.lang.Thread.run(Unknown Source)
[mappingtool] BUILD FAILED:
E:\bl04285\workspace\CRM\jdoTemporal\build.xml:170:
kodo.util.FatalDataStoreException: No suitable driver
NestedThrowables:
java.sql.SQLException: No suitable driver
Any ideas?

You should also try using the jcc (preferred) or the net driver which is
more flexible in classpath and system configurations.
The DB2 driver is very sensitive to changes due to reliance on system
shared libraries.
Serge Arpin wrote:
Just a guess:
- do you use db2 type 2 driver (jdbc:db2:dbname) or type 3
(jdbc:db2:/server:port/dbname) ?
If you use type 2, JUST try Type 3. I had the same symptom under WSAD with
the DB2 v7.2.11 type 2 driver... and it worked with type 3 driver.
(And dont forget to start the db2-type-3-driver-listener on your DB2
server.
Knobloch wrote:
Hello there,
we are trying to use Kodo 3.1.2 with DB 7.2 Fixpak 5 and higher.
I've build an ant-script with the following snippet:
<target name="defineSchemaKodo" if="jdo.implementierung.kodo">
<taskdef name="mappingtool"
classname="kodo.jdbc.ant.MappingToolTask">
<classpath refid="build.classpath"/>
</taskdef>
<taskdef name="schematool"
classname="kodo.jdbc.ant.SchemaToolTask">
<classpath refid="build.classpath"/>
</taskdef>
          <mappingtool action="buildSchema" schemaFile="$/package.schema">
<classpath refid="build.classpath"/>
          <fileset dir="$">
               <include name="*.jdo" />
          </fileset>
          </mappingtool>
          <schematool action="createDB" file="$/schema.ddl">
<classpath refid="build.classpath"/>
     <fileset dir=".">
     <include name="$/package.schema" />
     </fileset>
     </schematool>
     </target>
The property "compile.classpath" contains db2java.jar, so the driver
should be availiable at runtime.
When running the script I get this stacktrace:
defineSchemaKodo:
[mappingtool] kodo.util.FatalDataStoreException: No suitable driver
[mappingtool] NestedThrowables:
[mappingtool] java.sql.SQLException: No suitable driver
[mappingtool]      at
kodo.jdbc.sql.SQLExceptions.getFatalDataStore(SQLExceptions.java:42)
[mappingtool]      at
kodo.jdbc.sql.SQLExceptions.getFatalDataStore(SQLExceptions.java:24)
[mappingtool]      at
kodo.jdbc.sql.DBDictionaryFactory.getDBDictionary(DBDictionaryFactory.java:61)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDBDictionaryInstance(JDBCConfigurationImpl.java:630)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getConnectionFactory(JDBCConfigurationImpl.java:880)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDataSource(JDBCConfigurationImpl.java:970)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDataSource2(JDBCConfigurationImpl.java:979)
[mappingtool]      at kodo.jdbc.schema.SchemaTool.<init>(SchemaTool.java:78)
[mappingtool]      at
kodo.jdbc.meta.MappingTool.newSchemaTool(MappingTool.java:269)
[mappingtool]      at
kodo.jdbc.meta.MappingTool.getSchemaTool(MappingTool.java:259)
[mappingtool]      at kodo.jdbc.meta.MappingTool.run(MappingTool.java:898)
[mappingtool]      at
kodo.jdbc.ant.MappingToolTask.executeOn(MappingToolTask.java:175)
[mappingtool]      at com.solarmetric.ant.TaskBase.execute(TaskBase.java:105)
[mappingtool]      at
org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:269)
[mappingtool]      at org.apache.tools.ant.Task.perform(Task.java:364)
[mappingtool]      at org.apache.tools.ant.Target.execute(Target.java:301)
[mappingtool]      at
org.apache.tools.ant.Target.performTasks(Target.java:328)
[mappingtool]      at
org.apache.tools.ant.Project.executeTarget(Project.java:1215)
[mappingtool]      at
org.apache.tools.ant.Project.executeTargets(Project.java:1063)
[mappingtool]      at
org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:569)
[mappingtool]      at
org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:367)
[mappingtool]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
[mappingtool]      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
Source)
[mappingtool]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source)
[mappingtool]      at java.lang.reflect.Method.invoke(Unknown Source)
[mappingtool]      at org.eclipse.ant.core.AntRunner.run(AntRunner.java:335)
[mappingtool]      at
org.eclipse.ui.externaltools.internal.ant.launchConfigurations.AntLaunchDelegate$1.run(AntLaunchDelegate.java:172)
[mappingtool]      at java.lang.Thread.run(Unknown Source)
[mappingtool] NestedThrowablesStackTrace:
[mappingtool] java.sql.SQLException: No suitable driver
[mappingtool]      at java.sql.DriverManager.getDriver(Unknown Source)
[mappingtool]      at
com.solarmetric.jdbc.PoolingDataSource.getDriver(PoolingDataSource.java:271)
[mappingtool]      at
com.solarmetric.jdbc.PoolingDataSource.newConnection(PoolingDataSource.java:313)
[mappingtool]      at
com.solarmetric.jdbc.ConnectionPoolImpl.makeConnection(ConnectionPoolImpl.java:270)
[mappingtool]      at
com.solarmetric.jdbc.ConnectionPoolImpl.getConnection(ConnectionPoolImpl.java:178)
[mappingtool]      at
com.solarmetric.jdbc.PoolingDataSource.getConnection(PoolingDataSource.java:237)
[mappingtool]      at
com.solarmetric.jdbc.DelegatingDataSource.getConnection(DelegatingDataSource.java:130)
[mappingtool]      at
com.solarmetric.jdbc.DecoratingDataSource.getConnection(DecoratingDataSource.java:81)
[mappingtool]      at
com.solarmetric.jdbc.DelegatingDataSource.getConnection(DelegatingDataSource.java:130)
[mappingtool]      at
kodo.jdbc.schema.DataSourceFactory$DefaultsDataSource.getConnection(DataSourceFactory.java:295)
[mappingtool]      at
kodo.jdbc.sql.DBDictionaryFactory.getDBDictionary(DBDictionaryFactory.java:56)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDBDictionaryInstance(JDBCConfigurationImpl.java:630)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getConnectionFactory(JDBCConfigurationImpl.java:880)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDataSource(JDBCConfigurationImpl.java:970)
[mappingtool]      at
kodo.jdbc.conf.JDBCConfigurationImpl.getDataSource2(JDBCConfigurationImpl.java:979)
[mappingtool]      at kodo.jdbc.schema.SchemaTool.<init>(SchemaTool.java:78)
[mappingtool]      at
kodo.jdbc.meta.MappingTool.newSchemaTool(MappingTool.java:269)
[mappingtool]      at
kodo.jdbc.meta.MappingTool.getSchemaTool(MappingTool.java:259)
[mappingtool]      at kodo.jdbc.meta.MappingTool.run(MappingTool.java:898)
[mappingtool]      at
kodo.jdbc.ant.MappingToolTask.executeOn(MappingToolTask.java:175)
[mappingtool]      at com.solarmetric.ant.TaskBase.execute(TaskBase.java:105)
[mappingtool]      at
org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:269)
[mappingtool]      at org.apache.tools.ant.Task.perform(Task.java:364)
[mappingtool]      at org.apache.tools.ant.Target.execute(Target.java:301)
[mappingtool]      at
org.apache.tools.ant.Target.performTasks(Target.java:328)
[mappingtool]      at
org.apache.tools.ant.Project.executeTarget(Project.java:1215)
[mappingtool]      at
org.apache.tools.ant.Project.executeTargets(Project.java:1063)
[mappingtool]      at
org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:569)
[mappingtool]      at
org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:367)
[mappingtool]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
[mappingtool]      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
Source)
[mappingtool]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source)
[mappingtool]      at java.lang.reflect.Method.invoke(Unknown Source)
[mappingtool]      at org.eclipse.ant.core.AntRunner.run(AntRunner.java:335)
[mappingtool]      at
org.eclipse.ui.externaltools.internal.ant.launchConfigurations.AntLaunchDelegate$1.run(AntLaunchDelegate.java:172)
[mappingtool]      at java.lang.Thread.run(Unknown Source)
[mappingtool] BUILD FAILED:
E:bl04285workspaceCRMjdoTemporalbuild.xml:170:
kodo.util.FatalDataStoreException: No suitable driver
NestedThrowables:
java.sql.SQLException: No suitable driver
Any ideas?
Steve Kim
[email protected]
SolarMetric Inc.
http://www.solarmetric.com

Similar Messages

  • Com.ibm.db2.jcc.b.SqlException: DB2 SQL Error: SQLCODE=-973, SQLSTATE=00000

    Hi,
    We are running WebLogic 10.3.0 on RHEL 5.3 with JRockit JDK 1.6 and DB2 Version 8 on mainframe running z/OS 1.9.
    We are getting below exception in webLogic logs from connection pool connecting to DB2 database.
    >
    ####<Jul 23, 2010 10:05:49 AM EDT> <Warning> <JDBC> <testing.us.test.net> <testingDB2> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1279893949615> <BEA-001129> <Received exception while creating connection for pool "TestDB2Pool": DB2 SQL Error: SQLCODE=-973, SQLSTATE=00000, SQLERRMC=MON_HEAP_SZ, DRIVER=3.53.70>
    ####<Jul 23, 2010 10:05:49 AM EDT> <Info> <JDBC> <testing.us.test.net> <testingDB2> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1279893949616> <BEA-001156> <Stack trace associated with message 001129 follows:
    com.ibm.db2.jcc.b.SqlException: DB2 SQL Error: SQLCODE=-973, SQLSTATE=00000, SQLERRMC=MON_HEAP_SZ, DRIVER=3.53.70
         at com.ibm.db2.jcc.b.bd.a(bd.java:679)
         at com.ibm.db2.jcc.b.bd.a(bd.java:60)
         at com.ibm.db2.jcc.b.bd.a(bd.java:127)
         at com.ibm.db2.jcc.b.jb.a(jb.java:4016)
         at com.ibm.db2.jcc.t4.bb.l(bb.java:403)
         at com.ibm.db2.jcc.t4.bb.d(bb.java:141)
         at com.ibm.db2.jcc.t4.b.Oc(b.java:1305)
         at com.ibm.db2.jcc.t4.b.b(b.java:1225)
         at com.ibm.db2.jcc.t4.b.B(b.java:5129)
         at com.ibm.db2.jcc.t4.b.c(b.java:783)
         at com.ibm.db2.jcc.t4.b.b(b.java:726)
         at com.ibm.db2.jcc.t4.b.a(b.java:409)
         at com.ibm.db2.jcc.t4.b.<init>(b.java:345)
         at com.ibm.db2.jcc.DB2Driver.connect(DB2Driver.java:197)
         at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(ConnectionEnvFactory.java:316)
         at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(ConnectionEnvFactory.java:217)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1109)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1033)
         at weblogic.common.resourcepool.ResourcePoolImpl.createResources(ResourcePoolImpl.java:574)
         at weblogic.jdbc.wrapper.Connection.run(Connection.java:268)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    Below is snippet of my datasource configuration.
    <?xml version='1.0' encoding='UTF-8'?>
    <jdbc-data-source xmlns="http://www.bea.com/ns/weblogic/jdbc-data-source" xmlns:sec="http://www.bea.com/ns/weblogic/90/security" xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/jdbc-data-source http://www.bea.com/ns/weblogic/jdbc-data-source/1.0/jdbc-data-source.xsd">
    <name>TestingDB2</name>
    <jdbc-driver-params>
    <url>jdbc:db2://DB2.testing.us.com:50003/TestingDB</url>
    <driver-name>com.ibm.db2.jcc.DB2Driver</driver-name>
    <properties>
    <property>
    <name>maxRetriesForClientReroute</name>
    <value>2</value>
    </property>
    <property>
    <name>retryIntervalForClientReroute</name>
    <value>5</value>
    </property>
    <property>
    <name>user</name>
    <value>testuser</value>
    </property>
    <property>
    <name>resultSetHoldability</name>
    <value>2</value>
    </property>
    <property>
    <name>enableSysplexWLB</name>
    <value>true</value>
    </property>
    <property>
    <name>enableConnectionConcentrator</name>
    <value>true</value>
    </property>
    <property>
    <name>databaseName</name>
    <value>DB2QA</value>
    </property>
    <property>
    <name>maxTransportObjects</name>
    <value>108</value>
    </property>
    </properties>
    <password-encrypted>{3DES}eh4WI16Xb8E=</password-encrypted>
    </jdbc-driver-params>
    <jdbc-connection-pool-params>
    <initial-capacity>40</initial-capacity>
    <max-capacity>215</max-capacity>
    <capacity-increment>1</capacity-increment>
    <shrink-frequency-seconds>300</shrink-frequency-seconds>
    <highest-num-waiters>2147483647</highest-num-waiters>
    <connection-creation-retry-frequency-seconds>15</connection-creation-retry-frequency-seconds>
    <connection-reserve-timeout-seconds>10</connection-reserve-timeout-seconds>
    <test-frequency-seconds>300</test-frequency-seconds>
    <test-connections-on-reserve>true</test-connections-on-reserve>
    <ignore-in-use-connections-enabled>true</ignore-in-use-connections-enabled>
    <inactive-connection-timeout-seconds>300</inactive-connection-timeout-seconds>
    <test-table-name>SYSIBM.SYSDUMMY</test-table-name>
    <login-delay-seconds>1</login-delay-seconds>
    <statement-cache-size>300</statement-cache-size>
    <statement-cache-type>LRU</statement-cache-type>
    <remove-infected-connections>true</remove-infected-connections>
    <seconds-to-trust-an-idle-pool-connection>15</seconds-to-trust-an-idle-pool-connection>
    <statement-timeout>-1</statement-timeout>
    <pinned-to-thread>false</pinned-to-thread>
    </jdbc-connection-pool-params>
    <jdbc-data-source-params>
    <jndi-name>TestingDB2</jndi-name>
    <global-transactions-protocol>None</global-transactions-protocol>
    </jdbc-data-source-params>
    </jdbc-data-source>
    Please help me on this.
    - BoyelT

    Thanks Joe. I will test the standalone client program you provided.
    Below are links I found on web on SQL CODE -972 error message
    http://www.dbforums.com/db2/875633-sqlcode-973-sqlstate-57011-drda_heap_sz-cobol-db2-error.html
    http://publib.boulder.ibm.com/infocenter/tivihelp/v4r1/index.jsp?topic=/com.ibm.tpc_V411.doc/fqz0_r_tbs_db2_sql_973.html
    http://www-01.ibm.com/support/docview.wss?uid=swg1IY55389
    Below is explanation about this message
    ===============================================
    SQL0973N Not enough storage is available in the "<heap-name>" heap to process the statement.
    Explanation: All available memory for this heap has been used. The statement cannot be processed.
    User Response: Terminate the application on receipt of this message (SQLCODE). Increase the configuration parameter for "<heap-name>" to increase the heap size.
    ===============================================
    Can you please advise if this is the problem from DBMS side?

  • No suitable driver found error while connecting to remote IBM DB2 database.

    While trying to connect to IBM DB2 database on a remote location, though the connection was successful from 'Application Resources', following trace could be recovered while performing 'Run' from 'AppModule':
    ERROR:
    (oracle.jbo.DMLException) JBO-26061: Error while opening JDBC connection.
    ----- Level 1: Detail 0 -----
    (java.sql.SQLException) No suitable driver found for jdbc:as400://XX.XXX.XX.XXX;naming=system;libraries=TEST;translate binary=true;prompt=false
    [891] (oracle.adf.model.bc4j.DataControlFactoryImpl.SyncMode = Immediate
    [892] Creating a new pool resource
    [893] BC4JDeployPlatform: LOCAL
    [894] Propertymanager: skipping reload of file and system based properties
    [895] {{ begin Loading BC4J properties
    [896] -----------------------------------------------------------
    [897] BC4J Property jbo.default.language='en' -->(MetaObjectManager) from System Default
    [898] BC4J Property jbo.default.country='US' -->(MetaObjectManager) from System Default
    [899] Skipping empty Property jbo.default.locale.variant from System Default
    [900] BC4J Property DeployPlatform='LOCAL' -->(SessionImpl) from Client Environment
    [901] Skipping empty Property ConnectionMode from System Default
    [902] Skipping empty Property HostName from System Default
    [903] Skipping empty Property ConnectionPort from System Default
    [904] BC4J Property jbo.locking.mode='optimistic' -->(MetaObjectManager) from Client Environment
    [905] BC4J Property jbo.txn.disconnect_level='0' -->(SessionImpl) from System Default
    [906] Skipping empty Property ApplicationPath from System Default
    [907] BC4J Property AppModuleJndiName='model.AppModule' -->(SessionImpl) from Client Environment
    [908] Skipping empty Property java.naming.security.principal from System Default
    [909] Skipping empty Property java.naming.security.credentials from System Default
    [910] Skipping empty Property jbo.user.principal from System Default
    [911] BC4J Property jbo.simulate.remote='false' -->(SessionImpl) from System Default
    [912] BC4J Property jbo.security.context='oracle.security.jazn' -->(MetaObjectManager) from System Default
    [913] Skipping empty Property jbo.object.marshaller from System Default
    [914] BC4J Property jbo.use.pers.coll='false' -->(SessionImpl) from System Default
    [915] BC4J Property jbo.pers.max.rows.per.node='70' -->(SessionImpl) from System Default
    [916] BC4J Property jbo.pers.max.active.nodes='30' -->(SessionImpl) from System Default
    [917] BC4J Property jbo.validation.threshold='10' -->(SessionImpl) from System Default
    [918] BC4J Property jbo.sparse.array.threshold='20' -->(SessionImpl) from System Default
    [919] Skipping empty Property jbo.pcoll.mgr from System Default
    [920] BC4J Property jbo.txn_table_name='PS_TXN' -->(SessionImpl) from System Default
    [921] BC4J Property jbo.txn_seq_name='PS_TXN_seq' -->(SessionImpl) from System Default
    [922] BC4J Property jbo.txn_seq_inc='50' -->(SessionImpl) from System Default
    [923] BC4J Property jbo.control_table_name='PCOLL_CONTROL' -->(MetaObjectManager) from System Default
    [924] BC4J Property jbo.stringmanager.factory.class='use_default' -->(SessionImpl) from System Default
    [925] BC4J Property jbo.domain.date.suppress_zero_time='true' -->(MetaObjectManager) from System Default
    [926] BC4J Property jbo.domain.bind_sql_date='true' -->(MetaObjectManager) from System Default
    [927] BC4J Property jbo.domain.string.as.bytes.for.raw='false' -->(MetaObjectManager) from System Default
    [928] BC4J Property jbo.fetch.mode='AS.NEEDED' -->(MetaObjectManager) from System Default
    [929] BC4J Property jbo.323.compatible='false' -->(MetaObjectManager) from System Default
    [930] BC4J Property jbo.903.compatible='false' -->(MetaObjectManager) from System Default
    [931] Skipping empty Property JBODynamicObjectsPackage from System Default
    [932] BC4J Property MetaObjectContextFactory='oracle.jbo.mom.xml.DefaultMomContextFactory' -->(MetaObjectManager) from System Default
    [933] BC4J Property jbo.load.components.lazily='false' -->(MetaObjectManager) from System Default
    [934] BC4J Property MetaObjectContext='oracle.jbo.mom.xml.XMLContextImpl' -->(MetaObjectManager) from System Default
    [935] BC4J Property java.naming.factory.initial='oracle.jbo.common.JboInitialContextFactory' -->(SessionImpl) from Client Environment
    [936] BC4J Property IsLazyLoadingTrue='true' -->(MetaObjectManager) from Client Environment
    [937] BC4J Property oracle.jbo.usemds='true' -->(MetaObjectManager) from System Default
    [938] BC4J Property oracle.adfm.usemds='true' -->(MetaObjectManager) from System Default
    [939] BC4J Property ActivateSharedDataHandle='false' -->(MetaObjectManager) from System Default
    [940] Skipping empty Property HandleName from System Default
    [941] Skipping empty Property Factory-Substitution-List from System Default
    [942] BC4J Property jbo.project='model.Model' -->(Configuration) from Client Environment
    [943] BC4J Property jbo.max.cursors='50' -->(MetaObjectManager) from System Default
    [944] WARNING: Property jbo.dofailoverset to null
    [945] Skipping empty Property jbo.dofailover from null
    [946] WARNING: Property jbo.envinfoproviderset to null
    [947] Skipping empty Property jbo.envinfoprovider from null
    [948] Skipping empty Property jbo.rowid_am_conn_name from System Default
    [949] Skipping empty Property jbo.rowid_am_datasource_name from System Default
    [950] WARNING: Property jbo.ampool.writecookietoclientset to null
    [951] Skipping empty Property jbo.ampool.writecookietoclient from null
    [952] WARNING: Property jbo.doconnectionpoolingset to null
    [953] Skipping empty Property jbo.doconnectionpooling from null
    [954] WARNING: Property jbo.recyclethresholdset to null
    [955] Skipping empty Property jbo.recyclethreshold from null
    [956] WARNING: Property jbo.ampool.dynamicjdbccredentialsset to null
    [957] Skipping empty Property jbo.ampool.dynamicjdbccredentials from null
    [958] BC4J Property jbo.ampool.resetnontransactionalstate='true' -->(SessionImpl) from System Default
    [959] BC4J Property jbo.ampool.sessioncookiefactoryclass='oracle.jbo.common.ampool.DefaultSessionCookieFactory' -->(Configuration) from Client Environment
    [960] WARNING: Property jbo.ampool.connectionstrategyclassset to null
    [961] Skipping empty Property jbo.ampool.connectionstrategyclass from null
    [962] WARNING: Property jbo.ampool.maxpoolsizeset to null
    [963] Skipping empty Property jbo.ampool.maxpoolsize from null
    [964] BC4J Property jbo.ampool.initpoolsize='0' -->(Configuration) from Client Environment
    [965] WARNING: Property jbo.ampool.monitorsleepintervalset to null
    [966] Skipping empty Property jbo.ampool.monitorsleepinterval from null
    [967] WARNING: Property jbo.ampool.minavailablesizeset to null
    [968] Skipping empty Property jbo.ampool.minavailablesize from null
    [969] WARNING: Property jbo.ampool.maxavailablesizeset to null
    [970] Skipping empty Property jbo.ampool.maxavailablesize from null
    [971] WARNING: Property jbo.ampool.maxinactiveageset to null
    [972] Skipping empty Property jbo.ampool.maxinactiveage from null
    [973] WARNING: Property jbo.ampool.timetoliveset to null
    [974] Skipping empty Property jbo.ampool.timetolive from null
    [975] WARNING: Property jbo.ampool.doampoolingset to null
    [976] Skipping empty Property jbo.ampool.doampooling from null
    [977] WARNING: Property jbo.ampool.issupportspassivationset to null
    [978] Skipping empty Property jbo.ampool.issupportspassivation from null
    [979] BC4J Property jbo.ampool.isuseexclusive='true' -->(SessionImpl) from System Default
    [980] BC4J Property jbo.passivationstore='null' -->(SessionImpl) from System Default
    [981] BC4J Property jbo.saveforlater='false' -->(SessionImpl) from System Default
    [982] BC4J Property jbo.snapshotstore.undo='persistent' -->(SessionImpl) from System Default
    [983] BC4J Property jbo.maxpassivationstacksize='10' -->(SessionImpl) from System Default
    [984] BC4J Property jbo.txn.handleafterpostexc='false' -->(SessionImpl) from System Default
    [985] BC4J Property jbo.connectfailover='true' -->(SessionImpl) from System Default
    [986] BC4J Property jbo.datasource_naming_factory='oracle.jbo.server.DataSourceContextFactory' -->(MetaObjectManager) from System Default
    [987] WARNING: Property jbo.maxpoolcookieageset to null
    [988] Skipping empty Property jbo.maxpoolcookieage from null
    [989] WARNING: Property PoolClassNameset to null
    [990] Skipping empty Property PoolClassName from null
    [991] BC4J Property jbo.maxpoolsize='4096' -->(MetaObjectManager) from System Default
    [992] BC4J Property jbo.initpoolsize='0' -->(MetaObjectManager) from System Default
    [993] BC4J Property jbo.poolrequesttimeout='30000' -->(MetaObjectManager) from System Default
    [994] BC4J Property jbo.poolmonitorsleepinterval='600000' -->(MetaObjectManager) from System Default
    [995] BC4J Property jbo.poolminavailablesize='5' -->(MetaObjectManager) from System Default
    [996] BC4J Property jbo.poolmaxavailablesize='25' -->(MetaObjectManager) from System Default
    [997] BC4J Property jbo.poolmaxinactiveage='600000' -->(MetaObjectManager) from System Default
    [998] BC4J Property jbo.pooltimetolive='-1' -->(MetaObjectManager) from System Default
    [999] BC4J Property jbo.qcpool.monitorsleepinterval='1800000' -->(SessionImpl) from System Default
    [1000] BC4J Property jbo.qcpool.maxinactiveage='900000' -->(SessionImpl) from System Default
    [1001] BC4J Property jbo.qcpool.maxweight='-1' -->(SessionImpl) from System Default
    [1002] BC4J Property RELEASE_MODE='Stateful' -->(MetaObjectManager) from System Default
    [1003] BC4J Property jbo.assoc.consistent='true' -->(MetaObjectManager) from System Default
    [1004] BC4J Property jbo.viewlink.consistent='DEFAULT' -->(MetaObjectManager) from System Default
    [1005] BC4J Property jbo.finder.range.size='DEFAULT' -->(MetaObjectManager) from System Default
    [1006] BC4J Property jbo.passivation.TrackInsert='true' -->(MetaObjectManager) from System Default
    [1007] Skipping empty Property jbo.ViewCriteriaAdapter from System Default
    [1008] BC4J Property jbo.SQLBuilder='DB2' -->(MetaObjectManager) from Client Environment
    [1009] BC4J Property jbo.ConnectionPoolManager='oracle.jbo.server.ConnectionPoolManagerImpl' -->(MetaObjectManager) from System Default
    [1010] BC4J Property jbo.TypeMapEntries='OracleApps' -->(MetaObjectManager) from Client Environment
    [1011] Skipping empty Property jbo.sql92.JdbcDriverClass from System Default
    [1012] BC4J Property jbo.sql92.LockTrailer='FOR UPDATE' -->(MetaObjectManager) from System Default
    [1013] BC4J Property jbo.jdbc.trace='false' -->(MetaObjectManager) from System Default
    [1014] BC4J Property jbo.abstract.base.check='true' -->(MetaObjectManager) from System Default
    [1015] BC4J Property jbo.assoc.where.early.set='false' -->(MetaObjectManager) from System Default
    [1016] BC4J Property jbo.use.findbykey.for.assoc='true' -->(MetaObjectManager) from System Default
    [1017] BC4J Property jbo.sql92.DbTimeQuery='select sysdate from dual' -->(MetaObjectManager) from System Default
    [1018] BC4J Property oracle.jbo.defineColumnLength='skipDefines' -->(MetaObjectManager) from System Default
    [1019] BC4J Property jbo.jdbc_bytes_conversion='jdbc' -->(MetaObjectManager) from System Default
    [1020] Skipping empty Property jbo.tmpdir from System Default
    [1021] Skipping empty Property jbo.server.internal_connection from System Default
    [1022] BC4J Property SessionClass='oracle.jbo.server.SessionImpl' -->(SessionImpl) from System Default
    [1023] Skipping empty Property TransactionFactory from System Default
    [1024] Skipping empty Property jbo.def.mgr.listener from System Default
    [1025] Skipping empty Property jbo.use.global.sub.map from System Default
    [1026] BC4J Property jbo.debugoutput='console' -->(Diagnostic) from System Property
    [1027] BC4J Property jbo.debug.prefix='DBG: ' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1028] BC4J Property jbo.logging.show.timing='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1029] BC4J Property jbo.logging.show.function='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1030] BC4J Property jbo.logging.show.level='false' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1031] BC4J Property jbo.logging.show.linecount='true' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1032] BC4J Property jbo.logging.trace.threshold='6' -->(Diagnostic) from /oracle/jbo/common/Diagnostic.properties resource
    [1033] BC4J Property jbo.jdbc.driver.verbose='false' -->(Diagnostic) from System Default
    [1034] Skipping empty Property oracle.home from System Default
    [1035] Skipping empty Property oc4j.name from System Default
    [1036] Skipping empty Property jbo.shared.txn from System Default
    [1037] BC4J Property oracle.adfm.useSharedTransactionForFrame='true' -->(MetaObjectManager) from System Default
    [1038] BC4J Property oracle.adfm.joinNewFrameTransaction='false' -->(MetaObjectManager) from System Default
    [1039] BC4J Property jbo.ejb.txntimeout='1830' -->(SessionImpl) from System Default
    [1040] BC4J Property jbo.ejb.txntype='global' -->(SessionImpl) from System Default
    [1041] BC4J Property jbo.ejb.txn.disconnect_on_completion='false' -->(SessionImpl) from System Default
    [1042] BC4J Property jbo.ejb.useampool='false' -->(SessionImpl) from Client Environment
    [1043] Skipping empty Property oracle.jbo.schema from System Default
    [1044] BC4J Property jbo.xml.validation='false' -->(MetaObjectManager) from System Default
    [1045] BC4J Property ord.RetrievePath='ordDeliverMedia' -->(MetaObjectManager) from System Default
    [1046] BC4J Property ord.HttpMaxMemory='102400' -->(MetaObjectManager) from System Default
    [1047] Skipping empty Property ord.HttpTempDir from System Default
    [1048] BC4J Property ord.wmp.classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' -->(MetaObjectManager) from System Default
    [1049] BC4J Property ord.qp.classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' -->(MetaObjectManager) from System Default
    [1050] BC4J Property ord.rp.classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' -->(MetaObjectManager) from System Default
    [1051] BC4J Property ord.wmp.codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' -->(MetaObjectManager) from System Default
    [1052] BC4J Property ord.qp.codebase='http://www.apple.com/qtactivex/qtplugin.cab' -->(MetaObjectManager) from System Default
    [1053] Skipping empty Property ord.rp.codebase from System Default
    [1054] BC4J Property ord.wmp.plugins.page='http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=Media&sba=Plugin&' -->(MetaObjectManager) from System Default
    [1055] BC4J Property ord.qp.plugins.page='http://www.apple.com/quicktime/download/' -->(MetaObjectManager) from System Default
    [1056] BC4J Property ord.rp.plugins.page='http://www.real.com/player/' -->(MetaObjectManager) from System Default
    [1057] BC4J Property jbo.security.enforce='None' -->(SessionImpl) from System Default
    [1058] BC4J Property jbo.security.loginmodule='oracle.security.jazn.oc4j.JAZNUserManager' -->(SessionImpl) from System Default
    [1059] Skipping empty Property jbo.security.config from System Default
    [1060] BC4J Property jbo.server.useNullDbTransaction='false' -->(SessionImpl) from System Default
    [1061] BC4J Property jbo.domain.reopenblobstream='false' -->(MetaObjectManager) from System Default
    [1062] BC4J Property jbo.server.retainAssocAccessor='false' -->(SessionImpl) from System Default
    [1063] BC4J Property jbo.groovy.debug='false' -->(MetaObjectManager) from System Default
    [1064] BC4J Property jbo.busevent.suspendpublication='false' -->(SessionImpl) from System Default
    [1065] BC4J Property oracle.adfm.DefaultEventPolicy='NONE' -->(MetaObjectManager) from System Default
    [1066] BC4J Property oracle.adfm.useRootFrameOnly='false' -->(MetaObjectManager) from System Default
    [1067] Copying unknown Client property (user='TESTER') to session
    [1068] Copying unknown Client property (FullProxyInterfaceName='model.common.AppModule') to session
    [1069] Copying unknown Client property (jbo.applicationmoduleclassname='model.AppModule') to session
    [1070] Copying unknown Client property (jbo.jdbc.username='TESTER') to session
    [1071] Copying unknown Client property (BC4JConfigName='AppModuleLocal') to session
    [1072] Copying unknown Client property (DsPasswd='workout') to session
    [1073] Copying unknown Client property (JDBCName='ConnectTo146') to session
    [1074] Copying unknown Client property (DsUserName='TESTER') to session
    [1075] Copying unknown Client property (name='137E06086E5') to session
    [1076] Copying unknown Client property (ApplicationName='model.AppModule') to session
    [1077] Copying unknown Client property (LastUsedConfiguration='AppModuleLocal') to session
    [1078] Copying unknown Client property (password='*****') to session
    [1079] Copying unknown Client property (JDBCDataSource='java:comp/env/jdbc/ConnectTo146DS') to session
    [1080] Copying unknown Client property (jbo.jdbc.connectstring='jdbc:as400:/;naming=system;libraries=QTEMP XAN4CDXA XAN4CDEM;translate binary=true;prompt=false') to session
    [1081] Copying unknown Client property (DBconnection='jdbc:as400://;naming=system;libraries=QTEMP XAN4CDXA XAN4CDEM;translate binary=true;prompt=false') to session
    [1082] Copying unknown Client property (jbo.jdbc.password='*****') to session
    [1083] }} finished loading BC4J properties
    [1084] -----------------------------------------------------------
    [1085] Connected to Oracle JBO Server - Version: 11.1.2.61.83
    [1086] mPCollUsePMgr is false
    [1087] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    [1088] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    [1089] Default locking mode changed to: optimistic
    [1090] Created root application module: 'model.AppModule'
    [1091] Locale is: 'en_US'
    [1092] ApplicationPoolImpl.resourceStateChanged wasn't release related. No notify invoked.
    [1093] Trying connection: DataSource='oracle.jbo.server.ConnectionPoolDataSource@191d9ad'...
    [1094] Using the oracle.jbo.server.ConnectionPoolDataSource to acquire a connection...
    [1095] Creating a new pool resource
    [1096] Trying connection/3: url='jdbc:as400:/*****' user='TESTER' password='*****' ...
    [1097] DBTransactionImpl.initTransaction: Login failed
    [1098] java.sql.SQLException: No suitable driver found for jdbc:as400:;naming=system;libraries=QTEMP XAN4CDXA XAN4CDEM;translate binary=true;prompt=false
         at java.sql.DriverManager.getConnection(DriverManager.java:602)
         at java.sql.DriverManager.getConnection(DriverManager.java:185)
         at oracle.jbo.server.URLConnectionHelper.getConnection(URLConnectionHelper.java:187)
         at oracle.jbo.server.URLConnectionHelper.getConnectionFromDriver(URLConnectionHelper.java:50)
         at oracle.jbo.server.ConnectionPool.createConnection(ConnectionPool.java:195)
         at oracle.jbo.server.ConnectionPool.instantiateResource(ConnectionPool.java:166)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:580)
         at oracle.jbo.pool.ResourcePool.useResource(ResourcePool.java:313)
         at oracle.jbo.server.ConnectionPool.getConnectionInternal(ConnectionPool.java:102)
         at oracle.jbo.server.ConnectionPool.getConnection(ConnectionPool.java:66)
         at oracle.jbo.server.ConnectionPoolManagerImpl.getConnection(ConnectionPoolManagerImpl.java:52)
         at oracle.jbo.server.URLConnectionHelper.getConnection(URLConnectionHelper.java:172)
         at oracle.jbo.server.URLConnectionHelper.getConnection(URLConnectionHelper.java:45)
         at oracle.jbo.server.ConnectionPoolDataSource.getConnection(ConnectionPoolDataSource.java:72)
         at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:964)
         at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1147)
         at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:6838)
         at oracle.jbo.server.DBTransactionImpl2.connectToDataSource(DBTransactionImpl2.java:298)
         at oracle.jbo.server.DBTransactionImpl2.connectToDataSource(DBTransactionImpl2.java:329)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:203)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:600)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:417)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:9021)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4606)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2536)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2346)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3245)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:571)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:504)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:499)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeApplicationModule(DCJboDataControl.java:517)
         at oracle.adf.model.bc4j.DCJboDataControl.getApplicationModule(DCJboDataControl.java:867)
         at oracle.jbo.jbotester.binding.TesterBinding.getConnectionInfo(TesterBinding.java:222)
         at oracle.jbo.jbotester.MainFrame.initializeDataControl(MainFrame.java:945)
         at oracle.jbo.jbotester.MainFrame.loadConfiguration(MainFrame.java:646)
         at oracle.jbo.jbotester.MainFrame.processArgs(MainFrame.java:612)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:446)
    [1099] A dead application module instance was detected
    [1100] The application module instance was removed from the pool
    [1101] ApplicationPoolImpl.resourceStateChanged wasn't release related. No notify invoked.
    [1102] Resetting AM=AppModule
    [1103] An exception occured during checkout.
    [1104] oracle.jbo.DMLException: JBO-26061: Error while opening JDBC connection.
         at oracle.jbo.server.ConnectionPool.createConnection(ConnectionPool.java:207)
         at oracle.jbo.server.ConnectionPool.instantiateResource(ConnectionPool.java:166)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:580)
         at oracle.jbo.pool.ResourcePool.useResource(ResourcePool.java:313)
         at oracle.jbo.server.ConnectionPool.getConnectionInternal(ConnectionPool.java:102)
         at oracle.jbo.server.ConnectionPool.getConnection(ConnectionPool.java:66)
         at oracle.jbo.server.ConnectionPoolManagerImpl.getConnection(ConnectionPoolManagerImpl.java:52)
         at oracle.jbo.server.URLConnectionHelper.getConnection(URLConnectionHelper.java:172)
         at oracle.jbo.server.URLConnectionHelper.getConnection(URLConnectionHelper.java:45)
         at oracle.jbo.server.ConnectionPoolDataSource.getConnection(ConnectionPoolDataSource.java:72)
         at oracle.jbo.server.DBTransactionImpl.establishNewConnection(DBTransactionImpl.java:964)
         at oracle.jbo.server.DBTransactionImpl.initTransaction(DBTransactionImpl.java:1147)
         at oracle.jbo.server.DBTransactionImpl.initTxn(DBTransactionImpl.java:6838)
         at oracle.jbo.server.DBTransactionImpl2.connectToDataSource(DBTransactionImpl2.java:298)
         at oracle.jbo.server.DBTransactionImpl2.connectToDataSource(DBTransactionImpl2.java:329)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:203)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:600)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:417)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:9021)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4606)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2536)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2346)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3245)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:571)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:504)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:499)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeApplicationModule(DCJboDataControl.java:517)
         at oracle.adf.model.bc4j.DCJboDataControl.getApplicationModule(DCJboDataControl.java:867)
         at oracle.jbo.jbotester.binding.TesterBinding.getConnectionInfo(TesterBinding.java:222)
         at oracle.jbo.jbotester.MainFrame.initializeDataControl(MainFrame.java:945)
         at oracle.jbo.jbotester.MainFrame.loadConfiguration(MainFrame.java:646)
         at oracle.jbo.jbotester.MainFrame.processArgs(MainFrame.java:612)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:446)
    Caused by: java.sql.SQLException: No suitable driver found for jdbc:as400://naming=system;libraries=QTEMP XAN4CDXA XAN4CDEM;translate binary=true;prompt=false
         at java.sql.DriverManager.getConnection(DriverManager.java:602)
         at java.sql.DriverManager.getConnection(DriverManager.java:185)
         at oracle.jbo.server.URLConnectionHelper.getConnection(URLConnectionHelper.java:187)
         at oracle.jbo.server.URLConnectionHelper.getConnectionFromDriver(URLConnectionHelper.java:50)
         at oracle.jbo.server.ConnectionPool.createConnection(ConnectionPool.java:195)
         ... 32 more
    [1105] JUErrorHandlerDlg.reportException(oracle.jbo.jbotester.ErrorHandler$ExceptionWrapper)
    [1106] UIMessageBundle (language base) being initialized
    Jun 12, 2012 4:38:26 PM oracle.jbo.jbotester.MainFrame exit
    INFO: BC4J Tester exit code(-3)
    Process exited with exit code -3.

    When you use DB2 SQL flavor, the ADF BC use the oracle.jbo.server.DB2SQLBuilderImpl class as an SQLBuilder. This class determines the JDBC driver class name as follows:
    1) If the JBO configuration parameter jbo.sql92.JdbcDriverClass in not empty, then the JDBC driver class name is taken from there;
    2) If the jbo.sql92JdbcDriverClass parameter is empty, then:
    <ul><li>If the JDBC URL starts with "jdbc:db2://", then com.ibm.db2.jcc.DB2Driver
    <li>If the JDBC URL starts with "jdbc:oracle:db2", then com.oracle.ias.jdbc.db2.DB2Driver
    <li>If the JDBC URL starts with "jdbc:datadirect:db2", then com.ddtek.jdbc.db2.DB2Driver
    <li>Otherwise, COM.ibm.db2.jdbc.app.DB2Driver</ul>
    (Have a look at the source of the method DB2SQLBuilderImpl.getJDBCDriverClassName(String url) for more details).
    It is seen from the log in your first post that the parameter jbo.sql92.JdbcDriverClass is empty. As far as your JDBC URL starts with neither of the prefixes specified above (e.g. your URL starts with "jdbc:as400://"), then you should specify the necessary JDBC driver class in the JBO configuration parameter jbo.sql92.JdbcDriverClass. (You can specify it in the AM configuration parameters or in adf-config.xml).
    Dimitar

  • Database.LoadDataSet() method throwing error while retriving data from IBM DB2 database

    Database.LoadDataSet() method is throwing error during retriving data from empty table of IBM DB2 database. It is giving error code "SQL0100W".
    “Error Message: 0NO_DATA [02000] [IBM] [DB2 / NT] SQL0100W FETCH, whether there is a line to be UPDATE or DELETE, or of the query result is an empty table .
    SQLSTATE = 02000”

    Hello SharayuPandit,
    For issues regarding DB2, i suggest that you could post it to DB2 related forum:
    https://www.ibm.com/developerworks/community/forums/html/forum?id=11111111-0000-0000-0000-000000000842
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Class not found error for COM.ibm.db2.jdbc.app.DB2Driver

    i have written this code:
    import java.io.*;
    import java.sql.*;
    public class tryjdbc
    {  public static void main (String args[])
    {  try
    {  Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");  }
    catch (java.lang.ClassNotFoundException e)
    {  System.out.print(e.getMessage());  }
    and once i try to run it, it gives out a class not found exception error.
    I haven't changed anything with the classpath since I don't think the problem is with the classpath. I have read in the IBM Developer Kit for Java documentaton that the AS/400 Developer Kit for Java automatically adds the db2_class.jar file to the classpath. So why do I get a class not found exception error?

    I was using Web Spehere 4.0.3 and trying to connect to a database on DB2 7.2. I was just following a tutorial and trying to get a handle on Web Sphere. I am running all of these on a Windows 2000 Operating System. Here are some of my observations :
    a. db2java.zip packaged under %DB2ROOT%\SQLLIB\JAVA, does not work.
    b. CLASSPATH needs to be set to %DB2ROOT%\sqllib\java12\db2java.zip
    c. Include this as one of the packages in the package defined in
    WebSphere, using the Java Perspective.
    d. Ensure that case sensitivity is respected. All though the package
    shows up as COM.ibm.db2.jdbc.app.DB2Driver, for some reason, it
    will only accept com.ibm.db2.jdbc.app.DB2Driver.
    With these settings, I was able to connect to a db2 database.
    I am a little puzzled on the following. I did not include java.io package, but still it could print the messages. Did anybody have a similar experience
    Thanks for this posting.

  • Using ODI to pull data from IBM DB2

    Has anybody used IBM DB2 as a data source for essbase using ODI ? If so, do you have any tips, pointers specific to this DB2 specific situation, or better yet reading resources aside from the DBAG ?

    If you want to understand about the various knowledge modules and how to set up DB2 technology in ODI then have a read of :- http://download.oracle.com/docs/cd/E14571_01/integrate.1111/e12644/db2.htm#CHDBJIBH
    Once you have extracted the source db2 data then you would just use the IKM SQL to essbase data with a load rule to load data into essbase, I have covered loading data to essbase in my blogs.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Migration Workbench for migrating IBM DB2 on OS/390 to Oracle 10Gon Solaris

    Hi,
    We are looking to migrate an IBM DB2 database on OS/390 onto Oracle 10G on SUN Solaris. Can anyone help us with a migration workbench toolkit for the same.
    Regards,
    Jagdish Narayanan

    Jagdish,
    We don't currently support migration from DB2 on the OS/390 platform. If you need a solution now, you might investigate a solution from one of our migration partners like Ispirer: http://www.ispirer.com/products/
    Donal

  • Date Migration from IBM DB2/400 V4R3M0 to Oracle 11.2G

    Dear ALL<
    We have a requirement for Date Migration from IBM DB2/400 V4R3M0 to Oracle 11.2g. Can you guys please share your experiences with similar activities done in the past ? We do not have environment at present to try out with Oracle Migration workbench.
    http://www.oracle.com/technetwork/topics/index-095746.html
    You experiece sharing will really help ...!!
    Regards,
    VKMP
    Edited by: 909016 on Jan 31, 2013 5:52 AM

    Hi VKMP,
    As well as reading the documentation thoroughly the following note available in My Oracle Support may be useful -
    Problem To Migrate Table With Table Type P From DB/AS400 With OMWB (Doc ID 466271.1)
    as OMWB does not support migrating physical files.
    Regards,
    Mike

  • To convert the "IBM DB2 Store Procs written in C" to Oracle PL-SQL

    Hi, Is it possible to convert the "IBM DB2 Store Procs written in C" to Oracle PL-SQL. If you have any info, PL do let me know. Thanks in advance.
    EG :
    /* SMG Stored Procedures */
    /* DB2 Stored Procedure: OrganisationExists */
    /* Linkage: SIMPLE (no NULLs permitted) */
    /* Load module name: SMGEC00 */
    /* Purpose: DELETE FROM SSE_LOOKUP_MAP */
    /* to run. */
    /* Parameters: argvÝ1¨ short - return error code - OUT */
    /* argvÝ2¨ char - return error message - OUT */
    /* argvÝ3¨ char - BLEID - IN */
    /* Reason for edit Date Who */
    /* Initial version 09/04/03 Arockia */
    #pragma runopts(plist(os))
    #include <stdlib.h>
    #include <string.h>
    void main (int argc, char *argvݨ)                                             
    EXEC SQL INCLUDE SQLCA;
    EXEC SQL BEGIN DECLARE SECTION;
    char bleid??(12??);
    EXEC SQL END DECLARE SECTION;
    /* Set defaults for error code (argvÝ1¨) and error message (argvÝ2¨) */
    strcpy(argv??(2??)," ");
    *(int *)argv??(1??) = 0;
    strcpy(bleid,argv??(3??));
    EXEC SQL
    DELETE FROM SSE_LOOKUP_MAP
    WHERE BLEID = :bleid;
    /* Set error code to record status of last SQL command */
    *(int *)argv??(1??) = SQLCODE;
    return;

    For this program, you could do some thing like:
    SQL> CREATE TABLE sse_lookup_map(BLEID varchar2(10));
    Table created.
    SQL> CREATE or replace PROCEDURE test(p_bleid_in IN varchar2)
      2  AS
      3  BEGIN
      4  DELETE FROM sse_lookup_map
      5  WHERE BLEID = p_bleid_in;
      6  END;
      7  /
    Procedure created.
    SQL> ed
    Wrote file afiedt.buf
      1* INSERT INTO sse_lookup_map values('test1')
    SQL> /
    1 row created.
    SQL> ed
    Wrote file afiedt.buf
      1* INSERT INTO sse_lookup_map values('test2')
    SQL> /
    1 row created.
    SQL> SELECT * FROM sse_lookup_map;
    BLEID
    test1
    test2
    2 rows selected.
    SQL> EXEC test('test1')
    PL/SQL procedure successfully completed.
    SQL>  SELECT * FROM sse_lookup_map;
    BLEID
    test2
    1 row selected.
    SQL>

  • IBM DB2 to Oracle Database Migration Using SQL Developer

    Hi,
    We are doing migration of the whole database from IBM DB2 8.2 which is running in WINDOWS to Oracle 11g Database in LINUX.
    As part of pre-requisites we have installed the Oracle SQL Developer 4.0.1 (4.0.1.14.48) in Linux Server with JDK 1.7. Also Established a connection with Oracle Database.
    Questions:
    1) How can we enable the Third Party Database Connectivity in SQL Developer?
    I have copied the files db2jcc.jar and db2jcc_license_cu.jar from the IBM DB2 (Windows) to Oracle (Linux)
    2) Will these JAR files are universal drivers? will these jar files will support in Linux platform?
    3) I got a DB2 full privileged schema name "assistdba", Shall i create a new user with the same name "assistdba" in the Oracle Database & grant DBA Privillege? (This is for Repository Creation)
    4) We have around 35GB of data in DB2, shall i proceed with ONLINE CAPTURE during the migration?
    5) Do you have any approx. estimation of Time to migrate a 35 GB of data?
    6) In-case of any issue during the migration activity, shall i get an support from Oracle Team (We have a Valid Support ID)?
    7) What are all the necessary Test Cases to confirm the status of VALID Migration?
    Request you to share the relevant metalink documents!!!
    Kindly guide me in-order to go-ahead with the successful migration.
    Thanks in Advance!!!
    Nagu
    [email protected]

    Hi Klaus,
    Continued with the above posts - Now we are doing another database migration from IBM DB2 to Oracle, which is very less of data (Eg: 20 Tables & 22 Indexes).
    As like previous database migration, we have done the pre-requirement steps.
    DB Using SQL Developer
    Created Migration Repository
    Connected with the created User in SQL Developer
    Captured the Source Database
    Converted Captured Model to Oracle
    Before Translation Phase we have clicked on the "Proceed Summary"
    Captured Database Objects & Converted Database Objects has been created under PROJECT section.
    Here while checking the status of captured & converted database objects, It's showing the below chart as sample:
    OVERVIEW
    PHASE               TABLE DETAILS          TABLE PCT
    CAPTURE               20/20                              100%
    CONVERT               20/20                              100%
    COMPILE                 0/20                                   0%
    TARGET STATUS
    DESC_OBJECT_NAME
    SCHEMANAME
    OBJECTNAME
    STATUS
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:ARG_I1:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:H0INDEX01:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:H1INDEX01:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:H2INDEX01:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:H3INDEX01:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:H4INDEX01:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:H4INDEX02:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:H5INDEX01:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:H7INDEX01:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:H7INDEX02:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:MAPIREP1:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:MAPISWIFT1:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:MAPITRAN1:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:OBJ_I1:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:OPR_I1:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:PRD_I1:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:S1TABLE01:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:STMT_I1:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:STM_I1:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    INDEX
    TRADEIN1
    SQLDEV:LINK:&SQLDEVPREF_TARGETCONN:null:TRADEIN1:INDEX:X0IAS39:oracle.dbtools.migration.workbench.core.ConnectionAwareDrillLink
    Missing
    We have seen only "Missing" in the chart, also we couldn't have any option to trace it in Log file.
    Only after the status is VALID, we can proceed with the Translation & Migration PHASE.
    Kindly help us how to approach this issue now.
    Thanks
    Nagu

  • I can't download IBM DB2 UDB V7.1 & V7.2 Beta Plug-in

    I want to download plugin for Oracel workbench migratipn . also I click Accept License Agreement and click download on plugin but I can't download IBM DB2 UDB V7.1 & V7.2 Beta Plug-in. Popup show 'Sorry, you must accept the License Agreement before downloading' . How I can download this plugin?? pls help me

    hi user645871
    After you accepted the license agreement :
    "You must accept the OTN License Agreement to download this software.
    Accept License Agreement "
    and click on the download
    do you get the window with
    Oracle Technology Network Developer License Terms
    Export Controls on the Programs ?
    Click on YES, I accept the License Terms and Export Restrictions and I acknowledge that I have reviewed and understood the agreement and agree to use the language I selected in entering into this agreement.
    and on I accept.
    Do you have created your account on the oracle OTN ?
    I could manage to download it without any issues.
    By the way herewith also the documentation http://www.oracle.com/technology/documentation/migration.html

  • IBM DB2 is easier to administer than Oracle, is it true?

    Today i found a reference , here it is
    http://smarterquestions.org/2011/04/why-ibm-db2-is-easier-to-administer-than-oracle/
    http://blog.triton.co.uk/2010/12/db2-beats-oracle-database-in-final-task-showdown/
    they are saying "IBM DB2 is easier to administer than Oracle"
    another one saying "DB2 beats Oracle Database in final task showdown"
    so, whats your opinion sir ?
    Regards
    Halim

    I found below links of your interest :
    http://www.mssqlcity.com/Articles/Compare/oracle_vs_db2.htm
    http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems
    ftp://ftp.software.ibm.com/software/data/highlights/dbmscomparison.pdf
    I think these points will be part of comparison :
    ===========================================================
    Issue               
    ===========================================================
    CODD Rules
    Price
    Support
    Hardware requirements
    Software requirements
    Documentation
    Administration/Manageability
    Performance
    Job opportunities
    Scalability
    Portability
    High Availability
    Application Development
    Business Intelligence
    Integration
    Connectivity and Interoperability
    On-demand and Grid-Computing
    Cloud Environment
    Bugs
    Native network encryption     
    Brute-force protection     
    Enterprise directory compatibility     
    Password complexity rules     
    Patch access     
    Run unprivileged     
    Audit     
    Resource limit     
    Separation of duties      
    Security Certification
    Partitioning
    Data Domain     
    Cursor     
    Trigger     
    Function     
    Procedure     
    External routine
    Data Types
    Union     
    Intersect     
    Except     
    Inner joins     
    Outer joins     
    Inner selects     
    Merge joins     
    Blobs and Clobs     
    Common Table Expressions     
    Windowing Functions     
    Parallel Query
    Indexes and their Types
    Temporary Tables
    Materialized Views
    Limitations/Max sizes
    ACID     
    Referential integrity     
    Transactions     
    Unicode     
    Interface
    Supporting OSs
    Exception handling
    Backups
    OLTP,DSS,VLDB
    Certification/CoursesI am just pasting these points from above links and couple of points from different links though.
    Now, your question. IBM DB2 is easier to administer than Oracle, is it true? What if i or someone says Yes or No. Will you simply ignore above points ?
    Regards
    Girish Sharma

  • IBM DB2 JDBC Universal Driver

    Hello,
    On page 36 of the DF XI3.0 Installation Guide, there is a link for the IBM DB2 JDBC Universal Driver. When I click on this link I get the following error:
    Downloads Message
    2005-01-13 12:10:16.882164R download was not found in the database
    Thanks for the help!
    Jason

    Hello
    Thanks Scott for your reply. We have resolved this issue in house as follows:
    - our Systems Support team installed the DB2 Connect client software on the DF server
    - copied the jar file to the leselect/drivers directory
    Also, because we are using the z series we needed an additional driver db2jcc_license_cisuz.jar which was copied into the same drivers dir.
    Thanks!
    Jason

  • How do I make embedded OC4J use IBM Db2 schema mapping

    I am using JDeveloper 903 with a datasource which happens to be of type IBM DB2. Whenever, I try to deploy and test an entity bean from withinn JDeveloper, the embedded OC4J seems to be using a different database schema mapping scheme than what is required by IBM DB2. As a result of this OC4J tries to autocreate tables with wrong syntax and obviously fails. Can somebody tell me how do I get things setup correctly.
    TIA
    Vimal

    Magnus,
    The optimizations related to efficiently supporting overflow-style caching are not included in Coherence 3.5. I created COH-2338 and COH-2339 to track the progress of the related issues.
    There are four different implementations of the PartitionAwareBackingMap for Coherence 3.5:
    * PartitionSplittingBackingMap is the simplest implementation that simply partitions data across a number of backing maps; it is not observable.
    * ObservableSplittingBackingMap is the observable implementation; it extends WrapperObservableMap and delegates to (wraps) a PartitionSplittingBackingMap.
    * ObservableSplittingBackingCache is an extension to the ObservableSplittingBackingMap that knows how to manage ConfigurableCacheMap instances as the underlying per-partition backing maps; in other words, it can spread out and coalesce a configured amount of memory (etc.) across all the actual backing maps.
    * ReadWriteSplittingBackingMap is an extension of the ReadWriteBackingMap that is partition-aware.
    The DefaultConfigurableCacheFactory currently only uses the ObservableSplittingBackingCache and the ReadWriteSplittingBackingMap; COH-2338 relates to the request for improvement to add support for the other two implementations as well. Additionally, optimizations to load balancing (where overflow caching tends to get bogged down by many small I/O operations) will be important; those are tracked by COH-2339.
    Peace,
    Cameron Purdy
    Oracle Coherence

  • Omwb hangs after entering source-db details [ibm db2]

    hi,
    as there is no possibility to use migration workbench on linux to migrate db2 v7 udb, i have to run it on windows. i cant connect to the source-db via db2 command line, the repository gets installed, plugins are found - everything seems to be ok so far. but after having entered the connection details for the source-db, omwb hangs.
    some details:
    contents of plugins-folder: UDB7.jar
    contents of drivers-folder: db2java.zip
    error-log:
    ** Oracle Migration Workbench
    ** Production
    ** ( Build 20050629 )
    ** OMWB_HOME: C:\oracle\products\omwb
    ** user language: de
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_04
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Tue Aug 08 11:45:23 CEST 2006
    ** Workbench Repository : Oracle Database 10g Release 10.2.0.1.0 - 64bit Production
    With the Real Application Clusters option
    Repository Connection URL: jdbc:oracle:thin:@127.0.0.1:51521:testdb1
    ** The following plugins are installed:
    ** IBM DB2 UDB Version 7 Plugin, Production Release 10.1.0.4.0
    ** Active Plugin : UDB7
    Informational: JDBC compatibility test is active.
    any ideas?
    thanks a lot,
    peter
    Message was edited by:
    priffert

    Verzeichnis von C:\oracle\products\omwb
    08.08.2006 14:58 <DIR> .
    08.08.2006 14:58 <DIR> ..
    30.06.2005 15:48 <DIR> addins
    08.08.2006 14:56 <DIR> bin
    30.06.2005 15:48 <DIR> docs
    08.08.2006 14:53 <DIR> drivers
    30.06.2005 15:48 <DIR> jre
    30.06.2005 15:53 <DIR> lib
    08.08.2006 14:57 <DIR> log
    30.06.2005 15:48 <DIR> msaccess_exporter
    30.06.2005 15:48 <DIR> offline_capture
    08.08.2006 12:47 <DIR> olite
    08.08.2006 14:58 0 omwbdir.txt
    07.08.2006 13:29 <DIR> plugins
    30.06.2005 15:48 991 README.txt
    2 Datei(en) 991 Bytes
    Verzeichnis von C:\oracle\products\omwb\addins
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 <DIR> AS400
    0 Datei(en) 0 Bytes
    Verzeichnis von C:\oracle\products\omwb\addins\AS400
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 <DIR> V4r5
    0 Datei(en) 0 Bytes
    Verzeichnis von C:\oracle\products\omwb\addins\AS400\V4r5
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 82 qclsrc.getusers
    30.06.2005 15:48 12.108 qcsrc.getauthobj
    30.06.2005 15:48 31.674 qsqlcsrc.extract
    30.06.2005 15:48 281 qsqlsrc.extract
    30.06.2005 15:48 400 qsqlsrc.getauthobj
    30.06.2005 15:48 171 qsqlsrc.getusers
    30.06.2005 15:48 1.085.568 SAVEFILE
    7 Datei(en) 1.130.284 Bytes
    Verzeichnis von C:\oracle\products\omwb\bin
    08.08.2006 14:56 <DIR> .
    08.08.2006 14:56 <DIR> ..
    30.06.2005 15:48 766 mwb.ico
    30.06.2005 15:48 130 omwb.bat
    30.06.2005 15:48 386 omwb.sh
    08.08.2006 13:31 98 state.properties
    4 Datei(en) 1.380 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 <DIR> db2400v4r5
    30.06.2005 15:48 <DIR> db2udb
    30.06.2005 15:48 <DIR> faq
    25.05.2005 17:09 <DIR> informix
    30.06.2005 15:48 <DIR> msaccess
    30.06.2005 15:48 <DIR> mysql
    21.01.2005 13:49 208.949 odbc3rdprty.pdf
    30.06.2005 15:48 <DIR> quicktour
    25.05.2005 17:10 <DIR> relnotes
    25.05.2005 17:10 <DIR> sss
    25.05.2005 17:10 <DIR> Support
    25.05.2005 17:10 <DIR> usersguide
    25.05.2005 17:10 <DIR> www
    1 Datei(en) 208.949 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\db2400v4r5
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    21.01.2005 13:49 6.636 2_1.gif
    21.01.2005 13:49 8.808 ch1.htm
    21.01.2005 13:49 73.691 ch2.htm
    21.01.2005 13:49 37.518 ch3.htm
    21.01.2005 13:49 5.923 ch4.htm
    25.05.2005 17:09 <DIR> img_text
    21.01.2005 13:49 13.971 index.htm
    21.01.2005 13:49 19.652 preface.htm
    21.01.2005 13:49 6.098 rcf.htm
    21.01.2005 13:49 8.021 title.htm
    21.01.2005 13:49 8.718 toc.htm
    10 Datei(en) 189.036 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\db2400v4r5\img_text
    25.05.2005 17:09 <DIR> .
    25.05.2005 17:09 <DIR> ..
    21.01.2005 13:49 242 2_1.htm
    1 Datei(en) 242 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\db2udb
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    21.01.2005 13:49 7.190 ch1.htm
    21.01.2005 13:49 71.001 ch2.htm
    21.01.2005 13:49 24.299 ch3.htm
    21.01.2005 13:49 31.062 ch4.htm
    21.01.2005 13:49 9.531 index.htm
    21.01.2005 13:49 19.264 preface.htm
    21.01.2005 13:49 6.101 rcf.htm
    21.01.2005 13:49 8.737 title.htm
    21.01.2005 13:49 7.682 toc.htm
    9 Datei(en) 184.867 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\faq
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    02.08.2005 19:22 45.986 1gen.htm
    02.08.2005 19:22 17.599 2info.htm
    02.08.2005 19:22 36.626 3access.htm
    02.08.2005 19:22 66.956 4sql.htm
    02.08.2005 19:22 9.065 5mysql.htm
    02.08.2005 19:22 19.715 appa.htm
    07.07.2005 15:22 7.061 blafdoc.css
    28.07.2004 10:41 5.186 darbbook.css
    21.01.2005 13:49 7.851 faq.htm
    02.08.2005 19:22 17.369 index.htm
    02.08.2005 19:22 4.620 loe.htm
    02.08.2005 19:22 9.836 preface.htm
    21.01.2005 13:49 23.128 questlis.htm
    22.06.2005 14:39 5.947 rcf.htm
    02.08.2005 19:22 8.025 title.htm
    02.08.2005 19:22 6.353 toc.htm
    16 Datei(en) 291.323 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\informix
    25.05.2005 17:09 <DIR> .
    25.05.2005 17:09 <DIR> ..
    28.06.2005 13:17 15.050 a.htm
    28.07.2004 10:41 4.537 blafdoc.css
    28.06.2005 13:17 11.908 ch1.htm
    28.06.2005 13:17 119.566 ch2.htm
    28.06.2005 13:17 144.868 ch3.htm
    28.06.2005 13:17 11.297 ch4.htm
    21.01.2005 13:49 84.173 ch5.htm
    28.06.2005 13:17 77.163 ch6.htm
    28.06.2005 13:17 8.855 ch7.htm
    28.07.2004 10:41 5.186 darbbook.css
    28.06.2005 13:17 22.626 index.htm
    28.06.2005 13:17 5.074 lot.htm
    04.08.2005 16:13 4.303 migrating11.html
    28.06.2005 13:17 18.193 preface.htm
    28.06.2005 13:17 6.013 rcf.htm
    28.06.2005 13:17 8.205 title.htm
    28.06.2005 13:17 14.569 toc.htm
    17 Datei(en) 561.586 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\msaccess
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    05.10.2001 18:07 1.730 2_1.gif
    05.10.2001 18:07 1.918 2_2.gif
    05.10.2001 18:07 4.525 2_3.gif
    05.10.2001 18:07 3.290 2_4.gif
    04.08.2005 17:14 126.427 a.htm
    04.08.2005 17:14 20.350 b.htm
    07.07.2005 15:22 7.061 blafdoc.css
    04.08.2005 17:14 15.735 ch1.htm
    04.08.2005 17:14 38.998 ch2.htm
    04.08.2005 17:14 74.395 ch3.htm
    04.08.2005 17:14 17.881 ch4.htm
    04.08.2005 17:14 25.509 ch5.htm
    28.07.2004 10:41 5.186 darbbook.css
    25.05.2005 17:09 <DIR> img_text
    04.08.2005 17:14 14.762 index.htm
    04.08.2005 17:14 4.435 lof.htm
    04.08.2005 17:14 4.841 lot.htm
    04.08.2005 16:13 4.303 migrating11.html
    04.08.2005 17:14 9.728 preface.htm
    23.06.2005 14:10 5.912 rcf.htm
    04.08.2005 17:14 8.268 title.htm
    04.08.2005 17:14 9.730 toc.htm
    21 Datei(en) 404.984 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\msaccess\img_text
    25.05.2005 17:09 <DIR> .
    25.05.2005 17:09 <DIR> ..
    23.05.2001 15:06 364 2_1.htm
    23.05.2001 15:06 318 2_2.htm
    23.05.2001 15:06 255 2_3.htm
    23.05.2001 15:06 295 2_4.htm
    4 Datei(en) 1.232 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\mysql
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    21.01.2005 13:49 7.778 a.htm
    21.01.2005 13:49 31.039 ch3.htm
    21.01.2005 13:49 12.711 ch4.htm
    21.01.2005 13:49 5.903 index.htm
    04.08.2005 16:13 4.303 migrating11.html
    21.01.2005 13:49 18.452 preface.htm
    21.01.2005 13:49 6.003 rcf.htm
    21.01.2005 13:49 8.532 title.htm
    21.01.2005 13:49 5.295 toc.htm
    9 Datei(en) 100.016 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 <DIR> features
    30.06.2005 15:48 <DIR> images
    16.06.2005 16:27 2.383 index.htm
    16.06.2005 16:28 2.391 index_1.htm
    16.06.2005 16:29 2.892 index_3.htm
    21.06.2005 11:05 <DIR> migration
    21.06.2005 11:05 <DIR> other
    21.06.2005 11:05 <DIR> overview
    3 Datei(en) 7.666 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour\features
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    16.06.2005 16:32 4.129 features.htm
    21.06.2005 11:02 44.842 features2.htm
    21.06.2005 11:14 13.967 features3.htm
    3 Datei(en) 62.938 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour\images
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    02.09.2002 14:23 35.749 banner.gif
    16.06.2005 11:40 25.581 capture.gif
    02.09.2002 14:23 15.828 capture_dtm.gif
    02.09.2002 14:23 14.754 capture_map.gif
    20.07.2004 17:26 7.046 corp_gov_wh.gif
    02.09.2002 14:23 3.996 depend.gif
    02.09.2002 14:23 5.360 dtm.gif
    02.09.2002 14:23 22.100 generate.gif
    02.09.2002 14:23 1.543 i1.gif
    02.09.2002 14:23 1.674 i1_1.gif
    02.09.2002 14:23 1.194 i1_1_1.gif
    02.09.2002 14:23 1.112 i1_1_2.gif
    02.09.2002 14:23 1.857 i2.gif
    02.09.2002 14:23 1.980 i3.gif
    02.09.2002 14:23 2.216 i3_1.gif
    02.09.2002 14:23 1.078 i3_1_1.gif
    02.09.2002 14:23 1.122 i3_1_2.gif
    02.09.2002 14:23 1.102 i3_1_3.gif
    02.09.2002 14:23 1.112 i3_1_4.gif
    02.09.2002 14:23 1.604 i4.gif
    02.09.2002 14:23 1.488 i5.gif
    02.09.2002 14:23 20.725 informix_logon.gif
    02.09.2002 14:23 43.688 installer.gif
    02.09.2002 14:26 188 left_curve.gif
    02.09.2002 14:23 35.581 logon.gif
    02.09.2002 14:23 7.571 logs.gif
    02.09.2002 14:23 190 ltarr.gif
    16.06.2005 11:34 24.731 mig_wiz_1.gif
    02.09.2002 14:23 34.999 mti.gif
    02.09.2002 14:23 3.647 netserv1.gif
    02.09.2002 14:23 3.394 netserv_dbver.gif
    02.09.2002 14:23 4.076 om_createoptions.gif
    02.09.2002 14:23 9.265 om_dataload.gif
    02.09.2002 14:23 9.912 om_delete.gif
    10.09.2002 07:47 6.534 om_tbspace.gif
    15.06.2005 14:09 8.456 om_textedit.gif
    02.09.2002 14:23 4.315 om_useredit.gif
    02.09.2002 14:23 10.266 pen.gif
    03.06.2004 14:35 16.682 plugins.gif
    02.09.2002 14:23 8.986 plugins92017.gif
    02.09.2002 14:23 7.330 repbuild.gif
    02.09.2002 14:23 9.314 report.gif
    03.06.2004 15:05 59.091 repository.gif
    02.09.2002 14:23 34.078 repository2.gif
    02.09.2002 14:23 57.368 repository9i.gif
    02.09.2002 14:23 7.944 repos_created.gif
    02.09.2002 14:27 190 right_curve.gif
    02.09.2002 14:23 189 rtarr.gif
    02.09.2002 14:23 12.530 schema.gif
    16.06.2005 12:13 7.076 sm_edit.gif
    02.09.2002 14:23 7.761 sm_remove.gif
    02.09.2002 14:23 85.231 splash.gif
    02.09.2002 14:23 14.179 test_login.gif
    02.09.2002 14:23 24.823 ui.gif
    02.09.2002 14:23 34.567 unix.gif
    55 Datei(en) 764.373 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour\migration
    21.06.2005 11:05 <DIR> .
    21.06.2005 11:05 <DIR> ..
    21.06.2005 11:05 <DIR> capture
    21.06.2005 11:05 <DIR> configuration
    21.06.2005 11:05 <DIR> custom
    21.06.2005 11:05 <DIR> generate
    0 Datei(en) 0 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour\migration\capture
    21.06.2005 11:05 <DIR> .
    21.06.2005 11:05 <DIR> ..
    16.06.2005 11:45 2.919 capture.htm
    02.09.2002 14:28 2.903 capture2.htm
    02.09.2002 14:28 2.820 capture3.htm
    16.06.2005 11:46 3.147 capture4.htm
    02.09.2002 14:28 2.715 capture5.htm
    16.06.2005 11:46 2.915 capture6.htm
    02.09.2002 14:28 2.920 capture7.htm
    7 Datei(en) 20.339 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour\migration\configuration
    21.06.2005 11:05 <DIR> .
    21.06.2005 11:05 <DIR> ..
    16.06.2005 10:53 3.169 configuration.htm
    21.06.2005 11:02 8.940 configuration2.htm
    21.06.2005 11:02 9.549 configuration3.htm
    16.06.2005 11:38 3.182 configuration4.htm
    4 Datei(en) 24.840 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour\migration\custom
    21.06.2005 11:05 <DIR> .
    21.06.2005 11:05 <DIR> ..
    16.06.2005 11:51 3.532 custom.htm
    16.06.2005 12:10 3.215 custom2.htm
    16.06.2005 12:11 3.072 custom3.htm
    16.06.2005 12:15 3.280 custom4.htm
    02.09.2002 14:29 3.142 custom5.htm
    16.06.2005 12:18 3.103 custom6.htm
    16.06.2005 12:19 2.925 custom7.htm
    02.09.2002 14:29 2.929 custom8.htm
    02.09.2002 14:29 3.229 custom9.htm
    9 Datei(en) 28.427 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour\migration\generate
    21.06.2005 11:05 <DIR> .
    21.06.2005 11:05 <DIR> ..
    16.06.2005 12:20 2.841 generate.htm
    02.09.2002 14:29 3.208 generate2.htm
    02.09.2002 14:29 2.812 generate3.htm
    02.09.2002 14:29 2.676 generate4.htm
    4 Datei(en) 11.537 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour\other
    21.06.2005 11:05 <DIR> .
    21.06.2005 11:05 <DIR> ..
    21.06.2005 11:02 8.207 credits.htm
    21.01.2005 13:49 11.438 future.htm
    21.06.2005 11:02 14.663 support.htm
    21.06.2005 11:02 11.426 support2.htm
    4 Datei(en) 45.734 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\quicktour\overview
    21.06.2005 11:05 <DIR> .
    21.06.2005 11:05 <DIR> ..
    02.09.2002 14:29 3.062 product.htm
    16.06.2005 14:14 3.751 product2.htm
    15.06.2005 15:18 3.919 product3.htm
    3 Datei(en) 10.732 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\relnotes
    25.05.2005 17:10 <DIR> .
    25.05.2005 17:10 <DIR> ..
    28.07.2004 10:41 4.537 blafdoc.css
    28.07.2004 10:41 5.186 darbbook.css
    28.06.2005 16:20 49.000 relnotes.htm
    28.06.2005 16:20 5.077 toc.htm
    4 Datei(en) 63.800 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\sss
    25.05.2005 17:10 <DIR> .
    25.05.2005 17:10 <DIR> ..
    28.07.2004 10:41 4.537 blafdoc.css
    28.06.2005 19:10 12.872 ch1.htm
    28.06.2005 19:10 165.012 ch2.htm
    28.06.2005 19:10 156.660 ch3.htm
    28.06.2005 19:10 13.177 ch4.htm
    28.06.2005 19:10 10.920 ch6.htm
    28.07.2004 10:41 5.186 darbbook.css
    28.06.2005 19:10 16.500 index.htm
    28.06.2005 19:10 12.611 lot.htm
    04.08.2005 16:13 4.303 migrating11.html
    28.06.2005 19:10 18.125 preface.htm
    28.06.2005 19:10 6.036 rcf.htm
    28.06.2005 19:10 8.418 title.htm
    28.06.2005 19:10 13.254 toc.htm
    14 Datei(en) 447.611 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\Support
    25.05.2005 17:10 <DIR> .
    25.05.2005 17:10 <DIR> ..
    25.05.2005 17:10 <DIR> gifs
    25.05.2005 17:10 <DIR> html
    0 Datei(en) 0 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\Support\gifs
    25.05.2005 17:10 <DIR> .
    25.05.2005 17:10 <DIR> ..
    21.01.2005 13:49 2.516 bookbig.gif
    21.01.2005 13:49 1.338 bookicon.gif
    21.01.2005 13:49 1.439 contbig.gif
    21.01.2005 13:49 862 conticon.gif
    21.01.2005 13:49 1.049 doclib.gif
    21.01.2005 13:49 1.145 help.gif
    21.01.2005 13:49 999 index.gif
    21.01.2005 13:49 542 indxicon.gif
    21.01.2005 13:49 476 larrow.gif
    21.01.2005 13:49 1.144 leftnav.gif
    21.01.2005 13:49 2.122 oracle.gif
    21.01.2005 13:49 1.545 prodbig.gif
    21.01.2005 13:49 2.082 prodicon.gif
    21.01.2005 13:49 464 rarrow.gif
    21.01.2005 13:49 1.145 rightnav.gif
    21.01.2005 13:49 1.054 toc.gif
    21.01.2005 13:49 1.146 topnav.gif
    21.01.2005 13:49 720 uarrow.gif
    18 Datei(en) 21.788 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\Support\html
    25.05.2005 17:10 <DIR> .
    25.05.2005 17:10 <DIR> ..
    21.01.2005 13:49 1.323 cpyr.htm
    1 Datei(en) 1.323 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\usersguide
    25.05.2005 17:10 <DIR> .
    25.05.2005 17:10 <DIR> ..
    24.01.2003 12:55 21.119 arch.gif
    04.08.2005 17:09 50.892 before.htm
    07.07.2005 15:22 7.061 blafdoc.css
    04.08.2005 17:09 51.136 capture_sm.htm
    12.09.2002 18:08 1.137 ch82.gif
    12.09.2002 18:08 1.204 ch8a.gif
    04.08.2005 17:09 20.459 create_om.htm
    28.07.2004 10:41 5.186 darbbook.css
    04.08.2005 17:09 12.504 deploy.htm
    04.08.2005 17:09 18.936 glossary.htm
    04.08.2005 16:40 <DIR> img
    25.05.2005 17:10 <DIR> img_text
    04.08.2005 17:09 37.805 index.htm
    04.08.2005 17:09 31.942 intro.htm
    04.08.2005 17:09 4.269 lof.htm
    04.08.2005 17:09 4.989 lot.htm
    04.08.2005 17:09 41.017 migrate_db.htm
    04.08.2005 17:09 11.828 preface.htm
    04.08.2005 17:09 21.199 prepare.htm
    23.06.2005 14:33 5.995 rcf.htm
    04.08.2005 17:09 25.913 reports.htm
    04.08.2005 17:09 20.911 test.htm
    04.08.2005 17:09 8.071 title.htm
    04.08.2005 17:09 14.513 toc.htm
    04.08.2005 17:09 71.796 trouble.htm
    20.11.2003 09:41 14.477 vmodel.gif
    12.09.2002 17:57 18.922 w1_1.gif
    12.09.2002 17:57 18.019 w1_2.gif
    12.09.2002 17:57 20.694 w1_3.gif
    27 Datei(en) 561.994 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\usersguide\img
    04.08.2005 16:40 <DIR> .
    04.08.2005 16:40 <DIR> ..
    0 Datei(en) 0 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\usersguide\img_text
    25.05.2005 17:10 <DIR> .
    25.05.2005 17:10 <DIR> ..
    12.06.2005 15:12 877 arch.htm
    21.01.2005 13:49 323 ch82.htm
    21.01.2005 13:49 271 ch8a.htm
    12.06.2005 15:12 1.149 vmodel.htm
    12.06.2005 15:12 814 w1_1.htm
    12.06.2005 15:12 831 w1_2.htm
    12.06.2005 15:12 812 w1_3.htm
    7 Datei(en) 5.077 Bytes
    Verzeichnis von C:\oracle\products\omwb\docs\www
    25.05.2005 17:10 <DIR> .
    25.05.2005 17:10 <DIR> ..
    21.01.2005 13:49 2.019 support.htm
    1 Datei(en) 2.019 Bytes
    Verzeichnis von C:\oracle\products\omwb\drivers
    08.08.2006 14:53 <DIR> .
    08.08.2006 14:53 <DIR> ..
    04.03.2003 09:50 1.145.961 db2java.zip
    30.06.2005 15:48 0 INSTALL_DRIVERS_HERE
    2 Datei(en) 1.145.961 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 <DIR> bin
    30.06.2005 15:48 1.126 CHANGES
    30.06.2005 15:48 4.519 COPYRIGHT
    30.06.2005 15:48 <DIR> lib
    30.06.2005 15:48 14.620 LICENSE
    30.06.2005 15:48 25.641 LICENSE.rtf
    30.06.2005 15:48 96.318 LICENSE_de.rtf
    30.06.2005 15:48 33.512 LICENSE_es.rtf
    30.06.2005 15:48 50.533 LICENSE_fr.rtf
    30.06.2005 15:48 62.114 LICENSE_it.rtf
    30.06.2005 15:48 50.115 LICENSE_ja.rtf
    30.06.2005 15:48 305.403 LICENSE_ko.rtf
    30.06.2005 15:48 71.880 LICENSE_sv.rtf
    30.06.2005 15:48 33.149 LICENSE_zh_CN.rtf
    30.06.2005 15:48 32.341 LICENSE_zh_TW.rtf
    30.06.2005 15:48 10.313 README.txt
    30.06.2005 15:48 10.367 THIRDPARTYLICENSEREADME.txt
    30.06.2005 15:48 998 Welcome.html
    16 Datei(en) 802.949 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\bin
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 970.862 awt.dll
    30.06.2005 15:48 94.323 axbridge.dll
    30.06.2005 15:48 <DIR> client
    30.06.2005 15:48 139.374 cmm.dll
    30.06.2005 15:48 139.375 dcpr.dll
    30.06.2005 15:48 24.689 dt_shmem.dll
    30.06.2005 15:48 20.595 dt_socket.dll
    30.06.2005 15:48 61.547 eula.dll
    30.06.2005 15:48 327.811 fontmanager.dll
    30.06.2005 15:48 28.791 hpi.dll
    30.06.2005 15:48 49.258 hprof.dll
    30.06.2005 15:48 24.715 ioser12.dll
    30.06.2005 15:48 20.611 jaas_nt.dll
    30.06.2005 15:48 102.515 java.dll
    30.06.2005 15:48 24.681 java.exe
    30.06.2005 15:48 28.779 javaw.exe
    30.06.2005 15:48 20.592 jawt.dll
    30.06.2005 15:48 61.544 jcov.dll
    30.06.2005 15:48 49.278 JdbcOdbc.dll
    30.06.2005 15:48 102.505 jdwp.dll
    30.06.2005 15:48 122.992 jpeg.dll
    30.06.2005 15:48 82.035 jpicom32.dll
    30.06.2005 15:48 61.555 jpicpl32.cpl
    30.06.2005 15:48 16.501 jpicpl32.exe
    30.06.2005 15:48 94.323 jpiexp32.dll
    30.06.2005 15:48 28.783 jpins4.dll
    30.06.2005 15:48 41.071 jpins6.dll
    30.06.2005 15:48 45.167 jpins7.dll
    30.06.2005 15:48 86.127 jpinsp.dll
    30.06.2005 15:48 77.939 jpishare.dll
    30.06.2005 15:48 143.480 jsound.dll
    30.06.2005 15:48 241.777 jucheck.exe
    30.06.2005 15:48 32.881 jusched.exe
    30.06.2005 15:48 266.293 msvcrt.dll
    30.06.2005 15:48 57.455 net.dll
    30.06.2005 15:48 32.880 nio.dll
    30.06.2005 15:48 65.647 NPJava11.dll
    30.06.2005 15:48 65.647 NPJava12.dll
    30.06.2005 15:48 65.647 NPJava13.dll
    30.06.2005 15:48 65.647 NPJava14.dll
    30.06.2005 15:48 65.647 NPJava32.dll
    30.06.2005 15:48 65.650 NPJPI142_04.dll
    30.06.2005 15:48 65.647 NPOJI610.dll
    30.06.2005 15:48 110.707 RegUtils.dll
    30.06.2005 15:48 20.590 rmi.dll
    30.06.2005 15:48 57.453 verify.dll
    30.06.2005 15:48 20.563 w2k_lsa_auth.dll
    30.06.2005 15:48 53.364 zip.dll
    47 Datei(en) 4.445.313 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\bin\client
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 1.212.546 jvm.dll
    30.06.2005 15:48 1.410 Xusage.txt
    2 Datei(en) 1.213.956 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 5.537.712 charsets.jar
    30.06.2005 15:48 <DIR> cmm
    30.06.2005 15:48 5.506 content-types.properties
    30.06.2005 15:48 3.828 flavormap.properties
    30.06.2005 15:48 4.376 font.properties
    30.06.2005 15:48 4.445 font.properties.CP1250
    30.06.2005 15:48 4.445 font.properties.CP1251
    30.06.2005 15:48 4.445 font.properties.CP1253
    30.06.2005 15:48 4.445 font.properties.CP1254
    30.06.2005 15:48 4.219 font.properties.CP1256
    30.06.2005 15:48 4.445 font.properties.CP1257
    30.06.2005 15:48 5.540 font.properties.hi
    30.06.2005 15:48 2.976 font.properties.iw
    30.06.2005 15:48 6.050 font.properties.ja
    30.06.2005 15:48 5.476 font.properties.ko
    30.06.2005 15:48 7.416 font.properties.MS950_HKSCS
    30.06.2005 15:48 4.463 font.properties.ru
    30.06.2005 15:48 5.405 font.properties.th
    30.06.2005 15:48 5.357 font.properties.zh
    30.06.2005 15:48 5.360 font.properties.zh.98
    30.06.2005 15:48 5.596 font.properties.zh_CN_GB18030
    30.06.2005 15:48 5.852 font.properties.zh_TW
    30.06.2005 15:48 5.509 font.properties.zh_TW.95
    30.06.2005 15:48 7.422 font.properties.zh_TW_MS950_HKSCS
    30.06.2005 15:48 <DIR> fonts
    30.06.2005 15:48 <DIR> i386
    30.06.2005 15:48 <DIR> im
    30.06.2005 15:48 <DIR> images
    30.06.2005 15:48 69.596 jce.jar
    30.06.2005 15:48 881.878 jsse.jar
    30.06.2005 15:48 2.689 jvm.hprof.txt
    30.06.2005 15:48 4.788 jvm.jcov.txt
    30.06.2005 15:48 2.245 logging.properties
    30.06.2005 15:48 1.878.141 plugin.jar
    30.06.2005 15:48 3.070 psfont.properties.ja
    30.06.2005 15:48 10.669 psfontj2d.properties
    30.06.2005 15:48 22.168.576 rt.jar
    30.06.2005 15:48 <DIR> security
    30.06.2005 15:48 89.343 sunrsasign.jar
    30.06.2005 15:48 6.700 tzmappings
    30.06.2005 15:48 <DIR> zi
    34 Datei(en) 30.767.983 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\cmm
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 51.236 CIEXYZ.pf
    30.06.2005 15:48 632 GRAY.pf
    30.06.2005 15:48 1.044 LINEAR_RGB.pf
    30.06.2005 15:48 274.474 PYCC.pf
    30.06.2005 15:48 150.368 sRGB.pf
    5 Datei(en) 477.754 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\fonts
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 75.144 LucidaBrightDemiBold.ttf
    30.06.2005 15:48 75.124 LucidaBrightDemiItalic.ttf
    30.06.2005 15:48 80.856 LucidaBrightItalic.ttf
    30.06.2005 15:48 344.908 LucidaBrightRegular.ttf
    30.06.2005 15:48 317.896 LucidaSansDemiBold.ttf
    30.06.2005 15:48 698.236 LucidaSansRegular.ttf
    30.06.2005 15:48 234.068 LucidaTypewriterBold.ttf
    30.06.2005 15:48 242.700 LucidaTypewriterRegular.ttf
    8 Datei(en) 2.068.932 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\i386
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 671 jvm.cfg
    1 Datei(en) 671 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\im
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 10.441 indicim.jar
    30.06.2005 15:48 7.939 thaiim.jar
    2 Datei(en) 18.380 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\images
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 <DIR> cursors
    0 Datei(en) 0 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\images\cursors
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 1.318 cursors.properties
    30.06.2005 15:48 153 invalid32x32.gif
    30.06.2005 15:48 165 win32_CopyDrop32x32.gif
    30.06.2005 15:48 153 win32_CopyNoDrop32x32.gif
    30.06.2005 15:48 168 win32_LinkDrop32x32.gif
    30.06.2005 15:48 153 win32_LinkNoDrop32x32.gif
    30.06.2005 15:48 147 win32_MoveDrop32x32.gif
    30.06.2005 15:48 153 win32_MoveNoDrop32x32.gif
    8 Datei(en) 2.410 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\security
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 21.653 cacerts
    30.06.2005 15:48 2.223 java.policy
    30.06.2005 15:48 6.871 java.security
    30.06.2005 15:48 2.921 local_policy.jar
    30.06.2005 15:48 2.440 US_export_policy.jar
    5 Datei(en) 36.108 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 <DIR> Africa
    30.06.2005 15:48 <DIR> America
    30.06.2005 15:48 <DIR> Antarctica
    30.06.2005 15:48 <DIR> Asia
    30.06.2005 15:48 <DIR> Atlantic
    30.06.2005 15:48 <DIR> Australia
    30.06.2005 15:48 1.168 CET
    30.06.2005 15:48 1.072 EET
    30.06.2005 15:48 <DIR> Etc
    30.06.2005 15:48 <DIR> Europe
    30.06.2005 15:48 27 GMT
    30.06.2005 15:48 <DIR> Indian
    30.06.2005 15:48 1.168 MET
    30.06.2005 15:48 <DIR> Pacific
    30.06.2005 15:48 1.068 WET
    30.06.2005 15:48 12.970 ZoneInfoMappings
    6 Datei(en) 17.473 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\Africa
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 65 Abidjan
    30.06.2005 15:48 181 Accra
    30.06.2005 15:48 65 Addis_Ababa
    30.06.2005 15:48 333 Algiers
    30.06.2005 15:48 65 Asmera
    30.06.2005 15:48 85 Bamako
    30.06.2005 15:48 65 Bangui
    30.06.2005 15:48 77 Banjul
    30.06.2005 15:48 77 Bissau
    30.06.2005 15:48 65 Blantyre
    30.06.2005 15:48 65 Brazzaville
    30.06.2005 15:48 27 Bujumbura
    30.06.2005 15:48 1.500 Cairo
    30.06.2005 15:48 213 Casablanca
    30.06.2005 15:48 1.112 Ceuta
    30.06.2005 15:48 85 Conakry
    30.06.2005 15:48 77 Dakar
    30.06.2005 15:48 85 Dar_es_Salaam
    30.06.2005 15:48 65 Djibouti
    30.06.2005 15:48 65 Douala
    30.06.2005 15:48 77 El_Aaiun
    30.06.2005 15:48 313 Freetown
    30.06.2005 15:48 77 Gaborone
    30.06.2005 15:48 65 Harare
    30.06.2005 15:48 105 Johannesburg
    30.06.2005 15:48 97 Kampala
    30.06.2005 15:48 337 Khartoum
    30.06.2005 15:48 65 Kigali
    30.06.2005 15:48 27 Kinshasa
    30.06.2005 15:48 65 Lagos
    30.06.2005 15:48 65 Libreville
    30.06.2005 15:48 27 Lome
    30.06.2005 15:48 65 Luanda
    30.06.2005 15:48 27 Lubumbashi
    30.06.2005 15:48 65 Lusaka
    30.06.2005 15:48 77 Malabo
    30.06.2005 15:48 65 Maputo
    30.06.2005 15:48 89 Maseru
    30.06.2005 15:48 65 Mbabane
    30.06.2005 15:48 73 Mogadishu
    30.06.2005 15:48 77 Monrovia
    30.06.2005 15:48 97 Nairobi
    30.06.2005 15:48 89 Ndjamena
    30.06.2005 15:48 89 Niamey
    30.06.2005 15:48 85 Nouakchott
    30.06.2005 15:48 65 Ouagadougou
    30.06.2005 15:48 77 Porto-Novo
    30.06.2005 15:48 65 Sao_Tome
    30.06.2005 15:48 65 Timbuktu
    30.06.2005 15:48 293 Tripoli
    30.06.2005 15:48 265 Tunis
    30.06.2005 15:48 824 Windhoek
    52 Datei(en) 8.309 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\America
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 1.224 Adak
    30.06.2005 15:48 1.224 Anchorage
    30.06.2005 15:48 65 Anguilla
    30.06.2005 15:48 77 Antigua
    30.06.2005 15:48 1.036 Araguaina
    30.06.2005 15:48 77 Aruba
    30.06.2005 15:48 1.116 Asuncion
    30.06.2005 15:48 137 Barbados
    30.06.2005 15:48 297 Belem
    30.06.2005 15:48 513 Belize
    30.06.2005 15:48 329 Boa_Vista
    30.06.2005 15:48 89 Bogota
    30.06.2005 15:48 1.284 Boise
    30.06.2005 15:48 517 Buenos_Aires
    30.06.2005 15:48 1.096 Cambridge_Bay
    30.06.2005 15:48 792 Cancun
    30.06.2005 15:48 77 Caracas
    30.06.2005 15:48 517 Catamarca
    30.06.2005 15:48 77 Cayenne
    30.06.2005 15:48 65 Cayman
    30.06.2005 15:48 1.960 Chicago
    30.06.2005 15:48 816 Chihuahua
    30.06.2005 15:48 517 Cordoba
    30.06.2005 15:48 137 Costa_Rica
    30.06.2005 15:48 1.116 Cuiaba
    30.06.2005 15:48 77 Curacao
    30.06.2005 15:48 341 Danmarkshavn
    30.06.2005 15:48 1.108 Dawson
    30.06.2005 15:48 509 Dawson_Creek
    30.06.2005 15:48 1.336 Denver
    30.06.2005 15:48 1.200 Detroit
    30.06.2005 15:48 65 Dominica
    30.06.2005 15:48 1.316 Edmonton
    30.06.2005 15:48 313 Eirunepe
    30.06.2005 15:48 105 El_Salvador
    30.06.2005 15:48 377 Fortaleza
    30.06.2005 15:48 1.204 Glace_Bay
    30.06.2005 15:48 1.036 Godthab
    30.06.2005 15:48 1.792 Goose_Bay
    30.06.2005 15:48 1.044 Grand_Turk
    30.06.2005 15:48 65 Grenada
    30.06.2005 15:48 65 Guadeloupe
    30.06.2005 15:48 121 Guatemala
    30.06.2005 15:48 65 Guayaquil
    30.06.2005 15:48 89 Guyana
    30.06.2005 15:48 1.924 Halifax
    30.06.2005 15:48 1.372 Havana
    30.06.2005 15:48 189 Hermosillo
    30.06.2005 15:48 <DIR> Indiana
    30.06.2005 15:48 329 Indianapolis
    30.06.2005 15:48 1.096 Inuvik
    30.06.2005 15:48 1.092 Iqaluit
    30.06.2005 15:48 233 Jamaica
    30.06.2005 15:48 517 Jujuy
    30.06.2005 15:48 1.224 Juneau
    30.06.2005 15:48 <DIR> Kentucky
    30.06.2005 15:48 81 La_Paz
    30.06.2005 15:48 169 Lima
    30.06.2005 15:48 1.560 Los_Angeles
    30.06.2005 15:48 1.500 Louisville
    30.06.2005 15:48 393 Maceio
    30.06.2005 15:48 153 Managua
    30.06.2005 15:48 313 Manaus
    30.06.2005 15:48 89 Martinique
    30.06.2005 15:48 840 Mazatlan
    30.06.2005 15:48 517 Mendoza
    30.06.2005 15:48 1.216 Menominee
    30.06.2005 15:48 788 Merida
    30.06.2005 15:48 880 Mexico_City
    30.06.2005 15:48 1.032 Miquelon
    30.06.2005 15:48 788 Monterrey
    30.06.2005 15:48 581 Montevideo
    30.06.2005 15:48 1.928 Montreal
    30.06.2005 15:48 65 Montserrat
    30.06.2005 15:48 1.284 Nassau
    30.06.2005 15:48 1.960 New_York
    30.06.2005 15:48 1.144 Nipigon
    30.06.2005 15:48 1.228 Nome
    30.06.2005 15:48 329 Noronha
    30.06.2005 15:48 <DIR> North_Dakota
    30.06.2005 15:48 65 Panama
    30.06.2005 15:48 1.096 Pangnirtung
    30.06.2005 15:48 101 Paramaribo
    30.06.2005 15:48 141 Phoenix
    30.06.2005 15:48 313 Port-au-Prince
    30.06.2005 15:48 297 Porto_Velho
    30.06.2005 15:48 65 Port_of_Spain
    30.06.2005 15:48 77 Puerto_Rico
    30.06.2005 15:48 1.144 Rainy_River
    30.06.2005 15:48 1.088 Rankin_Inlet
    30.06.2005 15:48 377 Recife
    30.06.2005 15:48 497 Regina
    30.06.2005 15:48 297 Rio_Branco
    30.06.2005 15:48 1.360 Santiago
    30.06.2005 15:48 201 Santo_Domingo
    30.06.2005 15:48 1.116 Sao_Paulo
    30.06.2005 15:48 1.040 Scoresbysund
    30.06.2005 15:48 2.048 St_Johns
    30.06.2005 15:48 65 St_Kitts
    30.06.2005 15:48 65 St_Lucia
    30.06.2005 15:48 65 St_Thomas
    30.06.2005 15:48 65 St_Vincent
    30.06.2005 15:48 241 Swift_Current
    30.06.2005 15:48 105 Tegucigalpa
    30.06.2005 15:48 852 Thule
    30.06.2005 15:48 1.192 Thunder_Bay
    30.06.2005 15:48 1.276 Tijuana
    30.06.2005 15:48 65 Tortola
    30.06.2005 15:48 1.592 Vancouver
    30.06.2005 15:48 1.108 Whitehorse
    30.06.2005 15:48 1.568 Winnipeg
    30.06.2005 15:48 1.220 Yakutat
    30.06.2005 15:48 1.088 Yellowknife
    110 Datei(en) 76.087 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\America\Indiana
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 765 Knox
    30.06.2005 15:48 361 Marengo
    30.06.2005 15:48 185 Vevay
    3 Datei(en) 1.311 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\America\Kentucky
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 1.260 Monticello
    1 Datei(en) 1.260 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\America\North_Dakota
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 1.276 Center
    1 Datei(en) 1.276 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\Antarctica
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 65 Casey
    30.06.2005 15:48 81 Davis
    30.06.2005 15:48 81 DumontDUrville
    30.06.2005 15:48 65 Mawson
    30.06.2005 15:48 1.124 McMurdo
    30.06.2005 15:48 1.144 Palmer
    30.06.2005 15:48 65 Rothera
    30.06.2005 15:48 65 Syowa
    30.06.2005 15:48 65 Vostok
    9 Datei(en) 2.755 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\Asia
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 65 Aden
    30.06.2005 15:48 1.016 Almaty
    30.06.2005 15:48 1.052 Amman
    30.06.2005 15:48 1.044 Anadyr
    30.06.2005 15:48 1.016 Aqtau
    30.06.2005 15:48 1.016 Aqtobe
    30.06.2005 15:48 269 Ashgabat
    30.06.2005 15:48 1.004 Baghdad
    30.06.2005 15:48 77 Bahrain
    30.06.2005 15:48 984 Baku
    30.06.2005 15:48 65 Bangkok
    30.06.2005 15:48 1.208 Beirut
    30.06.2005 15:48 1.024 Bishkek
    30.06.2005 15:48 77 Brunei
    30.06.2005 15:48 97 Calcutta
    30.06.2005 15:48 361 Choibalsan
    30.06.2005 15:48 181 Chongqing
    30.06.2005 15:48 121 Colombo
    30.06.2005 15:48 1.300 Damascus
    30.06.2005 15:48 97 Dhaka
    30.06.2005 15:48 93 Dili
    30.06.2005 15:48 65 Dubai
    30.06.2005 15:48 261 Dushanbe
    30.06.2005 15:48 1.236 Gaza
    30.06.2005 15:48 205 Harbin
    30.06.2005 15:48 617 Hong_Kong
    30.06.2005 15:48 357 Hovd
    30.06.2005 15:48 1.040 Irkutsk
    30.06.2005 15:48 129 Jakarta
    30.06.2005 15:48 85 Jayapura
    30.06.2005 15:48 1.236 Jerusalem
    30.06.2005 15:48 65 Kabul
    30.06.2005 15:48 1.040 Kamchatka
    30.06.2005 15:48 121 Karachi
    30.06.2005 15:48 193 Kashgar
    30.06.2005 15:48 77 Katmandu
    30.06.2005 15:48 1.040 Krasnoyarsk
    30.06.2005 15:48 121 Kuala_Lumpur
    30.06.2005 15:48 217 Kuching
    30.06.2005 15:48 65 Kuwait
    30.06.2005 15:48 393 Macau
    30.06.2005 15:48 1.040 Magadan
    30.06.2005 15:48 85 Makassar
    30.06.2005 15:48 125 Manila
    30.06.2005 15:48 65 Muscat
    30.06.2005 15:48 1.116 Nicosia
    30.06.2005 15:48 1.048 Novosibirsk
    30.06.2005 15:48 1.040 Omsk
    30.06.2005 15:48 1.016 Oral
    30.06.2005 15:48 97 Phnom_Penh
    30.06.2005 15:48 125 Pontianak
    30.06.2005 15:48 101 Pyongyang
    30.06.2005 15:48 77 Qatar
    30.06.2005 15:48 1.028 Qyzylorda
    30.06.2005 15:48 85 Rangoon
    30.06.2005 15:48 65 Riyadh
    30.06.2005 15:48 4.661 Riyadh87
    30.06.2005 15:48 4.581 Riyadh88
    30.06.2005 15:48 4.581 Riyadh89
    30.06.2005 15:48 97 Saigon
    30.06.2005 15:48 1.044 Sakhalin
    30.06.2005 15:48 281 Samarkand
    30.06.2005 15:48 165 Seoul
    30.06.2005 15:48 201 Shanghai
    30.06.2005 15:48 121 Singapore
    30.06.2005 15:48 381 Taipei
    30.06.2005 15:48 277 Tashkent
    30.06.2005 15:48 1.008 Tbilisi
    30.06.2005 15:48 924 Tehran
    30.06.2005 15:48 77 Thimphu
    30.06.2005 15:48 27 Tokyo
    30.06.2005 15:48 357 Ulaanbaatar
    30.06.2005 15:48 181 Urumqi
    30.06.2005 15:48 97 Vientiane
    30.06.2005 15:48 1.040 Vladivostok
    30.06.2005 15:48 1.040 Yakutsk
    30.06.2005 15:48 1.040 Yekaterinburg
    30.06.2005 15:48 1.016 Yerevan
    78 Datei(en) 51.040 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\Atlantic
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 1.868 Azores
    30.06.2005 15:48 1.124 Bermuda
    30.06.2005 15:48 1.044 Canary
    30.06.2005 15:48 97 Cape_Verde
    30.06.2005 15:48 1.016 Faeroe
    30.06.2005 15:48 1.864 Madeira
    30.06.2005 15:48 577 Reykjavik
    30.06.2005 15:48 27 South_Georgia
    30.06.2005 15:48 1.080 Stanley
    30.06.2005 15:48 65 St_Helena
    10 Datei(en) 8.762 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\Australia
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 1.224 Adelaide
    30.06.2005 15:48 189 Brisbane
    30.06.2005 15:48 1.224 Broken_Hill
    30.06.2005 15:48 125 Darwin
    30.06.2005 15:48 1.288 Hobart
    30.06.2005 15:48 221 Lindeman
    30.06.2005 15:48 1.012 Lord_Howe
    30.06.2005 15:48 1.224 Melbourne
    30.06.2005 15:48 157 Perth
    30.06.2005 15:48 1.224 Sydney
    10 Datei(en) 7.888 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\Etc
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 27 GMT
    30.06.2005 15:48 27 GMT+1
    30.06.2005 15:48 27 GMT+10
    30.06.2005 15:48 27 GMT+11
    30.06.2005 15:48 27 GMT+12
    30.06.2005 15:48 27 GMT+2
    30.06.2005 15:48 27 GMT+3
    30.06.2005 15:48 27 GMT+4
    30.06.2005 15:48 27 GMT+5
    30.06.2005 15:48 27 GMT+6
    30.06.2005 15:48 27 GMT+7
    30.06.2005 15:48 27 GMT+8
    30.06.2005 15:48 27 GMT+9
    30.06.2005 15:48 27 GMT-1
    30.06.2005 15:48 27 GMT-10
    30.06.2005 15:48 27 GMT-11
    30.06.2005 15:48 27 GMT-12
    30.06.2005 15:48 27 GMT-13
    30.06.2005 15:48 27 GMT-14
    30.06.2005 15:48 27 GMT-2
    30.06.2005 15:48 27 GMT-3
    30.06.2005 15:48 27 GMT-4
    30.06.2005 15:48 27 GMT-5
    30.06.2005 15:48 27 GMT-6
    30.06.2005 15:48 27 GMT-7
    30.06.2005 15:48 27 GMT-8
    30.06.2005 15:48 27 GMT-9
    30.06.2005 15:48 27 UCT
    30.06.2005 15:48 27 UTC
    29 Datei(en) 783 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\Europe
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 1.544 Amsterdam
    30.06.2005 15:48 968 Andorra
    30.06.2005 15:48 1.196 Athens
    30.06.2005 15:48 2.032 Belfast
    30.06.2005 15:48 1.040 Belgrade
    30.06.2005 15:48 1.236 Berlin
    30.06.2005 15:48 1.564 Brussels
    30.06.2005 15:48 1.180 Bucharest
    30.06.2005 15:48 1.312 Budapest
    30.06.2005 15:48 1.212 Chisinau
    30.06.2005 15:48 1.152 Copenhagen
    30.06.2005 15:48 1.916 Dublin
    30.06.2005 15:48 1.676 Gibraltar
    30.06.2005 15:48 1.036 Helsinki
    30.06.2005 15:48 1.464 Istanbul
    30.06.2005 15:48 1.140 Kaliningrad
    30.06.2005 15:48 1.048 Kiev
    30.06.2005 15:48 1.868 Lisbon
    30.06.2005 15:48 2.024 London
    30.06.2005 15:48 1.568 Luxembourg
    30.06.2005 15:48 1.416 Madrid
    30.06.2005 15:48 1.440 Malta
    30.06.2005 15:48 1.064 Minsk
    30.06.2005 15:48 1.576 Monaco
    30.06.2005 15:48 1.152 Moscow
    30.06.2005 15:48 1.216 Oslo
    30.06.2005 15:48 1.568 Paris
    30.06.2005 15:48 1.216 Prague
    30.06.2005 15:48 1.108 Riga
    30.06.2005 15:48 1.440 Rome
    30.06.2005 15:48 1.040 Samara
    30.06.2005 15:48 1.064 Simferopol
    30.06.2005 15:48 1.088 Sofia
    30.06.2005 15:48 1.040 Stockholm
    30.06.2005 15:48 1.080 Tallinn
    30.06.2005 15:48 1.164 Tirane
    30.06.2005 15:48 1.052 Uzhgorod
    30.06.2005 15:48 1.008 Vaduz
    30.06.2005 15:48 1.200 Vienna
    30.06.2005 15:48 1.060 Vilnius
    30.06.2005 15:48 1.400 Warsaw
    30.06.2005 15:48 1.072 Zaporozhye
    30.06.2005 15:48 1.056 Zurich
    43 Datei(en) 55.696 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\Indian
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 89 Antananarivo
    30.06.2005 15:48 65 Chagos
    30.06.2005 15:48 27 Christmas
    30.06.2005 15:48 27 Cocos
    30.06.2005 15:48 65 Comoro
    30.06.2005 15:48 65 Kerguelen
    30.06.2005 15:48 65 Mahe
    30.06.2005 15:48 65 Maldives
    30.06.2005 15:48 65 Mauritius
    30.06.2005 15:48 65 Mayotte
    30.06.2005 15:48 65 Reunion
    11 Datei(en) 663 Bytes
    Verzeichnis von C:\oracle\products\omwb\jre\lib\zi\Pacific
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 77 Apia
    30.06.2005 15:48 1.336 Auckland
    30.06.2005 15:48 856 Chatham
    30.06.2005 15:48 1.264 Easter
    30.06.2005 15:48 233 Efate
    30.06.2005 15:48 89 Enderbury
    30.06.2005 15:48 65 Fakaofo
    30.06.2005 15:48 105 Fiji
    30.06.2005 15:48 65 Funafuti
    30.06.2005 15:48 77 Galapagos
    30.06.2005 15:48 65 Gambier
    30.06.2005 15:48 65 Guadalcanal
    30.06.2005 15:48 65 Guam
    30.06.2005 15:48 117 Honolulu
    30.06.2005 15:48 27 Johnston
    30.06.2005 15:48 89 Kiritimati
    30.06.2005 15:48 85 Kosrae
    30.06.2005 15:48 89 Kwajalein
    30.06.2005 15:48 77 Majuro
    30.06.2005 15:48 65 Marquesas
    30.06.2005 15:48 65 Midway
    30.06.2005 15:48 97 Nauru
    30.06.2005 15:48 89 Niue
    30.06.2005 15:48 77 Norfolk
    30.06.2005 15:48 121 Noumea
    30.06.2005 15:48 77 Pago_Pago
    30.06.2005 15:48 65 Palau
    30.06.2005 15:48 77 Pitcairn
    30.06.2005 15:48 65 Ponape
    30.06.2005 15:48 27 Port_Moresby
    30.06.2005 15:48 285 Rarotonga
    30.06.2005 15:48 77 Saipan
    30.06.2005 15:48 65 Tahiti
    30.06.2005 15:48 65 Tarawa
    30.06.2005 15:48 133 Tongatapu
    30.06.2005 15:48 65 Truk
    30.06.2005 15:48 65 Wake
    30.06.2005 15:48 65 Wallis
    30.06.2005 15:48 77 Yap
    39 Datei(en) 6.568 Bytes
    Verzeichnis von C:\oracle\products\omwb\lib
    30.06.2005 15:53 <DIR> .
    30.06.2005 15:53 <DIR> ..
    30.06.2005 15:53 643 boot.jar
    30.06.2005 15:48 1.551.309 ewt3.jar
    30.06.2005 15:48 55.591 ewtcompat-3_3_15.jar
    30.06.2005 15:48 283.684 help4.jar
    30.06.2005 15:48 <DIR> images
    30.06.2005 15:48 921.724 images.jar
    30.06.2005 15:48 1.167.049 jewt.jar
    30.06.2005 15:48 55.149 kodiak.jar
    30.06.2005 15:48 40.960 mfcdao.dll
    30.06.2005 15:48 342.850 oembase-9_2_0.jar
    30.06.2005 15:48 1.410.632 ojdbc14.jar
    30.06.2005 15:48 138.176 olite40.jar
    30.06.2005 15:48 24.928 olite40.msb
    30.06.2005 15:48 65.536 oljdbc40.dll
    30.06.2005 15:48 430.080 olobj40.dll
    30.06.2005 15:48 139.264 olod2040.dll
    30.06.2005 15:48 483.328 olsql40.dll
    30.06.2005 15:53 1.140.244 omwb.jar
    05.08.2005 11:32 1.691.786 omwb_help.jar
    30.06.2005 15:48 740.578 oracle_ice5.jar
    30.06.2005 15:48 5.031.064 orai18n.jar
    30.06.2005 15:48 20.480 registry.dll
    30.06.2005 15:48 55.994 share.jar
    30.06.2005 15:53 642 silent.jar
    30.06.2005 15:48 127.101 xdb.jar
    30.06.2005 15:48 660.606 xmlparserv2.jar
    30.06.2005 15:48 496.377 xsu12.jar
    26 Datei(en) 17.075.775 Bytes
    Verzeichnis von C:\oracle\products\omwb\lib\images
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 935 constraint.gif
    30.06.2005 15:48 114 error.gif
    30.06.2005 15:48 927 foreignkey.gif
    30.06.2005 15:48 938 index.gif
    30.06.2005 15:48 886 objpriv.gif
    30.06.2005 15:48 25.331 omwb_blank.gif
    30.06.2005 15:48 911 package.gif
    30.06.2005 15:48 921 primarykey.gif
    30.06.2005 15:48 906 procedure.gif
    30.06.2005 15:48 93 pro_c.gif
    30.06.2005 15:48 888 role.gif
    30.06.2005 15:48 869 synonym.gif
    30.06.2005 15:48 907 table.gif
    30.06.2005 15:48 943 tablespace.gif
    30.06.2005 15:48 944 trigger.gif
    30.06.2005 15:48 890 user.gif
    30.06.2005 15:48 903 view.gif
    30.06.2005 15:48 85 warning.gif
    18 Datei(en) 38.391 Bytes
    Verzeichnis von C:\oracle\products\omwb\log
    08.08.2006 14:57 <DIR> .
    08.08.2006 14:57 <DIR> ..
    08.08.2006 14:58 3.300 Error.log
    08.08.2006 14:57 0 sqlnet.log
    2 Datei(en) 3.300 Bytes
    Verzeichnis von C:\oracle\products\omwb\msaccess_exporter
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 17.225 omwb.hlp
    29.07.2005 20:35 1.802.240 omwb2000.mde
    29.07.2005 20:35 1.765.376 omwb2002.mde
    29.07.2005 20:35 1.773.568 omwb2003.mde
    29.07.2005 20:35 761.856 omwb97.mde
    30.06.2005 15:48 17.411 schema.dtd
    30.06.2005 15:48 86.016 small.mdb
    7 Datei(en) 6.223.692 Bytes
    Verzeichnis von C:\oracle\products\omwb\offline_capture
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 <DIR> Informix7
    30.06.2005 15:48 <DIR> Informix9
    30.06.2005 15:48 <DIR> SQLServer2K
    30.06.2005 15:48 <DIR> SQLServer6
    30.06.2005 15:48 <DIR> SQLServer7
    30.06.2005 15:48 <DIR> Sybase11
    30.06.2005 15:48 <DIR> Sybase12
    0 Datei(en) 0 Bytes
    Verzeichnis von C:\oracle\products\omwb\offline_capture\Informix7
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 6.125 IDS7_DSML_SCRIPT.BAT
    30.06.2005 15:48 5.944 IDS7_DSML_SCRIPT.sh
    30.06.2005 15:48 941 Readme.linux
    3 Datei(en) 13.010 Bytes
    Verzeichnis von C:\oracle\products\omwb\offline_capture\Informix9
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 7.223 IDS94_DSML_SCRIPT.bat
    30.06.2005 15:48 7.035 IDS9_DSML_SCRIPT.bat
    30.06.2005 15:48 7.187 IDS9_DSML_SCRIPT.sh
    30.06.2005 15:48 941 Readme.linux
    30.06.2005 15:48 548 Readme.windows
    5 Datei(en) 22.934 Bytes
    Verzeichnis von C:\oracle\products\omwb\offline_capture\SQLServer2K
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 14.658 OMWB_OFFLINE_CAPTURE.BAT
    30.06.2005 15:48 15.471 OMWB_OFFLINE_CAPTURE.sh
    30.06.2005 15:48 42 properties.sql
    30.06.2005 15:48 7.133 SS2K_BCP_SCRIPT.BAT
    30.06.2005 15:48 7.856 SS2K_BCP_SCRIPT.sh
    5 Datei(en) 45.160 Bytes
    Verzeichnis von C:\oracle\products\omwb\offline_capture\SQLServer6
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 13.268 create_ss65_index_tables.sql
    30.06.2005 15:48 773 drop_ss65_index_tables.sql
    30.06.2005 15:48 15.968 OMWB_OFFLINE_CAPTURE.BAT
    30.06.2005 15:48 16.864 OMWB_OFFLINE_CAPTURE.sh
    30.06.2005 15:48 42 properties.sql
    30.06.2005 15:48 3.828 SS65_BCP_SCRIPT.bat
    30.06.2005 15:48 4.128 SS65_BCP_SCRIPT.sh
    7 Datei(en) 54.871 Bytes
    Verzeichnis von C:\oracle\products\omwb\offline_capture\SQLServer7
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 678 create_ss7_emulation_views.sql
    30.06.2005 15:48 56 drop_ss7_emulation_views.sql
    30.06.2005 15:48 14.913 OMWB_OFFLINE_CAPTURE.BAT
    30.06.2005 15:48 15.574 OMWB_OFFLINE_CAPTURE.sh
    30.06.2005 15:48 42 properties.sql
    30.06.2005 15:48 2.576 SS7_BCP_SCRIPT.BAT
    30.06.2005 15:48 2.859 SS7_BCP_SCRIPT.sh
    7 Datei(en) 36.698 Bytes
    Verzeichnis von C:\oracle\products\omwb\offline_capture\Sybase11
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 12.052 create_sybase_index_tables.sql
    30.06.2005 15:48 736 drop_sybase_index_tables.sql
    30.06.2005 15:48 16.192 OMWB_OFFLINE_CAPTURE.BAT
    30.06.2005 15:48 17.155 OMWB_OFFLINE_CAPTURE.sh
    30.06.2005 15:48 42 properties.sql
    30.06.2005 15:48 910 Readme.linux
    30.06.2005 15:48 4.763 SYBASE11_BCP_SCRIPT.bat
    30.06.2005 15:48 5.085 SYBASE11_BCP_SCRIPT.sh
    8 Datei(en) 56.935 Bytes
    Verzeichnis von C:\oracle\products\omwb\offline_capture\Sybase12
    30.06.2005 15:48 <DIR> .
    30.06.2005 15:48 <DIR> ..
    30.06.2005 15:48 3.309 create_emulation_views.sql
    30.06.2005 15:48 12.052 create_sybase_index_tables.sql
    30.06.2005 15:48 333 drop_emulation_views.sql
    30.06.2005 15:48 736 drop_sybase_index_tables.sql
    30.06.2005 15:48 16.190 OMWB_OFFLINE_CAPTURE.BAT
    30.06.2005 15:48 17.155 OMWB_OFFLINE_CAPTURE.sh
    30.06.2005 15:48 42 properties.sql
    30.06.2005 15:48 910 Readme.linux
    30.06.2005 15:48 4.584 SYBASE12_BCP_SCRIPT.bat
    30.06.2005 15:48 4.920 SYBASE12_BCP_SCRIPT.sh
    10 Datei(en) 60.231 Bytes
    Verzeichnis von C:\oracle\products\omwb\olite
    08.08.2006 12:47 <DIR> .
    08.08.2006 12:47 <DIR> ..
    08.08.2006 12:48 983.040 omwb.odb
    08.08.2006 12:48 0 omwb.plg
    30.06.2005 15:48 200.704 omwb_bkup.odb
    3 Datei(en) 1.183.744 Bytes
    Verzeichnis von C:\oracle\products\omwb\plugins
    07.08.2006 13:29 <DIR> .
    07.08.2006 13:29 <DIR> ..
    30.06.2005 15:48 0 INSTALL_PLUGINS_HERE
    21.07.2006 13:09 279.621 UDB7.jar
    2 Datei(en) 279.621 Bytes
    Anzahl der angezeigten Dateien:
    900 Datei(en) 71.469.738 Bytes
    218 Verzeichnis(se), 35.175.723.008 Bytes frei

Maybe you are looking for

  • Mixed XP and Windows 7 Environment

    I installed a J4680 as a wireless device using my XP machine.  It works fine.  I then directly accessed the printer through the network on my Windows 7 machine and it prints oddly (e.g., the same image displayed twice on a page prints correctly the f

  • How do I, Add a folder to BIS Email account

    Hi! I use a cpanel email account (IMAP4) on my blackberry apart form my gmail account,  Now i already know from http://btsc.webapps.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB05133 that it isnt possible for my blackberry devi

  • Xml extract problem

    I have a problem about sql to extract xml node,the sql followed: select a.disptx.extract('/Record/_20/text()').getStringVal() from swifti a where swidty = '6666666666666666666' and the clob is : <Record> <swrctm>2223</swrctm> <swintm>22:23:13</swintm

  • When I draw with the vector pen and save the path, if I open it in illustrator does it open properly?

    Hi This is a newbie sort of question, so thank you for your patience. I barely use vector images. But I need to draw an entire graphic in vector so I have drawn it using the pen. My question is if I save the path (.ai) file when I open it in Illustra

  • Expanding Textfield in Adobe LiveCycle Designer

    I've got an urgent problem with Adobe LiveCycle Designer and I really could use some help. The problem is that I'm trying to get my textfield expandable, but whatever I try, it's not working. What I'm trying to get done is that you can fill in a text