DRG-11110: matches does not support functional invocation

Hi all,
We are working on the some prototype and we hit this road block.
When 'matches' was included with other conditions in query and used in pl/sql we are getting this error.
Oracle Text error: DRG-11110: matches does not support functional invocation
We tried including the hint /*+ index(t2 t2x) */ * (t2 table and t2x index ) in query but it didn't help.
The query works fine from SQL developer, but included in pl/sql gives the error 9 out of 10times.
Is there something that anyone can help
Regards,
Chaitanya.

The optimizer tends to choose functional invocation, which will cause the query to fail, when the structured portion of the query is most restrictive. So you will need to stop it from selecting what might otherwise be the most efficient plan at the times when you might have otherwise gained the most performance benefit from it. You want to try to force the optimizer to use the domain index to select the rows based on the matches criteria first, then evaluate the other conditions. You will need to experiment with things like your date filter to see if that causes funcitonal invocation or not. It will depend on how restricitve that is, whether there is an index on the date column and whether there is a small enough amount of data to do a full table scan benficially. You might benefit from hints but the "rownum > 0" seems to have the most consistent effect. You can use "explain plan for" on a query that fails to see what it was trying to do. Notice the difference in the execution plans below for the first failed query and the second working query that uses the domain index.
SCOTT@orcl_11g> SET AUTOTRACE ON EXPLAIN
SCOTT@orcl_11g> SELECT req_id, request, query_id, query_string
  2  FROM   queries, requests, tmptab
  3  WHERE  matches (query_string, request) > 0
  4  AND    tmptab.ID = query_id
  5  /
SELECT req_id, request, query_id, query_string
ERROR at line 1:
ORA-20000: Oracle Text error:
DRG-11110: matches does not support functional invocation
SCOTT@orcl_11g> SET AUTOTRACE OFF
SCOTT@orcl_11g> EXPLAIN PLAN FOR
  2  SELECT req_id, request, query_id, query_string
  3  FROM   queries, requests, tmptab
  4  WHERE  matches (query_string, request) > 0
  5  AND    tmptab.ID = query_id
  6  /
Explained.
SCOTT@orcl_11g> SELECT * FROM TABLE (DBMS_XPLAN.DISPLAY)
  2  /
PLAN_TABLE_OUTPUT
Plan hash value: 3854985881
| Id  | Operation           | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT    |          |     1 |   855 |    13   (8)| 00:00:01 |
|   1 |  NESTED LOOPS       |          |     1 |   855 |    13   (8)| 00:00:01 |
|*  2 |   HASH JOIN         |          |     3 |  1320 |     7  (15)| 00:00:01 |
|   3 |    TABLE ACCESS FULL| TMPTAB   |     3 |    39 |     3   (0)| 00:00:01 |
|   4 |    TABLE ACCESS FULL| QUERIES  |   300 |   125K|     3   (0)| 00:00:01 |
|*  5 |   TABLE ACCESS FULL | REQUESTS |     1 |   415 |     2   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   2 - access("TMPTAB"."ID"="QUERY_ID")
   5 - filter("CTXSYS"."MATCHES"("QUERY_STRING","REQUEST")>0)
Note
   - dynamic sampling used for this statement
22 rows selected.
SCOTT@orcl_11g> DELETE plan_table
  2  /
6 rows deleted.
SCOTT@orcl_11g> SET AUTOTRACE ON EXPLAIN
SCOTT@orcl_11g> SELECT req_id, request, query_id, query_string
  2  FROM   (SELECT req_id, request, query_id, query_string
  3            FROM   queries, requests
  4            WHERE  matches (query_string, request) > 0
  5            AND    ROWNUM > 0),
  6           tmptab
  7  WHERE tmptab.ID = query_id
  8  /
    REQ_ID REQUEST           QUERY_ID QUERY_STRING
         1 A B C                  699 A | B
         2 B C                    699 A | B
Execution Plan
Plan hash value: 615182442
| Id  | Operation                        | Name             | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT                 |                  |    45 | 37935 |    14   (8)| 00:00:01 |
|*  1 |  HASH JOIN                       |                  |    45 | 37935 |    14   (8)| 00:00:01 |
|   2 |   TABLE ACCESS FULL              | TMPTAB           |     3 |    39 |     3   (0)| 00:00:01 |
|   3 |   VIEW                           |                  |    45 | 37350 |    10   (0)| 00:00:01 |
|   4 |    COUNT                         |                  |       |       |            |          |
|*  5 |     FILTER                       |                  |       |       |            |          |
|   6 |      NESTED LOOPS                |                  |    45 | 37890 |    10   (0)| 00:00:01 |
|   7 |       TABLE ACCESS FULL          | REQUESTS         |     3 |  1245 |     3   (0)| 00:00:01 |
|   8 |       TABLE ACCESS BY INDEX ROWID| QUERIES          |    15 |  6405 |    10   (0)| 00:00:01 |
|*  9 |        DOMAIN INDEX              | QUERY_STRING_IDX |       |       |     0   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   1 - access("TMPTAB"."ID"="QUERY_ID")
   5 - filter(ROWNUM>0)
   9 - access("CTXSYS"."MATCHES"("QUERY_STRING","REQUEST")>0)
Note
   - dynamic sampling used for this statement
SCOTT@orcl_11g>

