Installed MySQL ODBC, system DSN configured and working, provider still not showing in SQL 2005 provider list

As per the title, really.
I need to fetch data periodically from a MySQL DB. Installed the 5.1 MySQL 32bit ODBC driver onto the SQL server, configured and tested the DSN, all fine.
Provider still not showing in the list in Management Studio.
Can anyone offer any advice? is it a simple case of restarting services? I haven't tried that due to the server being in production.

Hello,
Is this a 64 bit SQL Server? For a linked server you can only use OleDB data provider, have you also installed OleDB for MySQL? If not, then you have to use the ODBC OleDB provider together with a System DSN.
Olaf Helper
[ Blog] [ Xing] [ MVP]

Similar Messages

  • Alert Configuration and Alert Inbox Does Not Show Up

    Hello All,
    We are having a strange problem regarding alerts in XI. We are on NW2004s XI 7.0 SP 9. The TCode 'ALRTCATDEF' works fine. But when we go for configuring alerts in RWB, it says '404 Not Found: The requested resource does not exist'. Can anybody suggest what is the error behind this?
    Thanking in anticipation,
    Amitabha

    If you cannot open your alert inbox check if your alert inbox service is properly activated in SICF:
    - go to TCODE - SICF
    - check if the service alertinbox is activated (you can test it from here)<br><br>
    <img src="https://weblogs.sdn.sap.com/weblogs/images/34500/alertinbox.JPG" width="447" height="219" border="0" alt="image" />
    <br>
    <br>
    Regards,<br>
    Sandro

  • I've added a bday to a contact and it will still not show up on my calendar. Any ideas on what the problem could be?

    Any ideas?

    Open Calendar app and tap "Calendars" at the bottom of the screen. Tap to check the "Birthdays" Calendar.

  • HT5492 I had disabled my restrictions and my apps are not showing again in the screen!

    Hi everyone!
    please help me with my probleme
    I had enabled my restrictions by accidant and some of my icons apps gone missing and if I wanted to open them I have to go to the app store, then I disabled my restrictions and they are still not showing on the home screen!
    please if anyone know how to make them appear again pleeaaase tell me!

    iPhone apps don't work on Macs and Mac apps don't run on iOS devices like an iPhone. If you sync an iPhone to a Mac, the apps from the iPhone are stored in the Mac's iTunes app's media library as a backup.
    The App Store app on a Mac is not the same as the App Store app on the iPhone. The Mac version is the Mac App Store, apps for Macs. The iPhone version is the iTunes App Store, apps for iOS devices.

  • DG4ODBC configured and working but receiving ORA-28528 for some columns

    DG4ODBC is configured and working for XE 11gR2 but under some circumstance receiving SQL Error: ORA-28528: Heterogeneous Services datatype conversion error.
    Configuration: DG4ODBC configured for Oracle 11gR2 using ODBC datasource based on IBM UniVerse ODBC Driver 4.00.04.7346 UVODBC.DLL (8/25/2009) all on same 32-bit Windows host for purpose of retrieving data from remote AIX based IBM/Rockit UniVerse version 10.1 database.
    Following 3 commands with corresponding results illustrate problem:
    select NO_PROD from bill_mat@dblink where NO_PROD not in ('15','20', '24', '6','10');
    no rows selected
    select NO_PROD, count (*) from bill_mat@dblink where NO_PROD in ('15','20', '24', '6','10') group by NO_PROD;
    NO_PROD COUNT(*)
    6 1
    20 1
    24 1
    10 9
    15 1
    select NO_PROD from bill_mat@dblink ;
    Error starting at line 19 in command:
    select NO_PROD from bill_mat@dblink
    Error report:
    SQL Error: ORA-28528: Heterogeneous Services datatype conversion error
    ORA-02063: preceding line from DBLINK
    28528. 00000 - "Heterogeneous Services datatype conversion error"
    *Cause:    Either an Oracle datatype could not be converted to a non-Oracle
    datatype, or a non-Oracle datatype could not be converted
    to an Oracle datatype. The following are possible reasons for
    for the conversion failure:
    -- overflow problems (in the case of numbers)
    -- length limitations (in the case of character strings)
    -- invalid values passed into the conversion routines
    *Action:   Contact customer support of the agent vendor. If the problem is
    due to size discrepancies between Oracle and the non-Oracle system,
    it may not be possible to convert the value.
    UniVerse LIST query shows many "blank" values for two fields LST.WO & NO.PROD that are problematic when attempting to query via DG4ODBC in the case of subject table "BILL_MAT":
    LIST BILL.MAT LST.WO NO.PROD LOCK 04:08:44pm 22 Nov 2011 PAGE 11
    BILL.MAT.. LST.WO.. NO.PROD LOCK
    239912 10
    220419
    247992
    252739
    249709
    239913 15
    184767
    164264
    184666
    164265
    247994
    239914
    251731
    249711
    173760
    239915 20
    242137
    247490
    247894
    254156
    Press any key to continue...
    Interestingly, output from this JDBC test app is different including references to "null" versus "blank" values referred to with LIST output above:
    import java.sql.*;
    import java.io.*;
    public class billmat {
    public static void main(String[] argv)
    try {
    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
         // Connect to the U2 server
    String account = "universe_account";
    String userid = "username";
    String passwd = "password";
    String host = "AIX_Host";
    String url = "jdbc:ibm-u2://"+host+"/"+account+"?tracelevel=5;tracefile=qiang.trace";
    //Load driver and connect to server
    Class.forName("com.ibm.u2.jdbc.UniJDBCDriver");
    Connection con = DriverManager.getConnection(url, userid, passwd);
    System.out.println("\n\t*--- Connection successful ---*\n");
    System.out.println("1. Select from file BILL.MAT ------------------------");
    testQuery( con ) ;
    con.close();
    } catch ( SQLException e ) {
    System.out.println("Ex-Message :" + e.getMessage());
    System.out.println("Ex-Code :" + e.getErrorCode()) ;
    System.out.println("Ex-SQLState:" + e.getSQLState());
    System.out.println("Ex-Next :" + e.getNextException());
    e.printStackTrace() ;
    System.gc();
    } catch ( Exception e) {
    System.out.println("Exception caught:"+e) ;
    e.printStackTrace() ;
    * Select something from CUST.MAST file.
    * @param con The JDBC connection object.
    public static void testQuery(Connection con)
    throws SQLException
    Statement stmt = con.createStatement();
         String sql = "select DISTINCT LST.WO, NO.PROD, LOCK from BILL.MAT where LST.WO is not null or NO.PROD is not null";
    // Execute the SELECT statement
    ResultSet rs = stmt.executeQuery(sql);
    // Get result of first five records
    // System.out.println("\tlist selected columns for the first five records:");
    int i = 1;
    while (rs.next() && i < 100)
              System.out.println("\tLST_WO : \t" + rs.getString(1));
              System.out.println("\tNO_PROD : \t" + rs.getString(2));
              System.out.println("\tLOCK : \t" + rs.getString(3));
         i++;
    rs.close();
    stmt.close() ;
    System.out.println("\n\t*--- QUERY test is done successful ---*\n");
    System.out.println("\n\tDisplay Count: \t" + i);
    [root@VM-Linux01 Linux]# java billmat
    --- Connection successful ---
    1. Select from file BILL.MAT ------------------------
    LST_WO : null
    NO_PROD : null
    LOCK :
    LST_WO : null
    NO_PROD : 10
    LOCK :
    LST_WO : null
    NO_PROD : 15
    LOCK :
    LST_WO : null
    NO_PROD : 20
    LOCK :
    LST_WO : null
    NO_PROD : 6
    LOCK :
    LST_WO : null
    NO_PROD : 24
    LOCK :
    --- QUERY test is done successful ---
    Display Count: 7
    The reason column LOCK is included above is because it is queryable via DG4ODBC and shows up as (null) within query result submitted via and provided by SQLDeveloper.
    Considering results above it seems ORA-28528 IS NOT associated with overflow problems or length limitations. Rather, some sort of characterset mapping issue seems more plausible here. For instance, it seems NULL value returned in the case of columns LST_WO and NO_PROD from remote UniVerse database is not mapping correctly to how a NULL is represented within 11gR2 database. Is there some HS_% value within DG4ODBC init file that can be set to resolve this problem? I'm not well-versed in range of settings that exist but did try different values for HS_LANGUAGE which did not help.
    There is no problem using Excel MS Query to retrieve this data using same system DSN and associated ODBC driver on which DG4OBDC setup is based from same Windows machine where DG4ODBC is configured.
    These are current DG4ODBC settings for this instance (initDBLINK.ora):
    HS_FDS_CONNECT_INFO = DBLINK.ODBC
    HS_FDS_TRACE_LEVEL = ON
    HS_FDS_TRACE_FILE_NAME = c:/DG_LOG
    HS_FDS_TRACE_LEVEL = 4
    HS_LANGUAGE = AMERICAN_AMERICA.WE8ISO8859P1
    # Other HS_LANGUAGE settings attempted to resolve problem are commented below:
    # HS_LANGUAGE = american_america.utf8
    # HS_LANGUAGE = american_america.al32utf8
    Any guidance would be greatly appreciated!
    Edited by: WileyCoyote on Mar 8, 2012 1:33 PM
    Edited by: WileyCoyote on Mar 8, 2012 1:39 PM

    Here is output produced by utility "Dr. Dee Bee Spy" provided by Rockit/UniVerse that it seems may be intended to produce ODBC trace for Rockit/UniVerse ODBC driver:
    SQLAllocEnv
         0x01000000
         SQL_SUCCESS
    SQLAllocConnect
         0x01000000
         0x01010000
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_DRIVER_ODBC_VER
         [5]02.00
         12
         5
         SQL_SUCCESS
    SQLSetConnectOption
         0x01010000
         SQL_AUTOCOMMIT
         SQL_AUTOCOMMIT_OFF
         SQL_SUCCESS
    SQLDriverConnect
         0x01010000
         0x00000000
         [36]DSN=DBLINK.ODBC;UID=Username;PWD=Password;
         SQL_NTS
         [36]DSN=DBLINK.ODBC;UID=Username;PWD=Password;
         1024
         36
         SQL_DRIVER_NOPROMPT
         SQL_SUCCESS
    SQLError
         NULL
         0x01010000
         NULL
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLGetFunctions
         0x01010000
         0
         FALSE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         FALSE
         TRUE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         FALSE
         TRUE
         FALSE
         FALSE
         TRUE
         TRUE
         TRUE
         TRUE
         TRUE
         FALSE
         TRUE
         TRUE
         TRUE
         FALSE
         TRUE
         TRUE
         FALSE
         TRUE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         FALSE
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_CURSOR_COMMIT_BEHAVIOR
         SQL_CB_CLOSE
         2
         2
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_CURSOR_ROLLBACK_BEHAVIOR
         SQL_CB_CLOSE
         2
         2
         SQL_SUCCESS
    SQLError
         NULL
         0x01010000
         NULL
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         0x01010000
         NULL
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLGetInfo
         0x01010000
         SQL_DRIVER_NAME
         [10]UVODBC.DLL
         1024
         10
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_DRIVER_VER
         [37]3.7 Universe RDBMS 32-bit ODBC Driver
         1024
         37
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_DBMS_NAME
         [8]UniVerse
         1024
         8
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_DBMS_VER
         [6]10.1.0
         1024
         6
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         10003
         SQL_ERROR
    SQLError
         NULL
         0x01010000
         NULL
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2700830]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         0x01010000
         NULL
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         0x01010000
         NULL
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLGetInfo
         0x01010000
         SQL_OWNER_USAGE
         0x00000000
         4
         4
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_TXN_CAPABLE
         SQL_TC_DML
         2
         2
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_TXN_ISOLATION_OPTION
         0x0F000000
         4
         4
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_MAX_OWNER_NAME_LEN
         0
         2
         2
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_MAX_TABLE_NAME_LEN
         72
         2
         2
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_MAX_PROCEDURE_NAME_LEN
         0
         2
         2
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_IDENTIFIER_QUOTE_CHAR
         [1]"
         1024
         1
         SQL_SUCCESS
    SQLGetInfo
         0x01010000
         SQL_COLUMN_ALIAS
         [1]Y
         1024
         1
         SQL_SUCCESS
    SQLAllocStmt
         0x01010000
         0x01010001
         SQL_SUCCESS
    SQLBindCol
         0x01010001
         1
         SQL_C_CHAR
         0x70EB1200
         120
         0xF4EF1200
         SQL_SUCCESS
    SQLBindCol
         0x01010001
         3
         SQL_C_SLONG
         0xDCEF1200
         0
         0xE4EF1200
         SQL_SUCCESS
    SQLBindCol
         0x01010001
         10
         SQL_C_SSHORT
         0x0CF01200
         0
         0xECEF1200
         SQL_SUCCESS
    SQLGetTypeInfo
         0x01010001
         SQL_VARCHAR
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010001
         SQL_FETCH_NEXT
         0
         NULL
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010001
         SQL_CLOSE
         SQL_SUCCESS
    SQLGetTypeInfo
         0x01010001
         SQL_INTEGER
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010001
         SQL_FETCH_NEXT
         0
         NULL
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010001
         SQL_CLOSE
         SQL_SUCCESS
    SQLGetTypeInfo
         0x01010001
         SQL_SMALLINT
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010001
         SQL_FETCH_NEXT
         0
         NULL
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010001
         SQL_CLOSE
         SQL_SUCCESS
    SQLGetTypeInfo
         0x01010001
         SQL_VARBINARY
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010001
         SQL_FETCH_NEXT
         0
         NULL
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010001
         SQL_CLOSE
         SQL_SUCCESS
    SQLGetTypeInfo
         0x01010001
         SQL_BIGINT
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010001
         SQL_FETCH_NEXT
         0
         NULL
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010001
         SQL_CLOSE
         SQL_SUCCESS
    SQLGetTypeInfo
         0x01010001
         SQL_TINYINT
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010001
         SQL_FETCH_NEXT
         0
         NULL
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010001
         SQL_CLOSE
         SQL_SUCCESS
    SQLGetTypeInfo
         0x01010001
         SQL_LONGVARCHAR
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010001
         SQL_FETCH_NEXT
         0
         NULL
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010001
         SQL_CLOSE
         SQL_SUCCESS
    SQLGetTypeInfo
         0x01010001
         SQL_LONGVARBINARY
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010001
         SQL_FETCH_NEXT
         0
         NULL
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010001
         SQL_CLOSE
         SQL_SUCCESS
    SQLFreeStmt
         0x01010001
         SQL_UNBIND
         SQL_SUCCESS
    SQLTransact
         NULL
         0x01010000
         SQL_COMMIT
         SQL_SUCCESS
    SQLSetConnectOption
         0x01010000
         SQL_TXN_ISOLATION
         SQL_TXN_READ_COMMITTED
         SQL_SUCCESS
    SQLAllocStmt
         0x01010000
         0x01010002
         SQL_SUCCESS
    SQLFreeStmt
         0x01010001
         SQL_DROP
         SQL_SUCCESS
    SQLAllocStmt
         0x01010000
         0x01010003
         SQL_SUCCESS
    SQLBindCol
         0x01010003
         4
         SQL_C_CHAR
         0xD8EE1200
         124
         0x9CEF1200
         SQL_SUCCESS
    SQLBindCol
         0x01010003
         5
         SQL_C_SSHORT
         0xECEF1200
         0
         0x00000000
         SQL_SUCCESS
    SQLBindCol
         0x01010003
         6
         SQL_C_CHAR
         0x60EE1200
         120
         0xC8EF1200
         SQL_SUCCESS
    SQLBindCol
         0x01010003
         7
         SQL_C_SLONG
         0xA4EF1200
         0
         0xA8EF1200
         SQL_SUCCESS
    SQLBindCol
         0x01010003
         9
         SQL_C_SSHORT
         0xF0EF1200
         0
         0xB0EF1200
         SQL_SUCCESS
    SQLBindCol
         0x01010003
         10
         SQL_C_SSHORT
         0xF8EF1200
         0
         0xD0EF1200
         SQL_SUCCESS
    SQLBindCol
         0x01010003
         11
         SQL_C_SSHORT
         0xF4EF1200
         0
         0x00000000
         SQL_SUCCESS
    SQLBindCol
         0x01010003
         16
         SQL_C_SLONG
         0xB8EF1200
         0
         0xBCEF1200
         SQL_SUCCESS
    SQLColumns
         0x01010003
         NULL
         0
         NULL
         0
         [8]BILL_MAT
         8
         NULL
         0
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010003
         SQL_FETCH_NEXT
         0
         NULL
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010003
         SQL_CLOSE
         SQL_SUCCESS
    SQLFreeStmt
         0x01010003
         SQL_UNBIND
         SQL_SUCCESS
    SQLFreeStmt
         0x01010003
         SQL_DROP
         SQL_SUCCESS
    SQLAllocStmt
         0x01010000
         0x01010004
         SQL_SUCCESS
    SQLPrepare
         0x01010004
         [24]select * from "BILL_MAT"
         24
         SQL_SUCCESS
    SQLNumResultCols
         0x01010004
         27
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         1
         [4]Z_ID
         31
         4
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         1
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         2
         [9]A_PROD_NO
         31
         9
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         2
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         3
         [9]BATCH_QTY
         31
         9
         SQL_INTEGER
         10
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         3
         SQL_COLUMN_UNSIGNED
         UNUSED
         UNUSED
         UNUSED
         FALSE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         4
         [8]COST_UPD
         31
         8
         SQL_DATE
         10
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         5
         [9]CREATE_DT
         31
         9
         SQL_DATE
         10
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         6
         [5]LABOR
         31
         5
         SQL_NUMERIC
         8
         4
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         7
         [4]LOCK
         31
         4
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         7
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         8
         [7]LST_CST
         31
         7
         SQL_NUMERIC
         7
         2
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         9
         [8]LST_PROD
         31
         8
         SQL_DATE
         10
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         10
         [6]LST_WO
         31
         6
         SQL_INTEGER
         10
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         10
         SQL_COLUMN_UNSIGNED
         UNUSED
         UNUSED
         UNUSED
         FALSE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         11
         [7]NO_PROD
         31
         7
         SQL_INTEGER
         10
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         11
         SQL_COLUMN_UNSIGNED
         UNUSED
         UNUSED
         UNUSED
         FALSE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         12
         [3]P_C
         31
         3
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         12
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         13
         [5]PRICE
         31
         5
         SQL_NUMERIC
         4
         2
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         14
         [9]PROD_DESC
         31
         9
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         14
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         15
         [13]PROD_DESC_QTY
         31
         13
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         15
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         16
         [9]PROD_NAME
         31
         9
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         16
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         17
         [6]P_NAME
         31
         6
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         17
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         18
         [3]QTY
         31
         3
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         18
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         19
         [8]STOCK_UM
         31
         8
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         19
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         20
         [8]TOT_COST
         31
         8
         SQL_NUMERIC
         8
         2
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         21
         [9]TOT_COST4
         31
         9
         SQL_NUMERIC
         8
         4
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         22
         [14]TOT_LABOR_COST
         31
         14
         SQL_NUMERIC
         8
         2
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         23
         [13]TOT_LABOR_HRS
         31
         13
         SQL_NUMERIC
         8
         2
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         24
         [12]TOT_MAT_COST
         31
         12
         SQL_NUMERIC
         8
         2
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         25
         [13]TOT_OVHD_COST
         31
         13
         SQL_NUMERIC
         8
         2
         SQL_NULLABLE
         SQL_SUCCESS
    SQLDescribeCol
         0x01010004
         26
         [2]UM
         31
         2
         SQL_VARCHAR
         254
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010004
         26
         1013
         SQL_ERROR
    SQLError
         NULL
         NULL
         0x01010004
         [5]S1C00
         0
         [47][Rocket U2][UVODBC][2701807]Driver not capable.
         512
         47
         SQL_SUCCESS
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLError
         NULL
         NULL
         0x01010004
         [5]00000
         0
         [0]
         512
         0
         SQL_NO_DATA_FOUND
    SQLDescribeCol
         0x01010004
         27
         [6]YIELD_
         31
         6
         SQL_NUMERIC
         3
         2
         SQL_NULLABLE
         SQL_SUCCESS
    SQLCancel
         0x01010004
         SQL_SUCCESS_WITH_INFO
    SQLError
         NULL
         NULL
         0x01010004
         [5]01S05
         0
         [60][Rocket U2][UVODBC][2701402]Cancel treated as FreeStmt/CLOSE
         512
         60
         SQL_SUCCESS
    SQLFreeStmt
         0x01010004
         SQL_CLOSE
         SQL_SUCCESS
    SQLFreeStmt
         0x01010002
         SQL_DROP
         SQL_SUCCESS
    SQLAllocStmt
         0x01010000
         0x01010005
         SQL_SUCCESS
    SQLPrepare
         0x01010005
         [32]SELECT "NO_PROD" FROM "BILL_MAT"
         32
         SQL_SUCCESS
    SQLNumResultCols
         0x01010005
         1
         SQL_SUCCESS
    SQLDescribeCol
         0x01010005
         1
         [7]NO_PROD
         31
         7
         SQL_INTEGER
         10
         0
         SQL_NULLABLE
         SQL_SUCCESS
    SQLColAttributes
         0x01010005
         1
         SQL_COLUMN_UNSIGNED
         UNUSED
         UNUSED
         UNUSED
         FALSE
         SQL_SUCCESS
    SQLSetStmtOption
         0x01010005
         SQL_ROWSET_SIZE
         0x64000000
         SQL_SUCCESS
    SQLSetStmtOption
         0x01010005
         SQL_BIND_TYPE
         SQL_BIND_BY_COLUMN
         SQL_SUCCESS
    SQLExecute
         0x01010005
         SQL_SUCCESS
    SQLBindCol
         0x01010005
         1
         SQL_C_SLONG
         0xD89BF702
         4
         0x149FF702
         SQL_SUCCESS
    SQLExtendedFetch
         0x01010005
         SQL_FETCH_NEXT
         0
         0
         SQL_NO_DATA_FOUND
    SQLFreeStmt
         0x01010005
         SQL_UNBIND
         SQL_SUCCESS
    SQLFreeStmt
         0x01010005
         SQL_DROP
         SQL_SUCCESS
    SQLTransact
         NULL
         0x01010000
         SQL_COMMIT
         SQL_SUCCESS
    Edited by: WileyCoyote on Mar 8, 2012 1:46 PM

  • TS5376 I'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.

    'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.  I have even done a repair to see if that works and it has not.  Has anyone else found a new way to get it working?

    Try Troubleshooting issues with iTunes for Windows updates.
    tt2

  • HT201406 IOS7 installed OK to my iPhone 4S and worked OK for a while but I have somehow managed to completely jam my iPhone 4s. The touch screen won't work except for up and down gestures (some of the time). I can't make or answer calls, I can't even powe

    IOS7 installed OK to my iPhone 4S and worked OK for a while but I have somehow managed to completely jam my iPhone 4s. The touch screen won't work except for up and down gestures (some of the time). I can't make or answer calls, I can't even power if off. I can't access the hardward ID which Apple support seems to require for Chat.
    It might have happened when I was accessing my camera bypassing the lock screen!
    All I know is that the thing is now useless and it looks like I will have to wait for the battery to run down to see if powering it back up afterwards will solve the problem.

    I have since discovered the "hold down home key and power button" together for a few seconds and this seems to have worked .... phew!

  • How to check the BW and BIA systems are up and working fine.

    Hi friends,
    how to check the BW and BIA systems are up and working fine. And also what is ICM, how to check whether it is working properly or not.
    ANd what is name resolution and IP , how to check whether this is running fine.
    regards, balu.

    Hi,
    you can use process monitoring or the alert function in the standalone TREXAdmin tool.
    ICM:
    http://help.sap.com/saphelp_nw04/helpdata/EN/0a/a7903febb15a7be10000000a11405a/content.htm
    name resolution
    http://en.wikipedia.org/wiki/Domain_Name_System
    IP:
    http://en.wikipedia.org/wiki/IP
    Please also have a look at the transactions TREXADMIN and RSDDBIAMON2.
    I think it´s better if you use the forum search and google/wikipedia before you ask such questions.
    Best Regards,
    Jens

  • TS4062 I have 3 Dell laptops at home and I am unable to connect my iPad 1 to any of them using the USB cable.  If I connect the iPad to any Apple computer, it works perfectly.  I have installed the latest versions of iTunes and iOS, but still no luck. Opt

    I have 3 Dell laptops at home and I am unable to connect my iPad 1 to any of them using the USB cable.  If I connect the iPad to any Apple computer using the same USB cable, it works perfectly.  I have installed the latest versions of iTunes and iOS, but still no luck. Apple Store Geniuses helped me determine that it wasn't my iPad causing the problem, but were less helpful when it came to dealing with non-Apple devices.
    Options?

    Does the OS see the iPad at all? In other words does it show up in either the My Computer or Device Manager?
    I've had problems in the past where I had to modify the registry to get my son's iPod to sync with a particular HP laptop.
    If it doesn't show up at all have your tried using an external hub (with or without power)?

  • Installing microsoft office for mac and getting prompt for installer password.  i have put in apple id password and admin password and not working, i have also reset my admin password 3 times and it is still not working? how do i get past this?

    installing microsoft office for mac and getting prompt for installer password.  i have put in apple id password and admin password and not working, i have also reset my admin password 3 times and it is still not working? how do i get past this?

    You don't use your Apple ID or its password to install anything on your Mac. You use the admin account's name and password.
    Use the name and password you last entered when resetting them. The "name" you use is not the short name of the admin account folder.
    For example. If you create an admin account of John Smith, the short name given to that account's folder will be johnsmith. So when an app requests an admin name and password to install something, the admin name you enter is John Smith, not johnsmith.

  • I just installed new new version of lion and many programs do not work?

    I just installed the new version of lion and many programs do not work

    tfreers wrote:
    I just installed the new version of lion and many programs do not work
    Such as? No PPC programs will work. That has been well known for over six months as Rosetta was finally droped after the phasing out of PPC program support over the last 5 to 6 years.
    Cheers

  • Just purchased a ipad2, could not us it on my MacBook 10.4.1 - Purchased and installed OSX Snow Leopard 10.6.3 - downloaded and installed latest itunes, set up a itunes accounts and tested by purchasing an album and app, ipad does not show in devises?

    I just purchased a ipad2, it would not work on my MacBook 10.4.1 I purchased and installed OSX snow leopard 10.6.3 downloaded and installed the latest itunes, set up an itunes account, purchased some music and apps.  When i plug in my ipod it shows up and works, but when i plug in my new ipad the ipad screen comes up with a display of a cable and itunes but does not show in devises, i have tried all the resets and different USB ports with no success.  Any ideas short of selling it on ebay or buying a new computer?

    If you've already tried the usual rebooting of the computer and ports and stuff, there is only a few things left I can think of. It's possible that when you updated iTunes it didn't fully replace all the files, so I suggest just manually removing iTunes and then reinstalling it.
    Try removing iTunes manually first http://support.apple.com/kb/HT1224 then download a fresh copy, make sure it is 10.3.1
    It is essential that you go through Finder to remove those files it mentions. Otherwise they won't be reinstalled when you run the installer again.

  • I recently downloaded iMovie on my iPhone 5 and it is telling me to connect to wifi or use itunes to download iMovie well I have done both and it is still not working can someone please help me?

    I recently downloaded iMovie on my iPhone 5 and it is telling me to connect to wifi or use itunes to download iMovie well I have done both and it is still not working can someone please help me?

    Hi troy157,
    I'm sorry you are having issues with the iMovie app you purchased for your iPhone5.
    The first thing I would suggest is to log out of your iTunes Account on your iPhone, turn the iPhone off and then on again, and see if app finishes downloading/updating.
    Settings > iTunes & App Stores > Tap on your Apple ID account > Tap Sign Out
    If the issues persists, the article below will give you a few more troubleshooting steps:
    iOS: Troubleshooting applications purchased from the App Store
    Try the following steps to resolve your issue, testing the app after each step.
    1. Update your device software
    Update your device to the latest version of iOS.
    2. Check for app updates
    Ensure that your apps are up to date:
    Open the App Store and tap Updates. If updates are available, tap Update All.
    When prompted, enter your iTunes Store account information. App Store will then download and install the application updates.
    Note: Some applications may require a Wi-Fi connection to update.3. Install another app from the App Store
    4. Restart the application
    If the issue affects only a single app, try closing just that app:
    Press the Home button to return to the Home screen.
    Double-tap the Home button to display recent apps.
    Tap and hold the affected app until the red minus appears.
    Tap the red minus to quit the app.
    Press the Home button, then restart the app.
    5. Restart your device
    Hold the Sleep/Wake button until "slide to power off" appears. Slide to power off your device. When it is off, press the Sleep/Wake button to turn it back on.6. Reinstall the affected application
    Remove the application from your device and reinstall it.
    Touch and hold any application icon on the Home Screen until the icons start to wiggle.
    Tap the "x" in the corner of the application you want to delete.
    Tap Delete to remove the application and all of its data from your device.
    Press the Home button.
    Go to the App Store.
    Search for the application and then download it again.
    Note: If it is a paid app, ensure you are using the iTunes account you purchased the app with originally. If it is not, you will be charged for the app again. For more information regarding downloading previously purchased items, see this article.
    I hope this information helps ....
    Have a great day!
    - Judy

  • Ive purchased, installed, then downloaded photoshop elements 13 and the program still wont start???

    Ive purchased, installed, then downloaded photoshop elements 13 and the program still wont start???
    Ive been on the chat room 8 times now with Adobe over 2 days and I cant get the help I need.
    Does anyone know how to help?
    Kate

    Hi Kate 678,
    May I know what happens when you try to launch it?
    Do you get any error/warning message?
    Please let us know your operating system details.
    Regards,
    Anand

  • My digital editions saying not working but I uninstalled and reinstalled and it is still not working, any ideas?

    My digital editions saying not working but I uninstalled and reinstalled and it is still not working, any ideas?

    Hi imtheozzman, check if your security software is the problem, see : [https://support.mozilla.org/en-US/kb/configure-firewalls-so-firefox-can-access-internet Configure firewalls so that Firefox can access the Internet ]
    thank you

Maybe you are looking for