DbXplorer IBM iSeries AS400 tables not showing

Hi all,
I was hoping to use the JPA generation on our IBM AS400 tables.
The DbXplorer gets connected to our AS400 over the JT400 Toolbox JDBC type 4.0 driver. All schema's/libraries show.
However when I open a specific library no tables are shown.
How come my tables are not showing?
This is my configuration:
Driver Class: jt400.jar (Official V5R2, not JTOpen, although I have tried that one to.)
JDBC Driver Class: com.ibm.as400.access.AS400JDBCDriver
Database URL: jdbc:as400://SERVERNAME;date format=iso;libraries=*LIBL,FXSARTHUR
Logging:
These entries show in the com.m7.nitrox log:
14-apr-2008 10:39:55 com.m7.wide.eclipse.jstudio.Plugin activate
INFO: max mem: 748
14-apr-2008 11:05:50 com.m7.wide.database.preferences.DatabaseDefaults getDriverClassNames
SEVERE: java.lang.NoClassDefFoundError: com/ibm/sslight/SSLightKeyRing
14-apr-2008 11:05:50 com.m7.wide.database.preferences.DatabaseDefaults getDriverClassNames
SEVERE: java.lang.NoClassDefFoundError: javax/servlet/http/HttpServlet
14-apr-2008 11:05:51 com.m7.wide.database.preferences.DatabaseDefaults getDriverClassNames
SEVERE: java.lang.NoClassDefFoundError: com/ibm/as400/ui/framework/java/DataBean

Hi Arthur,
The DbXplorer is not tested against AS400 platform. Please open a support case to investigate more into this configuration.
http://support.bea.com/
Thanks!