Similar Messages

  • DRG-10849 catsearch does not support functional invocation

    I have this error message: DRG-10849 catsearch does not support functional invocation
    this is my query:
    SELECT *
    FROM
    (SELECT
    /*+ FIRST_ROWS(50) */
    NTQ.*,
    ROWNUM RNUM1
    FROM
    (SELECT
    /*+ INDEX(DL_TSD_DEFTR_CI) */
    FROM ima_ol.DL_TSD_SITUATION s
    WHERE (CATSEARCH(DEF_TRANS,'milano ',NULL)>0)
    AND (s.FORECAST = 0)
    AND (s.STATE IN (1,0,4))
    AND (s.ARCH_STATE = 0)
    ORDER BY s.VET_TS DESC
    ) NTQ
    WHERE ROWNUM <=50
    WHERE RNUM1 >=1
    my oracle and system version:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    "CORE 11.1.0.7.0 Production"
    TNS for Solaris: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    have suggested that to solve the problem I should alter the statistics of the offending table to force to use this index how do I do?
    thanks in advance

    there is a topic which is older. maybe it helped.
    Oracle Text 10g Release 2

  • [svn] 3045: Fix FB-13900: Expression Evaluator: 'is' and 'as' expressions return 'Target player does not support function calls'

    Revision: 3045
    Author: [email protected]
    Date: 2008-08-29 10:59:25 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Fix FB-13900: Expression Evaluator: 'is' and 'as' expressions return 'Target player does not support function calls'
    Ticket Links:
    http://bugs.adobe.com/jira/browse/FB-13900
    Modified Paths:
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/BinaryOp.java
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/PlayerSession.java

    Revision: 3045
    Author: [email protected]
    Date: 2008-08-29 10:59:25 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Fix FB-13900: Expression Evaluator: 'is' and 'as' expressions return 'Target player does not support function calls'
    Ticket Links:
    http://bugs.adobe.com/jira/browse/FB-13900
    Modified Paths:
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/BinaryOp.java
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/PlayerSession.java

  • IOS version does not support functions

    When I create a document on a mac with certain functions, the document will not sync with ios devices. At first it will if it is a simple document, but then it disappears the moment you insert a funtion like-TODAY.
    Is this right?

    Brett,
    I've never encountered any incompatibilities with formulas between Numbers for the Mac and Numbers for iOS. All very smooth.
    Could you post of screenshot of your spreadsheet showing the cell with the offending formula?  I'll try to duplicate the problem here.
    Also does the same thing happen when you start a new document?  Or does it only happen with one particular existing document?
    On the Mac you can post a screenshot this way:
    1. shift-command-4
    2. holding mouse down drag crosshairs across the area you want to capture, and release
    3. a file named something like Screen Shot 2014-01-29 at 7.27.28 AM.png will be placed on desktop
    4. in editor here click camera icon, 'Choose File', navigate to the file on the Desktop and click, click 'Choose', click 'Insert Image'
    Sometimes the "camera" doesn't work the first time, so you just redo the steps in 4.
    SG

  • [unixODBC][Driver Manager]Driver does not support this function {IM001}

    Hello,
    I start from the end and details show below - this error message i got in sql session:
    SQL> select count(*) from EnergyType@ENERGOPLAN;
    select count(*) from EnergyType@ENERGOPLAN
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [unixODBC][Driver Manager]Driver does not support this function {IM001}
    ORA-02063: preceding 2 lines from ENERGOPLAN
    SQL>
    First question - is Oracle Heterogeneous Services are licensed for standard edition ? I cant find this information, and my database - is SE 11.2.0.3.0 - 64bit.
    If its ok and HS are licensed for SE, then please see details of my problem:
    ----OS and packages version
    [oracle@aris_sv_db log]$ uname -a
    Linux aris_sv_db 2.6.18-308.24.1.el5 #1 SMP Tue Dec 4 17:43:34 EST 2012 x86_64 x86_64 x86_64 GNU/Linux
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ rpm -qa | grep odbc
    [oracle@aris_sv_db log]$ rpm -qa | grep unixodbc
    [oracle@aris_sv_db log]$ rpm -qa | grep unixODBC
    unixODBC-libs-2.2.11-10.el5
    unixODBC-libs-2.2.11-10.el5
    unixODBC-devel-2.2.11-10.el5
    unixODBC-2.2.11-10.el5
    unixODBC-devel-2.2.11-10.el5
    [oracle@aris_sv_db log]$ rpm -qa | grep freetds
    freetds-0.91-1.el5.rf
    [oracle@aris_sv_db log]$
    -----ODBC.INI, ODBCINST.INI and FREETDS.CONF
    [oracle@aris_sv_db log]$ more /home/oracle/.odbc.ini
    [ENERGOPLAN]
    Driver = FreeTDS
    Servername = ENERGOPLAN
    Database = ess2
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ more /etc/odbcinst.ini
    # Example driver definitions
    [FreeTDS]
    Description = MSSQL Driver
    Driver = /usr/lib64/libtdsodbc.so.0
    #Setup = /usr/lib64/libtdsodbc.so.0
    #Driver = /usr/lib64/libodbc.so
    #Driver = /usr/lib/libodbc.so
    UsageCount = 1
    Trace = Yes
    TraceFile = /tmp/freetds.log
    [ODBC]
    DEBUG = 1
    TraceFile = /tmp/sqltrace.log
    Trace = Yes
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ more /etc/freetds.conf
    # A typical Microsoft server
    [ENERGOPLAN]
    host = 192.168.10.64
    port = 1433
    tds version = 8.0
    # client charset = UTF-8
    client charset = cp1251
    [oracle@aris_sv_db log]$
    ----CHECK CONNECT from ODBC
    [oracle@aris_sv_db log]$ isql -v ENERGOPLAN user pass
    | Connected! |
    | |
    | sql-statement |
    | help [tablename] |
    | quit |
    | |
    SQL> select count(*) from EnergyType;
    | |
    | 8 |
    SQLRowCount returns 1
    1 rows fetched
    SQL> [oracle@aris_sv_db log]$ tsql -S ENERGOPLAN -U user -P pass
    locale is "en_US.UTF-8"
    locale charset is "UTF-8"
    using default charset "cp1251"
    1> select count(*) from EnergyType;
    2> go
    8
    (1 row affected)
    1> [oracle@aris_sv_db log]$
    ----LISTENER.ORA, TNSNAMES and initENERGOPLAN.ora
    [oracle@aris_sv_db log]$ more /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    # listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    SID_LIST_ENERGOPLAN =
    (SID_LIST =
    (SID_DESC=
    (SID_NAME=ENERGOPLAN)
    (ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1)
    (PROGRAM=dg4odbc)
    (ENVS="LD_LIBRARY_PATH=/usr/lib64:/u01/app/oracle/product/11.2.0/dbhome_1/lib")
    ENERGOPLAN =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = PNPKEY))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.10.72)(PORT = 1523))
    ADR_BASE_LISTENER = /u01/app/oracle
    [oracle@aris_sv_db log]$ more /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora
    # tnsnames.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    ENERGOPLAN =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.10.72)(PORT=1523))
    (CONNECT_DATA=(SID=ENERGOPLAN))
    (HS=OK)
    [oracle@aris_sv_db log]$ more /u01/app/oracle/product/11.2.0/dbhome_1/hs/admin/initENERGOPLAN.ora
    # 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 = ENERGOPLAN
    #HS_FDS_CONNECT_INFO = 192.168.0.199:1433//test
    HS_FDS_TRACE_LEVEL = DEBUG
    #HS_FDS_TRACE_FILE_NAME = /tmp/hs1.log
    HS_FDS_TRACE_FILE_NAME = /u01/app/oracle/product/11.2.0/dbhome_1/hs/log/mytrace.log
    HS_FDS_SHAREABLE_NAME = /usr/lib64/libodbc.so #/usr/lib64/libtdsodbc.so.0
    #HS_FDS_SHAREABLE_NAME = /usr/lib64/libtdsodbc.so.0
    #HS_FDS_SHAREABLE_NAME = /usr/lib/libodbc.so
    #HS_LANGUAGE=american_america.we8iso8859p1
    #HS_LANGUAGE=AMERICAN_AMERICA.AL32UTF8
    #HS_LANGUAGE=AMERICAN_AMERICA.CL8MSWIN1251
    #HS_LANGUAGE=RUSSIAN_RUSSIA.UTF8
    #HS_LANGUAGE=Russian_CIS.AL32UTF-8
    #HS_FDS_FETCH_ROWS=1
    HS_NLS_NCHAR = UCS2
    HS_FDS_SQLLEN_INTERPRETATION=32
    # ODBC specific environment variables
    set ODBCINI=/home/oracle/.odbc.ini
    set ODBCINSTINI=/etc/odbcinst.ini
    #HS_KEEP_REMOTE_COLUMN_SIZE=ALL
    #HS_NLS_LENGTH_SEMANTICS=CHAR
    #HS_FDS_SUPPORT_STATISTICS=FALSE
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ tnsping ENERGOPLAN
    TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 01-APR-2013 16:27:49
    Copyright (c) 1997, 2011, Oracle. All rights reserved.
    Used parameter files:
    /u01/app/oracle/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=192.168.10.72)(PORT=1523)) (CONNECT_DATA=(SID=ENERGOPLAN)) (HS=OK))
    OK (0 msec)
    [oracle@aris_sv_db log]$
    ----CREATE DBLINK and test from sqlplus
    CREATE DATABASE LINK "ENERGOPLAN" CONNECT TO "user" IDENTIFIED BY "pass" USING 'ENERGOPLAN';
    [oracle@aris_sv_db log]$ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.3.0 Production on Mon Apr 1 16:30:14 2013
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Release 11.2.0.3.0 - 64bit Production
    SQL> select count(*) from EnergyType@ENERGOPLAN;
    select count(*) from EnergyType@ENERGOPLAN
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [unixODBC][Driver Manager]Driver does not support this function {IM001}
    ORA-02063: preceding 2 lines from ENERGOPLAN
    SQL>
    ----logs from hs and odbc
    [oracle@aris_sv_db log]$ tail -50 ENERGOPLAN_agt_12117.trc
    12 VARCHAR N 100 100 0/ 0 1000 0 200 ConsumptionYearCostUOM
    3 DECIMAL N 24 24 9/ 3 0 0 0 ConsumptionYearFactorAmount
    -7 BIT N 1 1 0/ 0 0 0 20 NeedToBeApprovedByREK
    Exiting hgodtab, rc=0 at 2013/04/01-16:30:42
    Entered hgodafr, cursor id 0 at 2013/04/01-16:30:42
    Free hoada @ 0x14e5fd20
    Exiting hgodafr, rc=0 at 2013/04/01-16:30:42
    Entered hgopars, cursor id 1 at 2013/04/01-16:30:42
    type:0
    SQL text from hgopars, id=1, len=36 ...
    00: 53454C45 43542043 4F554E54 282A2920 [SELECT COUNT(*) ]
    10: 46524F4D 2022454E 45524759 54595045 [FROM "ENERGYTYPE]
    20: 22204131 [" A1]
    Exiting hgopars, rc=0 at 2013/04/01-16:30:42
    Entered hgoopen, cursor id 1 at 2013/04/01-16:30:42
    hgoopen, line 87: NO hoada to print
    Deferred open until first fetch.
    Exiting hgoopen, rc=0 at 2013/04/01-16:30:42
    Entered hgodscr, cursor id 1 at 2013/04/01-16:30:42
    Allocate hoada @ 0x14e5fd80
    Entered hgodscr_process_sellist_description at 2013/04/01-16:30:42
    Entered hgopcda at 2013/04/01-16:30:42
    Column:1(): dtype:4 (INTEGER), prc/scl:10/0, nullbl:1, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/04/01-16:30:42
    Entered hgopoer at 2013/04/01-16:30:42
    hgopoer, line 231: got native error 0 and sqlstate IM001; message follows...
    [unixODBC][Driver Manager]Driver does not support this function {IM001}
    Exiting hgopoer, rc=0 at 2013/04/01-16:30:42
    hgodscr, line 407: calling SQLSetStmtAttr got sqlstate IM001
    Free hoada @ 0x14e5fd80
    hgodscr, line 464: NO hoada to print
    Exiting hgodscr, rc=28500 at 2013/04/01-16:30:42 with error ptr FILE:hgodscr.c LINE:407 FUNCTION:hgodscr() ID:Set array fetch size
    Entered hgoclse, cursor id 1 at 2013/04/01-16:31:24
    Exiting hgoclse, rc=0 at 2013/04/01-16:31:24
    Entered hgocomm at 2013/04/01-16:31:24
    keepinfo:0, tflag:1
    00: 4F52434C 2E343535 32623466 342E362E [ORCL.4552b4f4.6.]
    10: 32322E37 363237 [22.7627]
    tbid (len 20) is ...
    00: 4F52434C 5B362E32 322E3736 32375D5B [ORCL[6.22.7627][]
    10: 312E345D [1.4]]
    cmt(0):
    Entered hgocpctx at 2013/04/01-16:31:24
    Exiting hgocpctx, rc=0 at 2013/04/01-16:31:24
    Exiting hgocomm, rc=0 at 2013/04/01-16:31:24
    Entered hgolgof at 2013/04/01-16:31:24
    tflag:1
    Exiting hgolgof, rc=0 at 2013/04/01-16:31:24
    Entered hgoexit at 2013/04/01-16:31:24
    Exiting hgoexit, rc=0
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ tail -50 /tmp/sqltrace.log
    Native = 0x7fff6ca974f4
    Message Text = 0x14e5f968
    Buffer Length = 510
    Text Len Ptr = 0x7fff6ca97750
    [ODBC][12117][SQLGetDiagRecW.c][582]
    Exit:[SQL_SUCCESS]
    SQLState = IM001
    Native = 0x7fff6ca974f4 -> 0
    Message Text = [[unixODBC][Driver Manager]Driver does not support this function]
    [ODBC][12117][SQLGetDiagRecW.c][540]
    Entry:
    Statement = 0x14e399f0
    Rec Number = 2
    SQLState = 0x7fff6ca97700
    Native = 0x7fff6ca974f4
    Message Text = 0x14e5f908
    Buffer Length = 510
    Text Len Ptr = 0x7fff6ca97750
    [ODBC][12117][SQLGetDiagRecW.c][582]
    Exit:[SQL_NO_DATA]
    [ODBC][12117][SQLEndTran.c][315]
    Entry:
    Connection = 0x14dbd4b0
    Completion Type = 0
    [ODBC][12117][SQLGetInfo.c][214]
    Entry:
    Connection = 0x14dbd4b0
    Info Type = SQL_CURSOR_COMMIT_BEHAVIOR (23)
    Info Value = 0x7fff6ca9781e
    Buffer Length = 8
    StrLen = 0x7fff6ca9781c
    [ODBC][12117][SQLGetInfo.c][528]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLEndTran.c][488]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLDisconnect.c][204]
    Entry:
    Connection = 0x14dbd4b0
    [ODBC][12117][SQLDisconnect.c][341]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLFreeHandle.c][268]
    Entry:
    Handle Type = 2
    Input Handle = 0x14dbd4b0
    [ODBC][12117][SQLFreeHandle.c][317]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLFreeHandle.c][203]
    Entry:
    Handle Type = 1
    Input Handle = 0x14dbb0c0
    [oracle@aris_sv_db log]$

    To see which ODBC function DG4ODBC is looking for and unixODBC isn't supporting it would be best to get an ODBC trace file. But as your unixODBC driver (unixODBC-2.2.11-10.el5) is outdated and these old drivers had a lot of issues when being used on 64bit operating systems (for example wrong sizeofint etc). So best would be to update the unixODBC Driver manager to release 2.3.x. More details can be found on the web site: www.unicodbc.org
    - Klaus

  • Cannot open install assistant.  I get this error message: The application cannot be installed due to a certificate problem.  The certificate does not match the installed application certificate, does not support application upgrades, or is invalid.  Pleas

    How can I downloade a trial of Adobe Elements 12? 
    I followed the instructions to download assistant...but get this message: The application cannot be installed due to a certificate problem.  The certificate does not match the installed application certificate, does not support application upgrades, or is invalid.  Please contact the application author.

    Hi alposer,
    Please remove the copy of the Adobe Download Assistant you currently have installed and then reinstall the Adobe Download Assistant.
    Regards,
    Rave

  • Do the Mac minis support using AirPlay and all of its functions?   I thought I saw a comment yesterday that suggested the Mac mini (particularly the late 2012 models) does not support AirPlay.  Thank you.

    Do the Mac minis support using AirPlay and all of its functions?   I thought I saw a comment yesterday that suggested the Mac mini (particularly the late 2012 models) does not support AirPlay.  Thank you.

    Hello,
    AirPlay Mirroring
    Requires a second-generation Apple TV or later. Supports the following Mac models:
    iMac (Mid 2011 or newer)
    Mac mini (Mid 2011 or newer)
    MacBook Air (Mid 2011 or newer)
    MacBook Pro (Early 2011 or newer)
    http://support.apple.com/kb/HT5444

  • [ODBC Driver Manager] Driver does not support this function

    HI every body
    In Win Server 2008 R2 , I tried to retrieve data from my ODBC Driver
     by Report Builder , my connection test is successful , but after any retrieve data by SQL Statement I encounter with this Error :
    IM0001: [Microsoft] [ODBC Driver Manager] Driver does not support this function
    I use Win Server 2008 R2 , and my ODBC Driver installed on :
    %SystemRoot%\SysWOW64\odbcad32.exe
    Can anyone help me to solve this problem, its realy urgent for me ,
    PLEASE HELP ………………..

    ODBC Driver name is PMSDK (32 bit) and installed by Primavera software
    I use SQL Report Builder to connect the driver and try SQL Statement in it
    Report Builder may be executing an ODBC function to retrieve meta data, and that function is not supported by the PMSDK driver.  Are you using the latest version of the PMSDK driver?  You might try turning on ODBC tracing to find out the problem
    function. 
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Error: Driver does not support this function

    Hi there people!
    I'm a newbie in jsp and I encountered this error: Driver does not support this function. I'm using odbc:jdbc and access. Can someone please tell me what is wrong?
    <%@ page import = "java.sql.*" %>
    <%@ page import="java.io.*" %>
    <%@ page import="java.util.*" %>
    <HTML>
    <title>Stock Portfolio</title>
    <body>
    <body bgcolor="gray"><center>
    <table border = 1>
    <tr>
         <td><th>Symbol</td></th>
         <td><th>Type of Transaction</td></th>
         <td><th>Date</td></th>
         <td><th>Shares</td></th>
         <td><th>Price</td></th>
         <td><th>Stock Commission</td></th>
         <td><th>Stock Brocker Name</td></th>
    <tr>
    <%     String symbol = request.getParameter("symbol");
           String type = request.getParameter("type");
           String date = request.getParameter("date");
            String shares = request.getParameter("shares");
            int ishares = Integer.parseInt(shares);
            String price = request.getParameter("price");
            float fprice = Float.parseFloat(price);
            String commission = request.getParameter("commission");
            float fcommission = Float.parseFloat(commission);
            String bname = request.getParameter("bname");
    %>
    <% String url ="jdbc:odbc:Product";
       try
       { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         Connection con = DriverManager.getConnection(url,"","");
         String query = "INSERT INTO Stock (dbsymbol,dbtype,dbdate,dbshares,dbprice,dbcommission,dbname) VALUES (?,?,?,?,?,?,?)";
          PreparedStatement pstmt = con.prepareStatement(query);
          pstmt.setString(1,symbol);
           pstmt.setString(2,type);
           pstmt.setString(3,date);
           pstmt.setInt(4,ishares);
           pstmt.setDouble(5,fprice);
           pstmt.setDouble(6,fcommission);
           pstmt.setString(7,bname);
           pstmt.executeUpdate(query);
          }catch (Exception e)
           {System.out.println(e.getMessage());
    %>
    </body>
    </html>      Thanks!

    Sorry I need to hurry up. But here is link i found relating same problem. Please check this and see if it might help you.
    [http://forum.java.sun.com/thread.jspa?threadID=564872&messageID=2784526|http://forum.java.sun.com/thread.jspa?threadID=564872&messageID=2784526]
    Read reply #5.
    It says
    You're getting this exception because you're using the executeUpdate() method that returns a ResultSet. That's a JDBC 3.0 function, and the JDBC-ODBC bridge only supports JDBC 1.0.Good Luck.

  • Error -11040 Driver does not support this function- Informix SE db

    Hello,
      Weu2019re getting an error -11040 "Driver does not support this function" when trying to connect to an ODBC data source to an InformixSE database. This is with Crystal 2010 and 2008 on a Windows XP sp2 box. Weu2019re trying to use the ODBC(RDO) choice for a new connection.
      The Informix ODBC driver has been loaded. We tried 3 versions, the 2.40 and 3.70(latest) ones from IBM, and one that I believe came with Crystal (CR xxxx). I tried turning on the ODBC trace file, but it didnu2019t write anything to the log. We are supplying the same log in credentials as with Excel.
       The Informix database we use is Informix SE (Standard Engine) v5.10 on separate machine running Unix (Aix) with the Informix-Net daemon running to handle odbc connectivity. We are able to connect from Excel to the Informix database.
      I donu2019t know what ODBC function Crystal may be expecting from the driver that it doesnu2019t seem to support and how to tell Crystal to not need it.
    Thanks,
    Mike

    Hi Mike,
    According to the Platforms for DB support we only support these Informix data sources:
    IDS (Informix Dynamic Server)     11.50       32 bit       64 bit        Linux               AIX                   Solaris
    IDS          IDS Client 11.5                                     Direct     Direct     Not Supported     Not Supported     Not Supported
    ODBC      IBM Informix ODBC SDK 3.50             Direct     Direct     Direct             Direct             Direct
    ODBC      DataDirect ODBC 6.0 SP2 (10)      Direct     Direct     Direct             Direct             Direct
    You may want to try the Data Direct 6.x drivers as a test.
    CR in the .NET IDE is running under 32 bit mode so make sure you are using the 32 bit Client.
    Don

  • TS1416 It seems the latest itunes version does not support sync functions to ipod classic

    I have updated my Itunes to version 11.04 but it seems this version does not support syncing with Ipod classic it seems it only supports the Ipod touch.  Does anyone have any solutions for this problem?

    Device not recognized. Take note of item 5.
    http://support.apple.com/kb/ts1538

  • I am told that my browser does not support iframes when trying to access a web site.

    This is Google's cache of http://sitetrail.com/askearth.com. It is a snapshot of the page as it appeared on Sep 19, 2010 10:44:02 GMT. The current page could have changed in the meantime. Learn more
    Full version These search terms are highlighted: history askearth com
    * Contact Us
    SiteTrail - Website News and Analysis
    * Business
    * Dev & Design
    * Entertainment
    * Mobile
    * Social Media
    * Tech
    Search in SiteTrail askearth.com (visit site) This data was last updated 6 months ago (update data).
    Site Profile Estimated Value: $5,582.16 USD Estimated Revenue: $7.60 USD per day $227.90 USD per month $2,772.81 USD per year Estimated Pageviews: 3,355 per day 100,648 per month 1,224,551 per year Alexa Rank: #447,581 Google Index: show google links Yahoo Index: show yahoo links Bing Index: show bing links History: show history Site Title: Interesting Questions - AskEarth Site Traffic
    Site Server Server IP Address: 140.174.79.37 Server IP Decimal: -1934733531 Server IP Location: Pordenone, Friuli-Venezia Giulia, Italy
    Your browser does not support iframes. Whois Information Welcome to the Network Solutions(R) Registrar WHOIS Server.
    The IP address from which you have visited the Network Solutions Registrar WHOIS database is contained within a list of IP addresses that may have failed to abide by Network Solutions' WHOIS policy. Failure to abide by this policy can adversely impact our systems and servers, preventing the processing of other WHOIS requests.
    To see the Network Solutions WHOIS Policy, click on or copy and paste the following URL into your browser:
    http://www.networksolutions.com/whois/index.jhtml
    If you feel that you have received this message in error, please email us using the online form at http://www.networksolutions.com/help/email.jsp with the following information:
    Whois Query: askearth.com YOUR IP address is 174.129.155.56 Date and Time of Query: Tue Feb 23 00:49:37 EST 2010 Reason Code: IE DNS Records Host Class Type IP TTL Target Other askearth.com IN A 140.174.79.37 7199 askearth.com IN NS 7200 ns53.worldnic.com askearth.com IN NS 7200 ns54.worldnic.com askearth.com IN SOA 7200 mname: NS53.WORLDNIC.com rname: namehost.WORLDNIC.com serial: 108121504 refresh: 10800 retry: 3600 expire: 604800 minimum-ttl: 3600 HTTP Headers HTTP/1.1 302 Found Date: Tue, 23 Feb 2010 05:59:34 GMT Server: Apache/2.2.11 (Unix) mod_fastcgi/2.4.2 PHP/4.4.9 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.7m mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.7 Location: http://askearth.com/go/home Content-Length: 417 Connection: close Content-Type: text/html; charset=iso-8859-1
    HTTP/1.1 200 OK Date: Tue, 23 Feb 2010 05:59:35 GMT Server: Apache/2.2.11 (Unix) mod_fastcgi/2.4.2 PHP/4.4.9 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.7m mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.7 Set-Cookie: id=11010246; EXPIRES=Sun, 01-Apr-29 00:00:00 GMT; PATH=/ Set-Cookie: pass=u0zit0yv; EXPIRES=Sun, 01-Apr-29 00:00:00 GMT; PATH=/ Set-Cookie: since=1266904775; PATH=/ Connection: close Content-Type: text/html Firefox Add-on SiteTrail Firefox Add-onPerform SiteTrail lookups via right-click menu straight from your web browser! Popular Lookups
    * google.com#1
    * facebook.com#2
    * youtube.com#3
    * yahoo.com#4
    * live.com#5
    * baidu.com#6
    * wikipedia.org#7
    * blogspot.com#8
    * msn.com#9
    Browse Lookups
    A B C D E F G H I
    J K L M N O P Q R S T U V W X Y Z Recent Lookups
    * askearth.com#447,581
    * evdenevenakliyatv.com#442,990
    * mytaskhelper.com#756,476
    * fikralari.net#639,299
    * typemytape.com#1,547,530
    * tmmod.info#1,078,434
    * torrentplus.org#233,938
    * communitycollegelistin...#430,008
    * cadbury.co.uk#104,852
    * myhobbyblogs.com#297,443
    Random Lookups
    * solidmastermind.com#931,183
    * homelegance.com#277,584
    * homepage-anleitung.de#1,091,134
    * icicigroupcompanies.co...#1,513,887
    * ptiboo.ch#744,058
    * fachportal-paedagogik....#312,102
    * lcpo.com#336,926
    * spitinet.gr#904,561
    * sportingpulse.com#37,069
    * v-pillsbuyutucuhap.com#543,342
    * sameskyboard.com#51,252
    * alparslanpazarlama.com...#1,444,281
    * ventausa.com#221,470
    * dentalmag.org#234,937
    * digitalfoci.com#1,214,872
    * blank-label.com#273,247
    * efun.ir#446,350
    * greatamericandays.com#579,258
    * it007.com#58,123
    * hairyclipz.com#760,892
    Navigation
    * Contact Us
    Categories
    * Business
    * Dev & Design
    * Entertainment
    * Mobile
    * Social Media
    * Tech
    Recent News
    * VP of Twitter Says Twitter is NOT A Social Network
    * Google Puts White Spaces To Use
    * YouTube Instant Experiment Gives Creator a Job At YouTube
    * YouTube Time Machine – A New Website To Waste Hours On
    * Google’s New Instant Search – Saving 11 Hours Every Second
    * Facebook Notes Gets New Tools
    Recent Lookups
    * askearth.com#447,581
    * evdennakliyateve.com#442,990
    * mytaskhelper.com#756,476
    * maximumwoman.com#639,299
    * typemytape.com#1,547,530
    * tmmod.info#1,078,434
    © 2010 SiteTrail. All Rights Reserved.

    I'm not clear on where you are seeing that text. When I view Google's cached page from the page found in this search
    https://www.google.com/search?q=site%3Asitetrail.com%2Faskearth.com
    It doesn't match yours exactly. There is an iframe with a Google map in it in the "Hosting Analysis" section, which in your pasted page seems to be the "Site Server" section.
    Which Google site did you search?

  • "...does not support this type of alias."

    I just reinstalled the OS 10.4 onto my G5 using the erase and install function. The drive is formatted as a Mac OS Extended (Journaled), which is an HFS+ format. I'm trying to copy some files onto the main hard drive from a DVD. I keep getting an error message that says "[the file name] cannot be copied to the destination, perhaps because the destination does not support this type of alias." I researched the message and the only thing I could find was that the error appears if the destination disk is formatted as a UFS disk. I thought maybe I made a mistake when I reinstalled the OS, so I tried to copy the same files to the secondary internal drive and to an external Firewire drive, and I got the same message both times.
    What should I be looking for so that this will work? I'm going to post in a couple other topics, but any help would be greatly appreciated.
    Thank you in advance,
    Lloyd

    Barry,
    I was trying to make back-up copies of my Adobe CS2 disks by copying the disks to the hard drive then burning them to CDs, but I got the error message when I dragged the contents from the original CD to the HD.
    This worked, but it took a while: I Stuffed each CD to the HD, then unStuffed them and used Toast to burn a new CD. A few steps longer, but at least it worked.
    Now, if I could only figure out why the second internal drive does not have the "Ignore Permissions" check box available, I'd be all set.
    Thanks,
    Lloyd

  • "DBSL does not support extended connect protocol" while configuring SSFS

    Hi, I'm trying to configure ssfs on ERP EHP7 on HANA Database system. Doing it with this guide - SSFS Implementation for Oracle Database
    But when I'm trying to test connection with r3trans I got following error in the log:
    4 ETW000  [     dev trc,00000]  read_con_info_ssfs(): DBSL does not support extended connect protocol
    4 ETW000                         ==> ssfs won't be used                                                   26  0.004936
    I already updated DBSL_LIB to the latest version, but it doesn't help.
    Here is full log:
    4 ETW000 C:\usr\sap\CM1\DVEBMGS04\exe\R3trans.EXE version 6.24 (release 741 - 16.05.14 - 20:14:06).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 02.06.2014 - 13:49:16
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: C:\usr\sap\CM1\DVEBMGS04\exe\R3trans.EXE -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [     dev trc,00000]  Mon Jun 02 13:49:16 2014                                                 106  0.000106
    4 ETW000  [     dev trc,00000]  db_con_init called                                                        36  0.000142
    4 ETW000  [     dev trc,00000]  set_use_ext_con_info(): ssfs will be used to get connect information
    4 ETW000                                                                                                  61  0.000203
    4 ETW000  [     dev trc,00000]  determine_block_commit: no con_hdl found as blocked for con_name = R/3
    4 ETW000                                                                                                  26  0.000229
    4 ETW000  [     dev trc,00000]  create_con (con_name=R/3)                                                 17  0.000246
    4 ETW000  [     dev trc,00000]  Loading DB library 'dbhdbslib.dll' ...                                    46  0.000292
    4 ETW000  [     dev trc,00000]  DlLoadLib success: LoadLibrary("dbhdbslib.dll"), hdl 0, count 1, addr 000007FEED100000
    4 ETW000                                                                                                3840  0.004132
    4 ETW000  [     dev trc,00000]      using "C:\usr\sap\CM1\DVEBMGS04\exe\dbhdbslib.dll"                    21  0.004153
    4 ETW000  [     dev trc,00000]  Library 'dbhdbslib.dll' loaded                                            21  0.004174
    4 ETW000  [     dev trc,00000]  function DbSlExpFuns loaded from library dbhdbslib.dll                    42  0.004216
    4 ETW000  [     dev trc,00000]  Version of 'dbhdbslib.dll' is "741.10", patchlevel (0.22)                 81  0.004297
    4 ETW000  [     dev trc,00000]  function dsql_db_init loaded from library dbhdbslib.dll                   25  0.004322
    4 ETW000  [     dev trc,00000]  function dbdd_exp_funs loaded from library dbhdbslib.dll                  41  0.004363
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    47  0.004410
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=-1,command=39,arg_p=0000000000000000)            24  0.004434
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    18  0.004452
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=-1,command=10,arg_p=000000000205F170)            22  0.004474
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    17  0.004491
    4 ETW000  [     dev trc,00000]  New connection 0 created                                                  17  0.004508
    4 ETW000  [     dev trc,00000]  0: name = R/3, con_id = -000000001, state = DISCONNECTED, tx = NO , bc = NO , oc = 000, hc = NO , perm = YES, reco = NO , info = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO , prog = 
    4 ETW000                                                                                                  38  0.004546
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=-1,command=10,arg_p=0000000141BAEDB0)            44  0.004590
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    19  0.004609
    4 ETW000  [     dev trc,00000]  db_con_connect (con_name=R/3)                                             19  0.004628
    4 ETW000  [     dev trc,00000]  determine_block_commit: no con_hdl found as blocked for con_name = R/3
    4 ETW000                                                                                                  24  0.004652
    4 ETW000  [     dev trc,00000]  find_con_by_name found the following connection:                          17  0.004669
    4 ETW000  [     dev trc,00000]  0: name = R/3, con_id = 000000000, state = DISCONNECTED, tx = NO , bc = NO , oc = 000, hc = NO , perm = YES, reco = NO , info = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO , prog = 
    4 ETW000                                                                                                 164  0.004833
    4 ETW000  [     dev trc,00000]  read_con_info_ssfs(): reading connect info for connection R/3             34  0.004867
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=-1,command=74,arg_p=0000000000000000)            24  0.004891
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=15)                                                   19  0.004910
    4 ETW000  [     dev trc,00000]  read_con_info_ssfs(): DBSL does not support extended connect protocol
    4 ETW000                         ==> ssfs won't be used                                                   26  0.004936
    4 ETW000  [     dev trc,00000]  { DbSlHDBConnect(con_info_p=0000000000000000)                             31  0.004967
    4 ETW000  [     dev trc,00000]  DBHDBSLIB : version 741.10, patch 0.022 (Make PL 0.26)                    34  0.005001
    4 ETW000  [     dev trc,00000]  HDB shared library (dbhdbslib) patchlevels (last 10)                      32  0.005033
    4 ETW000  [     dev trc,00000]    (0.022) Get database version via dbsl call (note 1976918)               24  0.005057
    4 ETW000  [     dev trc,00000]    (0.020) FDA: Core Dump in SELECT ... FOR ALL ENTRIES for tables with strings (note 1970276)
    4 ETW000                                                                                                  32  0.005089
    4 ETW000  [     dev trc,00000]    (0.020) SQL DDL with data aging (note 1897636)                          21  0.005110
    4 ETW000  [     dev trc,00000]    (0.017) Datatype NCLOB missing in tablesize calculation (note 1952609)
    4 ETW000                                                                                                  30  0.005140
    4 ETW000  [     dev trc,00000]    (0.014) Tablesize calculation for HANA optimized (note 1952609)         25  0.005165
    4 ETW000  [     dev trc,00000]    (0.014) Native SQL UPSERT with DataAging (note 1897636)                 21  0.005186
    4 ETW000  [     dev trc,00000]    (0.014) DBSL supports HANA revision number up to 3 digits (note 1952701)
    4 ETW000                                                                                                  27  0.005213
    4 ETW000  [     dev trc,00000]    (0.010) Quotes missing by FAE with the hint dbsl_equi_join (note 1939234)
    4 ETW000                                                                                                  28  0.005241
    4 ETW000  [     dev trc,00000]    (0.007) Obsere deactivate aging flag (note 1897636)                     24  0.005265
    4 ETW000  [     dev trc,00000]    (0.007) Calculated record length for INSERT corrected (note 1897636)
    4 ETW000                                                                                                  27  0.005292
    4 ETW000  [     dev trc,00000]                                                                            15  0.005307
    4 ETW000  [     dev trc,00000]   -> init()                                                                21  0.005328
    4 ETW000  [     dev trc,00000]    STATEMENT_CACHE_SIZE = 1000                                            181  0.005509
    4 ETW000  [     dev trc,00000]   -> init()                                                               505  0.006014
    4 ETW000  [     dev trc,00000]   -> loadClientRuntime()                                                   27  0.006041
    4 ETW000  [     dev trc,00000]  Loading SQLDBC client runtime ...                                         19  0.006060
    4 ETW000  [     dev trc,00000]  SQLDBC Module  : C:\usr\sap\CM1\hdbclient\libSQLDBCHDB.dll               779  0.006839
    4 ETW000  [     dev trc,00000]  SQLDBC Runtime : libSQLDBCHDB 1.00.68 Build 0384084-1510                  74  0.006913
    4 ETW000  [     dev trc,00000]  SQLDBC client runtime is 1.00.68.0384084                                  45  0.006958
    4 ETW000  [     dev trc,00000]   -> getNewConnection()                                                    28  0.006986
    4 ETW000  [     dev trc,00000]   <- getNewConnection(con_hdl=0)                                           78  0.007064
    4 ETW000  [     dev trc,00000]   -> checkEnvironment(con_hdl=0)                                           34  0.007098
    4 ETW000  [     dev trc,00000]   -> connect(con_info_p=0000000000000000)                                  27  0.007125
    4 ETW000  [     dev trc,00000]  Try to connect via secure store (DEFAULT) on connection 0 ...             62  0.007187
    4 ETW000  [     dev trc,00000]   -> check_db_params(con_hdl=0)                                         61365  0.068552
    4 ETW000  [     dev trc,00000]  Attach to HDB : 1.00.68.384084 (NewDB100_REL)                           7595  0.076147
    4 ETW000  [     dev trc,00000]  Database release is HDB 1.00.68.384084                                    49  0.076196
    4 ETW000  [     dev trc,00000]  INFO : Database 'HDB/00' instance is running on 'hanaserver'            6867  0.083063
    4 ETW000  [     dev trc,00000]  INFO : Connect to DB as 'SAPCM1', connection_id=201064                 43659  0.126722
    4 ETW000  [     dev trc,00000]  DB max. input host variables  : 32767                                   6954  0.133676
    4 ETW000  [     dev trc,00000]  DB max. statement length      : 1048576                                   34  0.133710
    4 ETW000  [     dev trc,00000]  DB max. array size            : 100000                                    75  0.133785
    4 ETW000  [     dev trc,00000]  use decimal precision as length                                           21  0.133806
    4 ETW000  [     dev trc,00000]  ABAPVARCHARMODE is used                                                   19  0.133825
    4 ETW000  [     dev trc,00000]  INFO : DBSL buffer size = 1048576                                         20  0.133845
    4 ETW000  [     dev trc,00000]  Command info enabled                                                      19  0.133864
    4 ETW000  [     dev trc,00000]  Now I'm connected to HDB                                                  18  0.133882
    4 ETW000  [     dev trc,00000]  00: hanaserver-HDB/00, since=20140602134916, ABAP= <unknown> (0)          30  0.133912
    4 ETW000  [     dev trc,00000]  } DbSlHDBConnect(rc=0)                                                    18  0.133930
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=30,arg_p=0000000000000000)             24  0.133954
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    18  0.133972
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=21,arg_p=000000000205F460)             22  0.133994
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    18  0.134012
    4 ETW000  [     dev trc,00000]  Connection 0 opened (DBSL handle 0)                                       36  0.134048
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=7,arg_p=000000000205F4B0)              25  0.134073
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    17  0.134090
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=63,arg_p=000000000205F2B0)             23  0.134113
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    18  0.134131
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=21,arg_p=000000000205F300)          12214  0.146345
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    32  0.146377
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=11,arg_p=000000000205F420)             26  0.146403
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    18  0.146421
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=22,arg_p=000000000205F390)             23  0.146444
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    37  0.146481
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=13,arg_p=000000000205F260)             29  0.146510
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    18  0.146528
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=24,arg_p=000000000205F210)             37  0.146565
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    35  0.146600
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=51,arg_p=000000000205F200)             40  0.146640
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=15)                                                   31  0.146671
    4 ETW000  [     dev trc,00000]  { DbSlHDBPrepare(con_hdl=0,ss_p=000000000205F4E0,op=3,da_p=000000000205F540)
    4 ETW000                                                                                                  46  0.146717
    4 ETW000  [     dev trc,00000]   -> buildSQLStmt(stmt_p=000000000205F4B0,da_p=000000000205F540,for_explain=0,lock=0,op=3)
    4 ETW000                                                                                                  89  0.146806
    4 ETW000  [     dev trc,00000]   <- buildSQLStmt(len=27,op=3,#marker=0,#lob=0)                            33  0.146839
    4 ETW000  [     dev trc,00000]   -> stmt_prepare(sc_hdl=0000000003AEAC40,ss_p=000000000205F4E0)           75  0.146914
    4 ETW000  [     dev trc,00000]  sc_p=0000000003AEAC40,no=0,idc_p=0000000000000000,con=0,act=0,slen=27,smax=256,#vars=0,stmt=000000000AD913E0,table=SVERS                        
    4 ETW000                                                                                                  46  0.146960
    4 ETW000  [     dev trc,00000]  SELECT VERSION FROM SVERS  ;                                              23  0.146983
    4 ETW000  [     dev trc,00000]    CURSOR C_0000 PREPARE on connection 0                                   21  0.147004
    4 ETW000  [     dev trc,00000]  } DbSlHDBPrepare(rc=0)                                                  6174  0.153178
    4 ETW000  [     dev trc,00000]  { DbSlHDBRead(con_hdl=0,ss_p=000000000205F4E0,da_p=000000000205F540)
    4 ETW000                                                                                                  53  0.153231
    4 ETW000  [     dev trc,00000]   ABAP USER is not set                                                     25  0.153256
    4 ETW000  [     dev trc,00000]   -> activate_stmt(sc_hdl=0000000003AEAC40,da_p=000000000205F540)          25  0.153281
    4 ETW000  [     dev trc,00000]   -> bind_variables(sc_hdl=0000000003AEAC40,in_out=0,bulk=0,da_p=000000000205F540)
    4 ETW000                                                                                                  30  0.153311
    4 ETW000  [     dev trc,00000]   -> allocParameter(in_out=0,col_cnt=0)                                    21  0.153332
    4 ETW000  [     dev trc,00000]   -> calculate_record_length(sc_hdl=0000000003AEAC40,in_out=0,bulk=0,types=0000000000000000,#col=0,useBulkInsertWithLobs=0)
    4 ETW000                                                                                                  54  0.153386
    4 ETW000  [     dev trc,00000]      #float=0,#lob=0,itab=0,#short=0,#int=0,#llong=0,#uc=0,rec_lng=0,db_lng=0
    4 ETW000                                                                                                  33  0.153419
    4 ETW000  [     dev trc,00000]   <- calculate_record_length(row_size=0, lob_cnt=0, lob_pw_cnt=0, long_cnt=0, ins_bulk_lob=0, row_max=1)
    4 ETW000                                                                                                  33  0.153452
    4 ETW000  [     dev trc,00000]   -> exec_modify(sc_hdl=0000000003AEAC40,ss_p=000000000205F4E0,bulk=0,in_out=1,da_p=000000000205F540)
    4 ETW000                                                                                                  36  0.153488
    4 ETW000  [     dev trc,00000]   -> stmt_execute(sc_hdl=0000000003AEAC40,ss_p=000000000205F4E0,in_out=1,da_p=000000000205F540)
    4 ETW000                                                                                                  95  0.153583
    4 ETW000  [     dev trc,00000]    OPEN CURSOR C_0000 on connection 0                                      28  0.153611
    4 ETW000  [     dev trc,00000]    CURSOR C_0000 SET InputSize=1                                           23  0.153634
    4 ETW000  [     dev trc,00000]    CURSOR C_0000 EXECUTE on connection 0                                   22  0.153656
    4 ETW000  [     dev trc,00000]    execute() of C_0000, #rec=0, rcSQL=0, rc=0                            6404  0.160060
    4 ETW000  [     dev trc,00000]    CURSOR C_0000, rc=0,#rec=0,#dbcount=0                                   36  0.160096
    4 ETW000  [     dev trc,00000]   -> bind_variables(sc_hdl=0000000003AEAC40,in_out=1,bulk=0,da_p=000000000205F540)
    4 ETW000                                                                                                  33  0.160129
    4 ETW000  [     dev trc,00000]   -> allocParameter(in_out=1,col_cnt=1)                                    21  0.160150
    4 ETW000  [     dev trc,00000]   -> calculate_record_length(sc_hdl=0000000003AEAC40,in_out=1,bulk=0,types=000000000205F518,#col=1,useBulkInsertWithLobs=0)
    4 ETW000                                                                                                  37  0.160187
    4 ETW000  [     dev trc,00000]      #float=0,#lob=0,itab=0,#short=0,#int=0,#llong=0,#uc=72,rec_lng=144,db_lng=144
    4 ETW000                                                                                                  31  0.160218
    4 ETW000  [     dev trc,00000]   <- calculate_record_length(row_size=144, lob_cnt=0, lob_pw_cnt=0, long_cnt=0, ins_bulk_lob=0, row_max=1)
    4 ETW000                                                                                                  31  0.160249
    4 ETW000  [     dev trc,00000]   -> allocIndicator(in_out=1,row_cnt=1)                                    21  0.160270
    4 ETW000  [     dev trc,00000]   -> allocData(in_out=1,size=1048576)                                      21  0.160291
    4 ETW000  [     dev trc,00000]   -> bind_type_and_length(sc_hdl=0000000003AEAC40,in_out=1,bulk=0,arr_size=1,types=000000000205F518,da_p=000000000205F540)
    4 ETW000                                                                                                  45  0.160336
    4 ETW000  [     dev trc,00000]   -> exec_fetch(sc_hdl=0000000003AEAC40,bulk=0,da_p=000000000205F540)
    4 ETW000                                                                                                  41  0.160377
    4 ETW000  [     dev trc,00000]      xcnt=1,row_i=0,row_pcnt=0                                             20  0.160397
    4 ETW000  [     dev trc,00000]   -> stmt_fetch(sc_hdl=0000000003AEAC40)                                   20  0.160417
    4 ETW000  [     dev trc,00000]    CURSOR C_0000 FETCH (xcnt=1) on connection 0                            23  0.160440
    4 ETW000  [     dev trc,00000]    next() of C_0000, rc=0                                                  27  0.160467
    4 ETW000  [     dev trc,00000]    fetch() of C_0000, #rec=1, rc=0, rcSQL=0                                28  0.160495
    4 ETW000  [     dev trc,00000]   -> deactivate_stmt(sc_hdl=0000000003AEAC40,da_p=000000000205F540,rc=0)
    4 ETW000                                                                                                  91  0.160586
    4 ETW000  [     dev trc,00000]   -> StmtCacheFree(DBSL:C_0000)                                            24  0.160610
    4 ETW000  [     dev trc,00000]    CURSOR C_0000 CLOSE resultset on connection 0                           20  0.160630
    4 ETW000  [     dev trc,00000]  } DbSlHDBRead(rc=0)                                                       34  0.160664
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=43,arg_p=00000001400FAB06)             25  0.160689
    4 ETW000  [     dev trc,00000]  INFO : SAP RELEASE (DB) = 740                                             19  0.160708
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    16  0.160724
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=41,arg_p=00000001400FAB98)             49  0.160773
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    19  0.160792
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=14,arg_p=0000000002055888)             22  0.160814
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    18  0.160832
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=50,arg_p=0000000002055880)             22  0.160854
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    26  0.160880
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=52,arg_p=00000000020558F0)             23  0.160903
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    17  0.160920
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=20,arg_p=0000000141FC74F0)             99  0.161019
    4 ETW000  [     dev trc,00000]  INFO : STMT SIZE = 1048576                                                21  0.161040
    4 ETW000  [     dev trc,00000]  INFO : MARKER_CNT = 32767                                                 18  0.161058
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    19  0.161077
    4 ETW000  [     dev trc,00000]  NTAB: SELECT COMPCNT, UNICODELG FROM DDNTT WHERE TABNAME = 'SVERS'...
    4 ETW000                                                                                                  38  0.161115
    4 ETW000  [     dev trc,00000]  { DbSlHDBPrepare(con_hdl=0,ss_p=0000000002055160,op=3,da_p=00000000020551B0)
    4 ETW000                                                                                                  31  0.161146
    4 ETW000  [     dev trc,00000]   -> buildSQLStmt(stmt_p=0000000002055180,da_p=00000000020551B0,for_explain=0,lock=0,op=3)
    4 ETW000                                                                                                  32  0.161178
    4 ETW000  [     dev trc,00000]   <- buildSQLStmt(len=63,op=3,#marker=0,#lob=0)                            23  0.161201
    4 ETW000  [     dev trc,00000]   -> stmt_prepare(sc_hdl=0000000003AEACD8,ss_p=0000000002055160)           38  0.161239
    4 ETW000  [     dev trc,00000]  sc_p=0000000003AEACD8,no=1,idc_p=0000000000000000,con=0,act=0,slen=63,smax=256,#vars=0,stmt=000000000AE09690,table=DDNTT                        
    4 ETW000                                                                                                  38  0.161277
    4 ETW000  [     dev trc,00000]  SELECT COMPCNT, UNICODELG FROM "DDNTT" WHERE TABNAME = 'SVERS' ;          21  0.161298
    4 ETW000  [     dev trc,00000]    CURSOR C_0001 PREPARE on connection 0                                   19  0.161317
    4 ETW000  [     dev trc,00000]  } DbSlHDBPrepare(rc=0)                                                  6453  0.167770
    4 ETW000  [     dev trc,00000]  db_con_test_and_open: 1 open cursors (delta=1)                            30  0.167800
    4 ETW000  [     dev trc,00000]  db_con_check_dirty: 1 open cursors, tx = NO , bc = NO                     18  0.167818
    4 ETW000  [     dev trc,00000]  db_con_check_dirty: db_con_dirty = YES                                    16  0.167834
    4 ETW000  [     dev trc,00000]  { DbSlHDBBegRead(con_hdl=0,ss_p=0000000002055160,da_p=00000000020551B0)
    4 ETW000                                                                                                  35  0.167869
    4 ETW000  [     dev trc,00000]   ABAP USER is not set                                                     23  0.167892
    4 ETW000  [     dev trc,00000]   -> activate_stmt(sc_hdl=0000000003AEACD8,da_p=00000000020551B0)          23  0.167915
    4 ETW000  [     dev trc,00000]   -> bind_variables(sc_hdl=0000000003AEACD8,in_out=0,bulk=0,da_p=00000000020551B0)
    4 ETW000                                                                                                  32  0.167947
    4 ETW000  [     dev trc,00000]   -> allocParameter(in_out=0,col_cnt=0)                                    23  0.167970
    4 ETW000  [     dev trc,00000]   -> calculate_record_length(sc_hdl=0000000003AEACD8,in_out=0,bulk=0,types=0000000000000000,#col=0,useBulkInsertWithLobs=0)
    4 ETW000                                                                                                  34  0.168004
    4 ETW000  [     dev trc,00000]      #float=0,#lob=0,itab=0,#short=0,#int=0,#llong=0,#uc=0,rec_lng=0,db_lng=0
    4 ETW000                                                                                                  30  0.168034
    4 ETW000  [     dev trc,00000]   <- calculate_record_length(row_size=0, lob_cnt=0, lob_pw_cnt=0, long_cnt=0, ins_bulk_lob=0, row_max=1)
    4 ETW000                                                                                                  31  0.168065
    4 ETW000  [     dev trc,00000]   -> exec_modify(sc_hdl=0000000003AEACD8,ss_p=0000000002055160,bulk=0,in_out=1,da_p=00000000020551B0)
    4 ETW000                                                                                                  32  0.168097
    4 ETW000  [     dev trc,00000]   -> stmt_execute(sc_hdl=0000000003AEACD8,ss_p=0000000002055160,in_out=1,da_p=00000000020551B0)
    4 ETW000                                                                                                  32  0.168129
    4 ETW000  [     dev trc,00000]    OPEN CURSOR C_0001 on connection 0                                      20  0.168149
    4 ETW000  [     dev trc,00000]    CURSOR C_0001 SET InputSize=1                                           19  0.168168
    4 ETW000  [     dev trc,00000]    CURSOR C_0001 EXECUTE on connection 0                                   20  0.168188
    4 ETW000  [     dev trc,00000]    execute() of C_0001, #rec=0, rcSQL=0, rc=0                            5712  0.173900
    4 ETW000  [     dev trc,00000]    CURSOR C_0001, rc=0,#rec=0,#dbcount=0                                   34  0.173934
    4 ETW000  [     dev trc,00000]   -> bind_variables(sc_hdl=0000000003AEACD8,in_out=1,bulk=1,da_p=00000000020551B0)
    4 ETW000                                                                                                  32  0.173966
    4 ETW000  [     dev trc,00000]   -> allocParameter(in_out=1,col_cnt=2)                                    21  0.173987
    4 ETW000  [     dev trc,00000]   -> calculate_record_length(sc_hdl=0000000003AEACD8,in_out=1,bulk=1,types=0000000002055240,#col=2,useBulkInsertWithLobs=0)
    4 ETW000                                                                                                  34  0.174021
    4 ETW000  [     dev trc,00000]      #float=0,#lob=0,itab=0,#short=2,#int=0,#llong=0,#uc=0,rec_lng=16,db_lng=4
    4 ETW000                                                                                                  30  0.174051
    4 ETW000  [     dev trc,00000]   <- calculate_record_length(row_size=16, lob_cnt=0, lob_pw_cnt=0, long_cnt=0, ins_bulk_lob=0, row_max=65536)
    4 ETW000                                                                                                  32  0.174083
    4 ETW000  [     dev trc,00000]   -> allocIndicator(in_out=1,row_cnt=65536)                                20  0.174103
    4 ETW000  [     dev trc,00000]   -> allocData(in_out=1,size=1048576)                                      30  0.174133
    4 ETW000  [     dev trc,00000]   -> bind_type_and_length(sc_hdl=0000000003AEACD8,in_out=1,bulk=1,arr_size=65536,types=0000000002055240,da_p=00000000020551B0)
    4 ETW000                                                                                                  36  0.174169
    4 ETW000  [     dev trc,00000]  } DbSlHDBBegRead(rc=0)                                                    24  0.174193
    4 ETW000  [     dev trc,00000]  { DbSlHDBExeRead(con_hdl=0,ss_p=0000000002055160,da_p=00000000020551B0)
    4 ETW000                                                                                                  35  0.174228
    4 ETW000  [     dev trc,00000]   ABAP USER is not set                                                     20  0.174248
    4 ETW000  [     dev trc,00000]   -> exec_fetch(sc_hdl=0000000003AEACD8,bulk=0,da_p=00000000020551B0)
    4 ETW000                                                                                                  33  0.174281
    4 ETW000  [     dev trc,00000]      xcnt=1,row_i=0,row_pcnt=0                                             20  0.174301
    4 ETW000  [     dev trc,00000]   -> stmt_fetch(sc_hdl=0000000003AEACD8)                                   20  0.174321
    4 ETW000  [     dev trc,00000]    CURSOR C_0001 FETCH (xcnt=1) on connection 0                            20  0.174341
    4 ETW000&

    Hi,
    Could you check for SAP Note   1952701 - DBSL supports new HANA version number
    Regards,
    Gaurav

  • Webelements : does not support when i add the data sourcce& view in HTML

    hi Masters,
    i am using sap crystal reports 2008 and when i add the data source and add tables to the report and i use web elements functions as my selection screen then it does not show i mean the script remains as it is and when i take out my data source
    then it works when i view it in HTML VIEWR.
    how can i make it to work despite me using the data soruce.
    thank you,
    pasala

    hi Pasala,
    this is due to the sap integration kit which does not support pass-through html. webelements require pass-through html in order to show up as html.
    here's what you can try though:
    1) install the latest sap integration kit on your boe system machine(s)
    2) if the above does not solve the issue follow the steps at the bottom of [this thread|WebElements: HTML not rendering when using Bex Query as Source]
    3) if 2 above doesn't work then see [this thread |Re: WebElements only show HTML tags (even after following WebElement guides)]as a last resort
    hopefully step 1 & step 2 will solve the issue.
    jamie

Maybe you are looking for

  • How to add the push button on the apllication tollbar of IL02 tcode

    Hi Friends, I have to add the push button on the application tool bar of the IL02.when that push button is pressed then some operation to be performed.Could you please suggest how to add.Is there any screen exit if yes what is that. With out screen e

  • Installing XML::Simple Perl module on 10.4.8

    Two of my friends today asked me to help them get XML::Simple working on their Mac's. Somthing that should be a simple cpan one-liner "install XML::Simple" doesnt work on OSX. It took me a half hour to figure all this out... here are the steps: Prere

  • Displaying % symbol in the report

    Hi Experts, Can anyone tell me how do I prefix % in my report. I have a column which does a calculation Total Completed Call/ Total calls created *100. The value i get is in number, which i want to display along with percentage %. Please help. Thanks

  • Adobe AIR application uninstall

    Hi guys    I am new to Adobe AIR Forum. I don't know where to put my question.Ok anyway, My question is there any option to    customize the uninsatll Adobe AIR application (or)    control the uninstall Adobe AIR Application.(that means i want to com

  • The automated backup of the sybase database in zfd4.X does not work afther installing zfd4 IR 5

    Hello everyone, Before installing zfd4 IR 5 it was possible to backup the sybase database with the startser dbbackup command from the server console with cron. See document in cool solutions "Automating the backup of the sybase database in zfd4.x" by