Similar Messages

  • Error with DG4ODBC while setting up connectivity from oracle to IBM iSeries AS400 version V7R1

    Hi,
    I have Enterprise linux 64-bit hosting Oracle 11gR2 64-bit (11.2.0.1) database.  I have access to IBM iSeries AS400 version V7R1.  I am trying to connect to IBM iSeries from Oracle Database through ODBC connectivity using Database Link.  The following is what I have done.
    On the Database (Linux) host Installed iSeriesAccess-7.1.0-1.0.x86_64.rpm provided by IBM.
    my odbcinst.ini has the following entries:
    [PostgreSQL]
    Description             = ODBC for PostgreSQL
    Driver          = /usr/lib/libodbcpsql.so
    Setup           = /usr/lib/libodbcpsqlS.so
    FileUsage               = 1
    [iSeries Access ODBC Driver]
    Description             = iSeries Access for Linux ODBC Driver
    Driver          = /opt/ibm/iSeriesAccess/lib64/libcwbodbc.so
    Setup           = /opt/ibm/iSeriesAccess/lib64/libcwbodbcs.so
    NOTE1           = If using unixODBC 2.2.11 or later and you want the 32 and 64-bit ODBC drivers to share DSN's,
    NOTE2           = the following Driver64/Setup64 keywords will provide that support.
    Driver64                = /opt/ibm/iSeriesAccess/lib64/libcwbodbc.so
    Setup64         = /opt/ibm/iSeriesAccess/lib64/libcwbodbcs.so
    Threading               = 2
    DontDLClose             = 1
    UsageCount              = 1
    [iSeries Access ODBC Driver 64-bit]
    Description             = iSeries Access for Linux 64-bit ODBC Driver
    Driver          = /opt/ibm/iSeriesAccess/lib64/libcwbodbc.so
    Setup           = /opt/ibm/iSeriesAccess/lib64/libcwbodbcs.so
    Threading               = 2
    DontDLClose             = 1
    UsageCount              = 1
    The odbc.ini has the following entries:
    [ODBC Data Sources]
    dg4odbc = connection to db2
    [dg4odbc]
    Driver = /opt/ibm/iSeriesAccess/lib64/libcwbodbc.so
    Description=iSeries Access for Linux ODBC Driver
    LogonID=
    Password=
    Address=  (IBM host IP Address)
    location=Vm520
    noprompt=true
    system= (IBM host IP Address)
    UNICODE=UTF-8
    Naming = 0
    ConnectionType = 0
    CommitMode = 2
    ExtendedDynamic = 0
    AllowDataCompression = 1
    LibraryView = 0
    AllowUnsupportedChar = 0
    ForceTranslation = 0
    Trace = 0
    made sure I could connect via ODBC and DSN using the following command:
    isql dg4odbc oracle oracle1 -v
    +---------------------------------------+
    | Connected!                            |
    |                                       |
    | sql-statement                         |
    | help [tablename]                      |
    | quit                                  |
    |                                       |
    +---------------------------------------+
    SQL>
    SQLRowCount returns -1
    600 rows fetched
    SQL>
    could query the table in a library on AS400.
    The $ORACLE_HOME/hs/admin/initdg4odbc.ora has the following entries:
    # This is a sample agent init file that contains the HS parameters that are
    # needed for the Database Gateway for ODBC
    # HS init parameters
    HS_FDS_CONNECT_INFO = dg4odbc
    HS_FDS_TRACE_LEVEL = off
    HS_FDS_SHAREABLE_NAME=/etc/newlib/libodbc.so
    HS_FDS_TRACE_LEVEL = 255
    HS_FDS_SUPPORT_STATISTICS=FALSE
    # ODBC specific environment variables
    set ODBCINI=/etc/odbc.ini
    # Environment variables required for the non-Oracle system
    The listener entries are as follows:
        (SID_DESC =
          (SID_NAME = dg4odbc)
          (ORACLE_HOME = /opt/oracle/dbs/product/11.2.0/dbhome_1)
          (PROGRAM = dg4odbc)
    Stopped and started the listener.
    The TNS entry is as follows:
    armcdb2 =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = vmw-dev-rmsdb.xxx.vmc)(PORT = 1521))
        (CONNECT_DATA =
        (SID=dg4odbc)
        (HS=OK)
    Could tnsping :
    oracle@rmsdev[/opt/oracle/dbs/product/11.2.0/dbhome_1/network/admin]$ tnsping armcdb2
    TNS Ping Utility for Linux: Version 11.2.0.1.0 - Production on 11-JUL-2013 16:01:23
    Copyright (c) 1997, 2009, Oracle.  All rights reserved.
    Used parameter files:
    /opt/oracle/dbs/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = vmw-dev-rmsdb.xxx.vmc)(PORT = 1521)) (CONNECT_DATA = (SID=dg4odbc)) (HS=OK))
    OK (0 msec)
    created a public database link as follows:
    SQL> create database link samplink connect to "oracle" identified by "oracle1" using 'armcdb2';
    Database link created.
    When I run a select query I get errors as follows:
    SQL> select * from mdiaz.AREMAIL@samplink;
    select * from mdiaz.AREMAIL@samplink
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    408
    Below is the Trace file of dg4odbc:
    Oracle Corporation --- THURSDAY  JUL 11 2013 16:06:03.627
    Heterogeneous Agent Release
    11.2.0.1.0
    Oracle Corporation --- THURSDAY  JUL 11 2013 16:06:03.627
        Version 11.2.0.1.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "255"
    Entered hgosdip
    setting HS_OPEN_CURSORS to default of 50
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of HS_TRANSACTION_LOG
    setting HS_IDLE_TIMEOUT to default of 0
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "AL32UTF8"
    setting HS_FDS_TIMESTAMP_MAPPING to default of "DATE"
    setting HS_FDS_DATE_MAPPING to default of "DATE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    setting HS_FDS_FETCH_ROWS to default of "100"
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    setting HS_FDS_RSET_RETURN_ROWCOUNT to default of "FALSE"
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_CHARACTER_SEMANTICS to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    HOSGIP returned value of "FALSE" for HS_FDS_SUPPORT_STATISTICS
    Parameter HS_FDS_QUOTE_IDENTIFIER is not set
    setting HS_KEEP_REMOTE_COLUMN_SIZE to default of "OFF"
    setting HS_FDS_GRAPHIC_TO_MBCS to default of "FALSE"
    setting HS_FDS_MBCS_TO_GRAPHIC to default of "FALSE"
    Default value of 64 assumed for HS_FDS_SQLLEN_INTERPRETATION
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStatistics;gtw$:SQLGetInfo"
    setting HS_FDS_DELAYED_OPEN to default of "TRUE"
    setting HS_FDS_WORKAROUNDS to default of "0"
    Exiting hgosdip, rc=0
    ORACLE_SID is "dg4odbc"
    Product-Info:
      Port Rls/Upd:1/0 PrdStat:0
      Agent:Oracle Database Gateway for ODBC
      Facility:hsa
      Class:ODBC, ClassVsn:11.2.0.1.0_0008, Instance:dg4odbc
    Exiting hgogprd, rc=0
    hostmstr:          0:   HOA After hoagprd
    hostmstr:          0:   HOA Before hoainit
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=871
    HOCXU_DRV_NCHAR=873
    HOCXU_DB_CSET=871
    HOCXU_SEM_VER=112000
    Entered hgolofn at 2013/07/11-16:06:03
    HOSGIP for "HS_FDS_SHAREABLE_NAME" returned "/etc/newlib/libodbc.so"
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLAllocHandle
    symbol_peflctx=0xaab7c2f0
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLBindCol
    symbol_peflctx=0xaab7c9d0
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLBindParameter
    symbol_peflctx=0xaab7cb6c
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLCancel
    symbol_peflctx=0xaab7d416
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLDescribeParam
    symbol_peflctx=0xaab7f7dc
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLDisconnect
    symbol_peflctx=0xaab7f978
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLEndTran
    symbol_peflctx=0xaab7fe42
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLExecute
    symbol_peflctx=0xaab808ac
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLFetch
    symbol_peflctx=0xaab80b5c
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLFreeHandle
    symbol_peflctx=0xaab816aa
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLFreeStmt
    symbol_peflctx=0xaab82144
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetData
    symbol_peflctx=0xaab83ad8
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetEnvAttr
    symbol_peflctx=0xaab84e42
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetFunctions
    symbol_peflctx=0xaab84fce
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLMoreResults
    symbol_peflctx=0xaab85a0a
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLNumResultCols
    symbol_peflctx=0xaab85fba
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLParamData
    symbol_peflctx=0xaab86102
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLPutData
    symbol_peflctx=0xaab871fc
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLRowCount
    symbol_peflctx=0xaab87364
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLSetEnvAttr
    symbol_peflctx=0xaab89054
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLSetDescRec
    symbol_peflctx=0xaab88e20
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLColAttributeW
    symbol_peflctx=0xaab7d6ba
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLColumnsW
    symbol_peflctx=0xaab7e264
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLConnectW
    symbol_peflctx=0xaab7e6b4
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLDescribeColW
    symbol_peflctx=0xaab7f39e
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLDriverConnectW
    symbol_peflctx=0xaab7fa9a
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLExecDirectW
    symbol_peflctx=0xaab805e6
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLForeignKeysW
    symbol_peflctx=0xaab80de6
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetConnectAttrW
    symbol_peflctx=0xaab82714
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetDescFieldW
    symbol_peflctx=0xaab83c76
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetDescRecW
    symbol_peflctx=0xaab83fbe
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetDiagFieldW
    symbol_peflctx=0xaab8448a
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetDiagRecW
    symbol_peflctx=0xaab84916
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetInfoW
    symbol_peflctx=0xaab85136
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetStmtAttrW
    symbol_peflctx=0xaab85456
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLGetTypeInfoW
    symbol_peflctx=0xaab8576e
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLPrepareW
    symbol_peflctx=0xaab863b0
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLPrimaryKeysW
    symbol_peflctx=0xaab8667c
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLProcedureColumnsW
    symbol_peflctx=0xaab86a14
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLProceduresW
    symbol_peflctx=0xaab86e64
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLSetConnectAttrW
    symbol_peflctx=0xaab874ac
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLSetStmtAttrW
    symbol_peflctx=0xaab896c8
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLSetDescFieldW
    symbol_peflctx=0xaab88b00
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLStatisticsW
    symbol_peflctx=0xaab89e64
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Entered hgolofns at 2013/07/11-16:06:03
    libname=/etc/newlib/libodbc.so, funcname=SQLTablesW
    symbol_peflctx=0xaab8a668
    hoaerr:0
    Exiting hgolofns at 2013/07/11-16:06:03
    Exiting hgolofn, rc=0 at 2013/07/11-16:06:03
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "100"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    HOSGIP for "HS_KEEP_REMOTE_COLUMN_SIZE" returned "OFF"
    HOSGIP for "HS_FDS_DELAYED_OPEN" returned "TRUE"
    HOSGIP for "HS_FDS_WORKAROUNDS" returned "0"
    HOSGIP for "HS_FDS_MBCS_TO_GRAPHIC" returned "FALSE"
    HOSGIP for "HS_FDS_GRAPHIC_TO_MBCS" returned "FALSE"
    Invalid value of 64 given for HS_FDS_SQLLEN_INTERPRETATION
    treat_SQLLEN_as_compiled = 1
    Exiting hgoinit, rc=0 at 2013/07/11-16:06:03
    hostmstr:          0:   HOA After hoainit
    hostmstr:          0:   HOA Before hoalgon
    Entered hgolgon at 2013/07/11-16:06:03
    reco:0, name:oracle, tflag:0
    Entered hgosuec at 2013/07/11-16:06:03
    Exiting hgosuec, rc=0 at 2013/07/11-16:06:03
    Entered hgopoer at 2013/07/11-16:06:03
    hgopoer, line 233: got native error 408 and sqlstate 410; message follows...
    408
    Exiting hgopoer, rc=0 at 2013/07/11-16:06:03
    hgolgon, line 193: calling SQLSetConnectAttr got sqlstate 410
    Exiting hgolgon, rc=28500 at 2013/07/11-16:06:03 with error ptr FILE:hgolgon.c LINE:193 FUNCTION:hgolgon() ID:Connection Attribute: TRACE
    hostmstr:          0:   HOA After hoalgon
    RPC Calling nscontrol(0), rc=0
    hostmstr:          0: RPC Before Exit Agent
    hostmstr:          0:   HOA Before hoaexit
    Entered hgoexit at 2013/07/11-16:06:03
    Exiting hgoexit, rc=0
    hostmstr:          0:   HOA After hoaexit
    hostmstr:          0: RPC After Exit Agent
    I have looked up the errors on Oracle forums and could not get any valuable help anywhere.  
    Can someone kindly help out where I am going wrong?
    Thanks,
    Ram.

    Hello kgronau,
    Thank You very much for your recommendations.  I removed the parameter HS_FDS_TRACE_LEVEL = 255.
    I added HS_FDS_FETCH_ROWS=1 and also HS_NLS_NCHAR = UCS2
    Tested my sql statement, which yielded the result as follows:
    SQL> select * from mdiaz.AREMAIL@samplink;
    select * from mdiaz.AREMAIL@samplink
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    ㈵″㠵6
    SO I thought I would give a try of removing the line HS_NLS_NCHAR = UCS2
    and again tested my sql statement and it worked like a charm!!!!
    I tested a count(*) and got the results back.
    SQL> select count(*) from mdiaz.AREMAIL@samplink;
      COUNT(*)
           600
    I really appreciate your valuable pointers and help.
    Thanks once again!!!
    Ram.

  • Table not showing data after refresh

    Hi gurus ,
    A unique problem We have added a field in the custom table . once moved to quality system it is not showing up the data whwn when we do a select query on that table in se16 . say total entries are ten thousand four of them are checked and when display not checked i.e eq space we get just 100 entries on number of entries ..i asked to regenerate the table in quality system but it did not help .The Quality system was refresh 1 month ago and we see it not working after it ..please suggest the correct steps we need to perform  to recover the data . Adjust database with keep data has already been done ...

    Hi Anjaneya Bhardwaj,
    If I understand well, your issue is that you have a SELECT in your program, saying newfield is your newfield, something like:
    SELECT ... FROM ztable INTO ... WHERE newfield = space.
    and it doesn't return the records that existed in quality before newfield was added.
    It it because, by default, when you add a field to an existing database table, with records already present, they are assigned the NULL value, which is different from space.
    They can be retrieved using WHERE newfield IS NULL.
    Usually, to avoid this issue, when we add a new field, we tick the "no null value" checkbox for this new field, in SE11 transaction. That will initialize the field of existing records, to the initial value (space for characters, 0 for numeric fields, etc.) Note: maybe it can be counter performant for big tables...
    Solution for your issue, run this code once:
    UPDATE ztable SET newfield = space WHERE newfield IS NULL.
    BR
    Sandra

  • Condition table not showing up in VKOA

    Hi All,
    We have upgraded the sytsem from 4.6c to ECC 6.0.And i have observed that in Transaction VKOA, one of the condition table is not showing up. Can anyone guide me on this?

    Hi,
    If any one of the tables is missing, that can be included.
    The menu path: SPRO >> SD >> Basic Function >> Account Assignment/ Costing >> Revenue Account Determination
    1.     Define dependencies of Revenue Account Determination: Here you can check whether the required table is available; if it is not available create it.
    2.     Define access sequences and Account Determination types: Here select u2018Maintain Access sequences for Account determinationu2019.  You will get the access sequences here. Eg: KOFI. Select the access sequence and click on u2018Accessesu2019. You will get the table details. Here you can maintain the required tables; rearrange as per your requriment.
    Regards,
    K Bharathi

  • Tables not showing

    For one of my connections the tables are not shown in the tree view.
    When i startup with debug info I see following debug lines:
    Prepared:
    select
    * from (
    SELECT OBJECT_NAME, OBJECT_ID ,'' short_name, 'TRUE' partition, OWNER OBJECT_OWNER, CREATED, LAST_DDL_TIME
    FROM SYS.ALL_OBJECTS O
    WHERE O.OWNER = :SCHEMA
    AND O.OBJECT_TYPE = 'TABLE'
    AND O.GENERATED = 'N'
    AND O.OBJECT_ID NOT IN ( SELECT PURGE_OBJECT FROM RECYCLEBIN )
    AND NOT EXISTS (SELECT 1 FROM SYS.ALL_MVIEWS WHERE MVIEW_NAME = O.OBJECT_NAME AND OWNER = O.OWNER)
    union all
    SELECT OBJECT_NAME, OBJECT_ID , syn.SYNONYM_NAME short_NAME,
    'TRUE' partition, SYN.TABLE_OWNER OBJECT_OWNER, o.CREATED, o.LAST_DDL_TIME
    FROM SYS.ALL_OBJECTS O, sys.user_synonyms syn
    WHERE syn.table_owner = o.owner
    and syn.TABLE_NAME = o.object_NAME
    and o.object_type = 'TABLE'
    and :INCLUDE_SYNS = 1
    and :SCHEMA = USER
    AND O.GENERATED = 'N'
    AND O.OBJECT_ID NOT IN ( SELECT PURGE_OBJECT FROM RECYCLEBIN)
    Bind:SCHEMA:STANDARD_DEMO_RLAST_UNI
    Bind:INCLUDE_SYNS:null
    When I execute this query, 238 rows are returned, but the table names do not show up in the UI.
    I only have this problem with our unicode DB, i.e.
    NLS_CHARACTERSET is set to AL32UTF8,
    NLS_NCHAR_CHARACTERSET is set to AL16UTF16.

    Hey,
    Perhaps my first posting is too complex. What I see is that for one of my connections, i don't see the tables, whereas the SQL that is executed in fact returns tables. (so these are not synonyms to tables in other schema's)
    The difference between this connection and the other connections I've tried, is the characterset of the database.
    Johan

  • Tables not showing in a new Database created using CREATE DATABASE command

    Hi there! I've created a database using "Script Database As" in SSMS. Here's the code generated:
    USE [master]
    GO
    /****** Object:  Database [PLMAINDB]    Script Date: 08/22/2014 11:25:44 ******/
    CREATE DATABASE [PLTESTDB] ON  PRIMARY 
    ( NAME = N'CLIENTSPRIME_Data', FILENAME = N'C:\TEMPDB\CLP_Data.mdf' , SIZE = 217472KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%)
     LOG ON 
    ( NAME = N'CLIENTSPRIME_Log', FILENAME = N'C:\TEMPDB\CLP_Data.ldf' , SIZE = 1024KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%)
    GO
    ALTER DATABASE [PLMAINDB] SET COMPATIBILITY_LEVEL = 80
    GO
    IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
    begin
    EXEC [PLMAINDB].[dbo].[sp_fulltext_database] @action = 'disable'
    end
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_NULL_DEFAULT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_NULLS OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_PADDING OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_WARNINGS OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ARITHABORT ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_CLOSE ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_CREATE_STATISTICS ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_SHRINK ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_UPDATE_STATISTICS ON 
    GO
    ALTER DATABASE [PLTESTDB] SET CURSOR_CLOSE_ON_COMMIT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET CURSOR_DEFAULT  GLOBAL 
    GO
    ALTER DATABASE [PLTESTDB] SET CONCAT_NULL_YIELDS_NULL OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET NUMERIC_ROUNDABORT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET QUOTED_IDENTIFIER OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET RECURSIVE_TRIGGERS OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET  DISABLE_BROKER 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_UPDATE_STATISTICS_ASYNC OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET DATE_CORRELATION_OPTIMIZATION OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET TRUSTWORTHY OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ALLOW_SNAPSHOT_ISOLATION OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET PARAMETERIZATION SIMPLE 
    GO
    ALTER DATABASE [PLTESTDB] SET READ_COMMITTED_SNAPSHOT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET HONOR_BROKER_PRIORITY OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET  READ_WRITE 
    GO
    ALTER DATABASE [PLTESTDB] SET RECOVERY FULL 
    GO
    ALTER DATABASE [PLTESTDB] SET  MULTI_USER 
    GO
    ALTER DATABASE [PLTESTDB] SET PAGE_VERIFY TORN_PAGE_DETECTION  
    GO
    ALTER DATABASE [PLTESTDB] SET DB_CHAINING OFF 
    GO
    The mdf and ldf files for PLTESTDB were created successfully. The issue I'm having is that tables are not showing when under PLTESTDB. I've searched online and most answers point to Permission issue. I already added user with the ff. database roles 
    db_owner
    db_reader
    db_writer
    But even after refreshing or even closing relaunching SSMS, i could not see any table under PLTESTDB. I've spent  a lot of time already on this but can't find the fix. I might be missing something here. I tried it on another computer but same issue
    persists. 
    Any ideas or suggestions on how to get this resolved are highly appreciated! Thanks in advance. 
    Bong Robles

    You're right Olaf! The above script is only for creating DB and not tables.   I should have done further reading.  I tried now generating scripts for all objects and I got the ff. error:
    Msg 207, Level 16, State 1, Procedure CallbackFormViewUpdateCommand, Line 38
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 37
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 39
    Invalid column name 'upsizets'.
    Msg 1018, Level 15, State 1, Procedure GrabCounterUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and parenthesis are now required. See SQL Server Books Online for proper syntax.
    Msg 1018, Level 15, State 1, Procedure GrabCounterAllUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and I parenthesis are now required. See SQL Server Books Online for proper syntax.
    I'm working on fixing the errors now. I think I can handle this now.
    Really appreciate your quick help. Thanks!
    Bong Robles
    I think script is having reference to a column which doesnt exist
    But unless we see script we will not able to understand the exact reason
    Can you post script?
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • WRT54G v6 client table not showing wired clients

    I have a WRT54G v6 using the lastest firmware.  Is there any 3rd party software that can display what clients I have on my network?  The reason I'm asking is because my router will only show the wireless clients and not the ones connected on the wired side.  Other than that everything works fine.

    I have similar problem. DHCP client table shows only wireless laptops using dynamic ip address. All my wired destop (dynamic ip), and other static ip devices both wired or wireless do not show up in DHCP client table. Any idea? I have v8.

  • Tables not showing in DB Expert - option selected

    Post Author: Clogix
    CA Forum: Data Connectivity and SQL
    Crystal XI R2 - Even though the option to show tables is selected, they do not show up for a SQL database.  OK in our Crystal 10 but not in XI.  Does anyone have a resolution?

    You're right Olaf! The above script is only for creating DB and not tables.   I should have done further reading.  I tried now generating scripts for all objects and I got the ff. error:
    Msg 207, Level 16, State 1, Procedure CallbackFormViewUpdateCommand, Line 38
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 37
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 39
    Invalid column name 'upsizets'.
    Msg 1018, Level 15, State 1, Procedure GrabCounterUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and parenthesis are now required. See SQL Server Books Online for proper syntax.
    Msg 1018, Level 15, State 1, Procedure GrabCounterAllUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and I parenthesis are now required. See SQL Server Books Online for proper syntax.
    I'm working on fixing the errors now. I think I can handle this now.
    Really appreciate your quick help. Thanks!
    Bong Robles
    I think script is having reference to a column which doesnt exist
    But unless we see script we will not able to understand the exact reason
    Can you post script?
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Tables not showing up

    i've oracle 10 g installed in my comp on windows....
    till now it was working fine....
    but now... when i start database n try to access tables through
    home - > object browser - > show tables ..... it's not showing any tables
    or
    home - > sql -> sql commands -> select * from tab
    (in this case ... there is not even run option to run the command )
    however i can see tables through Run Sql Command Line ... (the console)
    does anyone have any idea...
    thank you

    You can reinstall Oracle if you want to, your datafiles and database structures don't depend on the oracle home. However this would be just a waist of time, as the root problem isn't an EM configuration.
    If you are sure your tables are on the target schema, then just double check the conditions you have typed from the EM DB Control to query these tables.
    ~ Madrid

  • Tables not showing as desired

    Hi...thanks for readling...appreciate...
    Having a tables issue:
    As one can see from the screen grabs, the table view shows the floral graphic coming right under the text....just over to the side. However, in the Live View, the floral is quite a bit further down the page.
    Here is the link to the page: http://www.tmforwomen.org
    As far as knowing how to do it, have coded all the tables Cells 'top'. Please enlighten me if you have any clues how to make the live view, and the view in all browsers, like the top view below, meaning floral is up further.
    Thanks ever so much,
    Warmly Hope
    Am using DW CS5.5

    I'm not a fan of table based layouts.  CSS is so much more efficient.  Tables are for displaying tabular data like spreadsheets & charts.
    If you use CSS for layouts, you can position your background image with CSS.
    http://www.w3schools.com/css/css_background.asp
    From Tables to CSS Web Design Part 1 -
    http://www.adobe.com/devnet/dreamweaver/articles/table_to_css_pt1.html
    From Tables to CSS Web Design Part 2 -
    http://www.adobe.com/devnet/dreamweaver/articles/table_to_css_pt2.html
    Nancy O.

  • Transported table not showing all fields

    dear all
    can u plz help me i have transported a table but its not showing all fileds. whatcan i doto make it show all fields in the table
    Regards
    Flo

    Hi,
    Are there any custom data elements used in the table.
    if so, is all the data elements transported to the table
    first all the data elements to be transported and then the table should be transported if in case they are
    in different transports.
    Regards,
    Venkatesh

  • AP_Checks table not showing any records.

    I am using oracle e-business suite 11.5.x. The table ap_checks is not showing any records at all. Please let me know as when i have to look into ap_checks and when into ap_checks_all table. The code that i am looking into is running for very long time and am sure the ap_checks is waht it is pointing to and it is correct.

    Hi.
    What is the result of?:
    SQL>SELECT DISTINCT org_ig FROM ap_checks_all;
    Octavio

  • Image background in table NOT showing up!  ffs

    I am not kidding, but I have seriously spent HOURSSSSSSS
    trying to figure out why the freakin picture will not show up.
    It’s really irritating, and there’s NO reason why it
    shouldn’t show up. I made my template in photoshop and slice
    it all up. I save it. Then I save the template as a WEB. The thing
    saves all the images and creates an editable site.
    So I then go into dreamweaver to load up the site.
    Everything’s is fine. I have ONE image which is being a pain
    to me because everytime I delete it and replace that image as the
    background so that I can type in it, the stupid image doesn’t
    appear.
    The image I’m trying to get to show up is the GOLD
    navigation bar image. PLEASE PLEASE Help. It’s for a project
    in my webpage design class and I really need help, thanks.
    IMAGES BELOW
    http://img.photobucket.com/albums/v185/viperjts10/dreamweaver.gif
    http://img.photobucket.com/albums/v185/viperjts10/internetexplorer.gif

    There are several issues here, not the least of which is that
    you are trying to create a web page with a program designed to
    create and edit images, then trying to make it work in a program
    designed to create web pages.
    The proper approach is create your web page in Dreamweaver
    (or notepad or what ever you like) then augment it with images
    processed in Photoshop (or Fireworks, etc) optimized for the web.
    Next, there are several things that could be causing your
    problem, but what we really need to see here is a url to your site
    so we can examine the code and tell you what might be causing you
    trouble. Pictures of the problem in this case are NOT worth a
    thousand words.
    Please post the address to your site and I’m sure
    someone will post the solution pretty quickly.

  • Table not showing up in Preview PDF

    Hello all,
    I am having an issue with a form that I am making in Adobe LiveCycle Designer ES.
    The project that I am working on deals with making a standarized quoteing template to make getting quotes out faster and whatnot.
    The particular quote template that i am making will have the same information in the table for the Description column.
    So I made the table using the Insert Table wizard and added the information that will not change from quote to quote.  *I took actual info off for legal reasons*
    So I got the table looking the way i wanted it to, and thought great let me check it out in the "Preview PDF" tab.  So I clicked the preview tab and scrolled down to the table and only the headings show up  "/  *You will see this in the pictures below*
    In "Design View".
    In "Preview PDF".
    Any ideas?
    I would appreciate any help that you guys can give me!
    Thanks in advance!

    Thanks pguerett,
    I sent over an email to the above address.  Thanks for your help.
    Hopefully this issue is solved for me soon
    Thank you

  • Tables not showing up in schema browser (3.0 final)

    I don't know if this has been posted by anyone else, or if anyone else if having this problem, but if I expand the + under the Tables collection, I don't get any tables. I supposed that it was a filter problem because when I clear the filter, the tables show up. Of course, I don't want to reset filters for all of my connections. But, alas, it didn't end there. When I cleared the filter, disconnected, and then reconnected, either the filter change didn't save or something else was wrong because I couldn't view tables again. :/
    Note: I did migrate my settings from the EA3 release before running this.
    Thoughts?
    Edited by: fmercury on Mar 30, 2011 7:49 AM

    I'm having the same problem. I just published a blog with photo pages, but the photos do not load using Firefox 3.0. They show just fine using Safari. I've not tried it yet with Explorer, but friends who have logged in have not complained about not seeing the photos, so I suspect the problem is specific to Firefox.
    Anyone have an idea what the problem might be?

Maybe you are looking for

  • Diferent font format for Parent/Child

    Hello,With Excel Add-In, we can format the letter font differently for parent and child, using the Essbase Option (Style -> Members -> Parent -> Format).How can we do, the same thing, using Analyzer.Any help is appreciated.SL

  • Ristricting customer for cash sales only

    hi, is there any possibilty to restrict particular customer only for credit sales by analysing his  payment history(which is not satisfactory) because sales done in SD while payments monitored in FI. thanking u adi.a

  • HT2534 is this outdated or just me ???

    where is the "none" i'm 12 years old and i dont have a credit card and i dont think my dad would let me use his !!!

  • How to Compare day and night based on current time

    Hi, Day starts 08:00 -18:00(start time-end time) Night starts 18:00-08:00(st-et) for day it's easy I compare current time between st and et in logs table. for night if I use the same the process it falls after midnight coz current time is not in betw

  • HELP: java.lang.UnsatisfiedLinkError: no ... in java.library.path

    am the beginner of JNI. I write a test program to use C code in JAVA. [yxz155@lionxo JAVAaC]$ ls AClassWithNativeMethods.java theNativeMethod.c [yxz155@lionxo JAVAaC]$ javac AClassWithNativeMethods.java [yxz155@lionxo JAVAaC]$ javah -jni AClassWithNa