HERE Transit does not support Overground trains in...

Hi Support
HERE Transit in London supports buses and underground trains, but does not seem to have any concept of Overground trains (inner city trains). Until this has been fixed the usefulness of the app for me is greately reduced. I'd like to use the app but am forced to still use the online London Journey planner at http://journeyplanner.tfl.gov.uk
HERE Transit version: 4.0.2036.0
Phone: Lumia 925
Regards,
Kaarel

is null statement is post processed. This means in case of a select ALL records from the remote database are fetched into the Oracle database and the is null statement is then processed locally in the Oracle db.
So thze select will work as it is handled internally in the Oracle database. This also means as But "is null" isn't sent to the foreign MySQL db the update clause will fail with ORA-02070: database PLAZAHOST does not support IS NULL in this context
You need to recode the statement or use passthrough statements.

Similar Messages

  • Technical Details: The website does not support encryption for the page you are viewing. Information sent over the internet withour encryption can be seen by other people while it is in transit

    Technical Details:
    The website does not support encryption for the page you are viewing.
    Information sent over the internet withour encryption can be seen by other people while it is in transit
    == This happened ==
    Not sure how often
    == started few days ago. previously never happened before.

    I was loading a website, it then stated as below, it wasnt any of the problems stated below.
    SERVER NOT FOUND
    # Check the address for typing errors such as
    ww.example.com instead of
    www.example.com
    # If you are unable to load any pages, check your computer's network
    connection.
    # If your computer or network is protected by a firewall or proxy, make sure
    that Firefox is permitted to access the Web.
    Thus i checked the Page Info, it states that:
    Security Info on page:
    '''This website does not supply ownership information.
    Connection not Encrypted.'''
    Technical Details:
    The website does not support encryption for the page you are viewing.
    Information sent over the internet withour encryption can be seen by other people while it is in transit

  • Siri keeps telling me "your calendar does not support location-based reminders" when I ask her to remind me to feed the cat when I get home. My address is in contacts and it has worked previously. Did iOS 8 change something?

    calendar does not support location-based reminders....
    i Just found a similar question below and it resolved my issue. Turn off the sync to exchange email and all works fine now.

    Couldn't agree more.  I've been *trying* to use location reminders ever since buying my iPhone 4S but as yet, out of many, many attempts they've only actually worked once.
    The kid problem is very simple, the way the phone needs the location to be an address in your address book, and it's subsequent inability to correctly locate the address. My home address is a correct postal address, and has been unchanged for 40+ years, yet clicking on my address from my own contact entry puts my location some distance down my street.
    Whilst I understand the issue with the address lookup, it seems to be a massive problem with the location based reminders as it's just not possible to set useful reminders.
    What if I want to remind myself of something when I arrive at the car park on a shopping trip?  There is no address for that in my contacts, I just want to pinpoint the location on the maps and say 'remind me when I get there'.  Surely that's the simplest my far.  Same with address book contacts, if you had a field with the gps position in then one could tag the locations and know they were 100% accurate for location services.
    Such a shame as it's one of the key reasons I upgraded my phone and as it stands it just plain doesn't work.

  • Adobe Creative Cloud does not support Bootcamp by Apple IOS operating system, but does work with boot camp Win 8.1 why"

    Adobe Creative Cloud does not support APPLE latest IOS operating system, but does allow Windows 8.1 to be accepted. This seems a shame to me, as
    Apple IOS is the leader in graphics, photography. The advertising states it is usable under both APPLE IOS and Microsoft 8.1 windows operating systems. Adobe Support Chat Sooraj tells me on 02/19/2015 that i must buy two computers to have it operate on both operating systems. Adobe will not support apple's Boot CAMP allowing both operating systems.
    i love the apple product and love the ADOBE Photoshop CC, but it simply does now work with an apple keyboard and a WiN operating system. .[email protected]  Adobe Creative Cloud

    In Thehatters defence, this was initially posted in the MacbookPro forum and then moved to Boot Camp,
    If you have any joy solving your trackpad device driver issue, feel free to post here (there might be a similar fix for my  wireless adapter device)
    Thanks

  • Dg4odbc to MySQL update errors: "does not support IS NULL in this context"

    I am having a problem with 'where x is null' clauses in update statements to MySQL from 11g, using dg4odbc. Updates using the clause 'where x is null' return errors like this:
    ORA-02070: database PLAZAHOST does not support IS NULL in this context
    The rejected queries never get to mysql. Furthermore, I noticed that select statements with 'where x is null' show up in the mysql query log with the where clause stripped out, although correct results are returned to SQLPlus. It looks as though 'where x is null' is stripped off by dg4odbc, which subsequently applies a secondary filter to the results received from MySQL.
    Note, both statements above work properly when issued from the MySQL client.
    Has anybody seen this? It's a big problem for me, but I can't find any references to other people having the same problem, so I assume I've got something misconfigured -- but I don't know what.
    I'm using MySQL ODBC 5.1 Driver, MySQL 5.1 Community Edition, and Oracle 11g R1 all running on a 32-bit Windows server.
    Thank you -- rick
    =============
    here's a spool of a sample oracle session:
    SQL> col descr1 for a40
    SQL> select * from t1@plazahost;
    id1 descr1
    1 hello
    2
    SQL> descr t1@plazahost
    Name Null? Type
    id1 NUMBER(10)
    descr1 VARCHAR2(255)
    SQL> select * from t1@plazahost where "descr1" is null;
    id1 descr1
    2
    SQL> update t1@plazahost set "descr1"='updated' where "descr1" is null;
    update t1@plazahost set "descr1"='updated' where "descr1" is null
    ERROR at line 1:
    ORA-02070: database PLAZAHOST does not support IS NULL in this context
    SQL> spool off
    =============
    here's the mysql query log snip for the oracle session:
    100804 10:24:20 1637 Connect     moms_oracle@MOMS_HOST on moms
              1637 Query     SET NAMES utf8
              1637 Query     SET character_set_results = NULL
              1637 Query     SET SQL_AUTO_IS_NULL = 0
              1637 Query     set autocommit=0
              1637 Query     select database()
              1637 Query     COMMIT
              1637 Query     SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED
              1637 Query     SHOW TABLE STATUS FROM `moms` LIKE 'T1'
              1637 Query     SHOW COLUMNS FROM `moms`.`t1`
              1637 Query     SELECT `id1`,`descr1` FROM `moms`.`t1` LIMIT 0
              1637 Query     SHOW KEYS FROM `moms`.`T1`
              1637 Query     SHOW TABLE STATUS FROM `moms` LIKE 'T1'
              1637 Query     SHOW COLUMNS FROM `moms`.`t1`
              1637 Query     SELECT `id1`,`descr1` FROM `moms`.`t1` LIMIT 0
              1637 Query     SELECT A1.`id1`,A1.`descr1` FROM `T1` A1
              1637 Query     SELECT `id1`,`descr1` FROM `T1`
    100804 10:24:28 1637 Query     COMMIT
              1637 Quit     
    =============
    here's the Oracle HS trace file for the same oracle session:
    Oracle Corporation --- WEDNESDAY AUG 04 2010 10:24:19.608
    Heterogeneous Agent Release
    11.1.0.7.0
    Oracle Corporation --- WEDNESDAY AUG 04 2010 10:24:19.608
    Version 11.1.0.7.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "DEBUG"
    Entered hgosdip
    setting HS_OPEN_CURSORS to default of 50
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of "HS_TRANSACTION_LOG"
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "UCS2"
    setting HS_FDS_TIMESTAMP_AS_DATE to default of "TRUE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    setting HS_FDS_FETCH_ROWS to default of "100"
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_CHARACTER_SEMANTICS to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    setting HS_FDS_SUPPORT_STATISTICS to default of "TRUE"
    Parameter HS_FDS_QUOTE_IDENTIFIER is not set
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStatistics"
    Exiting hgosdip, rc=0
    ORACLE_SID is "plazahost"
    Product-Info:
    Port Rls/Upd:7/0 PrdStat:0
    Agent:Oracle Database Gateway for ODBC
    Facility:hsa
    Class:ODBC, ClassVsn:11.1.0.7.0_0006, Instance:plazahost
    Exiting hgogprd, rc=0
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=178
    HOCXU_DRV_NCHAR=1000
    HOCXU_DB_CSET=178
    HOCXU_SEM_VER=110000
    Entered hgolofn at 2010/08/04-10:24:19
    Exiting hgolofn, rc=0 at 2010/08/04-10:24:20
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "100"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    Exiting hgoinit, rc=0 at 2010/08/04-10:24:20
    Entered hgolgon at 2010/08/04-10:24:20
    reco:0, name:moms_oracle, tflag:0
    Entered hgosuec at 2010/08/04-10:24:20
    Exiting hgosuec, rc=0 at 2010/08/04-10:24:20
    HOSGIP for "HS_FDS_RECOVERY_ACCOUNT" returned "RECOVER"
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returned ""HS_TRANSACTION_LOG""
    HOSGIP for "HS_FDS_TIMESTAMP_AS_DATE" returned "TRUE"
    HOSGIP for "HS_FDS_CHARACTER_SEMANTICS" returned "FALSE"
    HOSGIP for "HS_FDS_MAP_NCHAR" returned "TRUE"
    HOSGIP for "HS_FDS_RESULT_SET_SUPPORT" returned "FALSE"
    HOSGIP for "HS_FDS_PROC_IS_FUNC" returned "FALSE"
    HOSGIP for "HS_FDS_REPORT_REAL_AS_DOUBLE" returned "FALSE"
    using moms_oracle as default value for "HS_FDS_DEFAULT_OWNER"
    HOSGIP for "HS_SQL_HANDLE_STMT_REUSE" returned "FALSE"
    Entered hgocont at 2010/08/04-10:24:20
    HS_FDS_CONNECT_INFO = "momsPlazaHost"
    RC=-1 from HOSGIP for "HS_FDS_CONNECT_STRING"
    Entered hgogenconstr at 2010/08/04-10:24:20
    dsn:momsPlazaHost, name:moms_oracle
    optn:
    ##>Connect Parameters (len=43)<##
    ## DSN=momsPlazaHost;
    #! UID=moms_oracle;
    #! PWD=*
    Exiting hgogenconstr, rc=0 at 2010/08/04-10:24:20
    DriverName:myodbc5.dll, DriverVer:05.01.0005
    DBMS Name:MySQL, DBMS Version:5.1.35-community-log
    Exiting hgocont, rc=0 at 2010/08/04-10:24:20
    SQLGetInfo returns Y for SQL_CATALOG_NAME
    SQLGetInfo returns 64 for SQL_MAX_CATALOG_NAME_LEN
    Exiting hgolgon, rc=0 at 2010/08/04-10:24:20
    Entered hgoulcp at 2010/08/04-10:24:20
    Entered hgowlst at 2010/08/04-10:24:20
    Exiting hgowlst, rc=0 at 2010/08/04-10:24:20
    SQLGetInfo returns ` for SQL_IDENTIFIER_QUOTE_CHAR
    SQLGetInfo returns Y for SQL_COLUMN_ALIAS
    2 instance capabilities will be uploaded
    capno:1991, context:0x0001ffff, add-info: 0
    capno:1992, context:0x0001ffff, add-info: 1, translation:"`"
    Exiting hgoulcp, rc=0 at 2010/08/04-10:24:20
    Entered hgouldt at 2010/08/04-10:24:20
    0 instance DD translations were uploaded
    Exiting hgouldt, rc=0 at 2010/08/04-10:24:20
    Entered hgobegn at 2010/08/04-10:24:20
    tflag:0 , initial:1
    hoi:0x12f03c, ttid (len 26) is ...
    00: 4D4F4D53 44422E38 62393537 3032392E [MOMSDB.8b957029.]
    10: 322E3130 2E333131 3531 [2.10.31151]
    tbid (len 23) is ...
    00: 4D4F4D53 44425B32 2E31302E 33313135 [MOMSDB[2.10.3115]
    10: 315D5B31 2E345D [1][1.4]]
    TXN Capable:3, Isolation Option:0xf
    Exiting hgobegn, rc=0 at 2010/08/04-10:24:20
    Entered hgodtab at 2010/08/04-10:24:20
    count:1
    table: T1
    Entered hgopcda at 2010/08/04-10:24:20
    Column:1(id1): dtype:4 (INTEGER), prc/scl:10/0, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2010/08/04-10:24:20
    Entered hgopcda at 2010/08/04-10:24:20
    Column:2(descr1): dtype:12 (VARCHAR), prc/scl:255/0, nullbl:1, octet:255, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2010/08/04-10:24:20
    The hoada for table T1 follows...
    hgodtab, line 651: Printing hoada @ 02A32DDC
    MAX:2, ACTUAL:2, BRC:1, WHT=6 (TABLE_DESCRIBE)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    4 INTEGER Y 4 4 0/ 0 0 0 0 id1
    12 VARCHAR Y 255 255 0/ 0 0 0 0 descr1
    Exiting hgodtab, rc=0 at 2010/08/04-10:24:20
    Entered hgodafr, cursor id 0 at 2010/08/04-10:24:20
    Exiting hgodafr, rc=0 at 2010/08/04-10:24:20
    Entered hgotcis at 2010/08/04-10:24:20
    Calling SQLStatistics for T1
    Calling SQLColumns for moms_oracle.T1
    Column "id1": dtype=4, colsize=10, decdig=0, char_octet_length=0, cumulative avg row len=4
    Column "descr1": dtype=12, colsize=255, decdig=0, char_octet_length=255, cumulative avg row len=195
    Exiting hgotcis, rc=0 at 2010/08/04-10:24:20
    Entered hgopars, cursor id 1 at 2010/08/04-10:24:20
    type:0
    SQL text from hgopars, id=1, len=40 ...
    00: 53454C45 43542041 312E6069 6431602C [SELECT A1.`id1`,]
    10: 41312E60 64657363 72316020 46524F4D [A1.`descr1` FROM]
    20: 20605431 60204131 [ `T1` A1]
    Exiting hgopars, rc=0 at 2010/08/04-10:24:20
    Entered hgoopen, cursor id 1 at 2010/08/04-10:24:20
    hgoopen, line 83: NO hoada to print
    Exiting hgoopen, rc=0 at 2010/08/04-10:24:20
    Entered hgodscr, cursor id 1 at 2010/08/04-10:24:20
    Entered hgopcda at 2010/08/04-10:24:20
    Column:1(id1): dtype:4 (INTEGER), prc/scl:10/0, nullbl:1, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2010/08/04-10:24:20
    Entered hgopcda at 2010/08/04-10:24:20
    Column:2(descr1): dtype:12 (VARCHAR), prc/scl:255/0, nullbl:1, octet:256, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2010/08/04-10:24:20
    hgodscr, line 506: Printing hoada @ 02A32DDC
    MAX:2, ACTUAL:2, BRC:100, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    4 INTEGER Y 4 4 0/ 0 0 0 0 id1
    12 VARCHAR Y 256 256 0/ 0 0 0 0 descr1
    Exiting hgodscr, rc=0 at 2010/08/04-10:24:21
    Entered hgoftch, cursor id 1 at 2010/08/04-10:24:21
    hgoftch, line 117: Printing hoada @ 02A32DDC
    MAX:2, ACTUAL:2, BRC:100, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    4 INTEGER Y 4 4 0/ 0 0 0 0 id1
    12 VARCHAR Y 256 256 0/ 0 0 0 0 descr1
    SQLBindCol: column 1, cdatatype: -16, bflsz: 4
    SQLBindCol: column 2, cdatatype: 1, bflsz: 257
    2 rows fetched
    Exiting hgoftch, rc=0 at 2010/08/04-10:24:21
    Entered hgoftch, cursor id 1 at 2010/08/04-10:24:21
    hgoftch, line 117: Printing hoada @ 02A32DDC
    MAX:2, ACTUAL:2, BRC:2, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    4 INTEGER Y 4 4 0/ 0 0 0 0 id1
    12 VARCHAR Y 5 256 0/ 0 0 0 0 descr1
    0 rows fetched
    Exiting hgoftch, rc=1403 at 2010/08/04-10:24:21
    Entered hgoclse, cursor id 1 at 2010/08/04-10:24:23
    Exiting hgoclse, rc=0 at 2010/08/04-10:24:23
    Entered hgodafr, cursor id 1 at 2010/08/04-10:24:23
    Exiting hgodafr, rc=0 at 2010/08/04-10:24:23
    Entered hgopars, cursor id 1 at 2010/08/04-10:24:23
    type:0
    SQL text from hgopars, id=1, len=31 ...
    00: 53454C45 43542060 69643160 2C606465 [SELECT `id1`,`de]
    10: 73637231 60204652 4F4D2060 543160 [scr1` FROM `T1`]
    Exiting hgopars, rc=0 at 2010/08/04-10:24:23
    Entered hgoopen, cursor id 1 at 2010/08/04-10:24:23
    hgoopen, line 83: NO hoada to print
    Exiting hgoopen, rc=0 at 2010/08/04-10:24:23
    Entered hgodscr, cursor id 1 at 2010/08/04-10:24:23
    Entered hgopcda at 2010/08/04-10:24:23
    Column:1(id1): dtype:4 (INTEGER), prc/scl:10/0, nullbl:1, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2010/08/04-10:24:23
    Entered hgopcda at 2010/08/04-10:24:23
    Column:2(descr1): dtype:12 (VARCHAR), prc/scl:255/0, nullbl:1, octet:256, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2010/08/04-10:24:23
    hgodscr, line 506: Printing hoada @ 02A32DDC
    MAX:2, ACTUAL:2, BRC:100, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    4 INTEGER Y 4 4 0/ 0 0 0 0 id1
    12 VARCHAR Y 256 256 0/ 0 0 0 0 descr1
    Exiting hgodscr, rc=0 at 2010/08/04-10:24:24
    Entered hgoftch, cursor id 1 at 2010/08/04-10:24:24
    hgoftch, line 117: Printing hoada @ 02A32DDC
    MAX:2, ACTUAL:2, BRC:100, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    4 INTEGER Y 4 4 0/ 0 0 0 0 id1
    12 VARCHAR Y 256 256 0/ 0 0 0 0 descr1
    SQLBindCol: column 1, cdatatype: -16, bflsz: 4
    SQLBindCol: column 2, cdatatype: 1, bflsz: 257
    2 rows fetched
    Exiting hgoftch, rc=0 at 2010/08/04-10:24:24
    Entered hgoftch, cursor id 1 at 2010/08/04-10:24:24
    hgoftch, line 117: Printing hoada @ 02A32DDC
    MAX:2, ACTUAL:2, BRC:2, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    4 INTEGER Y 4 4 0/ 0 0 0 0 id1
    12 VARCHAR Y 5 256 0/ 0 0 0 0 descr1
    0 rows fetched
    Exiting hgoftch, rc=1403 at 2010/08/04-10:24:24
    Entered hgoclse, cursor id 1 at 2010/08/04-10:24:27
    Exiting hgoclse, rc=0 at 2010/08/04-10:24:27
    Entered hgodafr, cursor id 1 at 2010/08/04-10:24:27
    Exiting hgodafr, rc=0 at 2010/08/04-10:24:27
    Entered hgocomm at 2010/08/04-10:24:28
    keepinfo:0, tflag:1
    00: 4D4F4D53 44422E38 62393537 3032392E [MOMSDB.8b957029.]
    10: 322E3130 2E333131 3531 [2.10.31151]
    tbid (len 23) is ...
    00: 4D4F4D53 44425B32 2E31302E 33313135 [MOMSDB[2.10.3115]
    10: 315D5B31 2E345D [1][1.4]]
    cmt(0):
    Entered hgocpctx at 2010/08/04-10:24:28
    Exiting hgocpctx, rc=0 at 2010/08/04-10:24:28
    Exiting hgocomm, rc=0 at 2010/08/04-10:24:28
    Entered hgolgof at 2010/08/04-10:24:28
    tflag:1
    Exiting hgolgof, rc=0 at 2010/08/04-10:24:28
    Entered hgoexit at 2010/08/04-10:24:28
    Exiting hgoexit, rc=0 at 2010/08/04-10:24:28

    is null statement is post processed. This means in case of a select ALL records from the remote database are fetched into the Oracle database and the is null statement is then processed locally in the Oracle db.
    So thze select will work as it is handled internally in the Oracle database. This also means as But "is null" isn't sent to the foreign MySQL db the update clause will fail with ORA-02070: database PLAZAHOST does not support IS NULL in this context
    You need to recode the statement or use passthrough statements.

  • "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

  • Ive been trying to update my macbook pro 8,2 firmware from the apple website but first the smc update gives me an error saying that my software does not support that update and belive me i checked and iam downloading the correct one

    so basically i was wanting to update my smc firmware and the EFI Boot ROM version but for the EFI Boot Rom when i click on it says page no found and for the smc firmware, when i do download it says that the my software does not support it, even though it is completely compatible, i checked the system requirements given by the page.
    iam trying to do this because i have issues with the chargin, it keeps giving me a "not charging" messege.
    Help please...

    SadisticIron wrote:
    i just baught my first iphone and it is a jalbroken
    Buzz! Thank you for playing!
    Discussing jailbroken devices is forbidden here by the Terms of Service.
    You can not get help here.

  • 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

  • Using time warner road runner. when I try to open up safari to home page I get error message that this version does not support the "community toolbar" can't proceed until closing the error message. sick of seeing it

    using time warner road runner. when I try to open up safari to home page I get error message that this version does not support the "community toolbar" can't proceed until closing the error message. sick of seeing it

    That toolbar/ct plugin seems to cause problems for all who install it!
    Close Safari, then locate and delete the following files and it should be gone:
    /Library/Application Support/Conduit
    /Library/InputManagers/CTLoader
    /Library/Receipts/ctloader.pkg
    /Library/Receipts/<Toolbar name>.pkg
    /Library/Application Support/SIMBL/Plugins/CT2285220.bundle
    /Users/<User name>/Library/Application Support/Conduit
    where / is the root library on your Hard Disk.
    If you are running Snow Leopard you should also look here:
    Library/launchAgents/com.conduit.loader.agent.plist
    Library/Application support/conduit plugins
    Also, as mentioned by Gilli2000:
    Library/Receipts - If you read it, it has information in it at the bottom referring extensively to "CT" and "community toolbar".
    Maybe it is harmless, but trash those items anyway!
    Note: Safari does not support any third-party toolbars except those supplied as an extension to Safari via the Extension Gallery.

  • I run a studio in Atlanta.  I am doing an upgrade to Protools 11.  Avid does not support Yosemite.  Mavericks is no where to be found on App store.  Had to purchase Mountain Lion.  I am losing money waiting on Apple to "ship" / email me a activation

    I run a studio here in Atlanta.  YEster day morning I called an Apple store to see if I could buy a copy of Mavericks.  They forwarded me to Apple Care.  Apple Care tech and myself could not find Mavericks anywhere on the app store.  Avid does not support Yosemiteam yet, so I had no other choice but to purchase Mountain Lion.  It has been over 24 hours waI ting on Apple to "ship" / email me a code to download from the app store.  I read a lot of horror stories from when they rolled out Mountain Lion in 2012 about it taking 72 hours to receive the codes.  I hope that maybe it doesn't take that l9ng this time because I am losing money by the minute.  Microsoft would have had a code to me in minutes.  This is just crazy.  I have used Apple products for years, but this is very disappointing.  Anyone else ordered Mountain Lion recently?  How long dI'd it take Apple to "ship" you your code via email?  Thanks

    From what I've read on these forums over the past few months, it hasn't gotten any better. An electronic order from any company shouldn't take more than 12 hours for a system to respond to, but people have been waiting up to a week for their redemption code email to arrive. It makes no sense to me why it would take that long.

  • " plug-in name does not support the highest level of security for Safari plug-ins" appear for some plugins in Safari Security "Manage Website Settings"?

    Hi,
    Wondering why "<plug-in name> does not support the highest level of security for Safari plug-ins" appear for some plugins in Safari > Security > "Manage Website Settings"?
    Have been trying to get to the root cause of the problem but did not find much on this. I am trying to figure out what can get the warning to go away completely than using the Allow/Always Allow options for the plug-in
    Thanks,
    Shyam

    Hi Linc,
    Thank you for your response. Here is the screenshot of the warning that I am talking about.
    Here is what I do:
    1. Launch Safari and open its Preferences. I have Safari 7.1 installed on my machine.
    2. Click Security Tab and click Manage WebSite Settings
    3. A window opens showing me all the Plug-ins that I have (listed on the left hand side).
    4. One of them is the Adobe Reader plug-in. When I click Adobe Reader, the following details about the plug-in show up on the right
    I was referring to the highlighted section that warns me about this plug-in not using the highest level of security for Safari Plug-ins.
    Note: I do not see this for all my plug-ins (QuickTime, Adobe Flash Player don't give me this warning) which tells me that there is a way to make the warning go away.
    Thanks again,
    Shyam

  • The Organizer does not support the color space in the file

    I just purchased and installed PSE 8 as an upgrade to PSE 6.  My catalog correctly shows all of my existing images.  However, when I try to import photos into the Organizer, I get a message that nothing was imported.  The reason given is that "The Organizer does not support the color space in the file."  This happens with photos taken on my iPhone as well as those from my Canon PowerShot A1100 IS.  Any suggestions?
    Here is my system information:
    Elements Organizer 8.0.0.0
    Core Version: 8.0 (20090905.r.605812)
    Language Version: 8.0 (20090905.r.605812)
    Current Catalog:
    Catalog Name: My Catalog
    Catalog Location: C:/Documents and Settings/All Users/Application Data/Adobe/Elements Organizer/Catalogs/My Catalog
    Catalog Size: 83.9MB
    Catalog Cache Size: 459.8MB
    System:
    Operating System Name: XP
    Operating System Version: 5.1 Service Pack 3
    System Architecture: AMD CPU Family:15 Model:11 Stepping:1 with MMX, SSE Integer, SSE FP
    Built-in Memory: 2GB
    Free Memory: 829MB
    Important Drivers / Plug-ins / Libraries:
    Microsoft DirectX Version: 9.0
    Apple QuickTime Version: 7.65
    Adobe Reader Version: 9.2
    Adobe Acrobat Version: Not installed
    CD and DVD drives:
    J: (SONY DVD BUS: 3 ID: 3 Firmware: RW)

    It turns out that this problem went away after the program crashed.  Everything seems to be working well now.

  • Xdb_installation_trigger does not support object creation of type SNAPSHOT

    hi everyone, i'm using Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit on solaris sparc 5.10
    we like to send an email through SSL, and after searching here and there I found out that oracle DB 11g able to go throught the SSL.
    since upgrade our DB to 11g would not be an option, so i tried to export XDB of 11g and import it into XDB 10gR2 schema, it was a mess...
    then i just reinstall XDB using catnoqm.sql & catqm.sql
    and now one of our programmer cant run some script like above
    CREATE MATERIALIZED VIEW FIFSYS_MKT_SCHEME_MV_COY
    TABLESPACE MARKETING_TABLES
    PCTUSED    40
    PCTFREE    10
    INITRANS   2
    MAXTRANS   255
    STORAGE    (
    INITIAL          64K
    MINEXTENTS       1
    MAXEXTENTS       UNLIMITED
    PCTINCREASE      0
    FREELISTS        1
    FREELIST GROUPS  1
    BUFFER_POOL      DEFAULT
    +)+
    NOCACHE
    LOGGING
    NOCOMPRESS
    NOPARALLEL
    BUILD IMMEDIATE
    REFRESH FORCE ON DEMAND
    WITH PRIMARY KEY
    AS
    +/* Formatted on 9/23/2010 1:07:42 PM (QP5 v5.114.809.3010) */+
    SELECT   coy_id,
    appl_branch_id,
    appl_object_code,
    product_type,
    ppdcf_paid_date,
    SUM (scheme_adm) scheme_adm,
    SUM (appl_unit) appl_unit,
    SYSDATE mkt_sysdate
    FROM   (SELECT   NVL (a.coy_id, '01') coy_id,
    a.branch_id appl_branch_id,
    DECODE (a.buss_unit, 'NMC', '2101', 'UMC', '2102', '2352')
    appl_object_code,
    a.platform product_type,
    TRUNC (c.contract_active_date) ppdcf_paid_date,
    NVL (s.ms_amt, 0) scheme_adm,
    NVL (o.total_item, 0) appl_unit
    FROM   ordmgmt.om_trn_appl_ms_lvl_object s,
    ordmgmt.om_trn_appl_hdr a,
    acctmgmt.ar_trn_sum_contracts c,
    +( SELECT appl_no, COUNT ( * ) total_item+
    FROM   ordmgmt.om_trn_appl_object
    GROUP BY   appl_no) o
    WHERE       s.appl_no = a.appl_no
    AND a.appl_no = o.appl_no
    AND s.ms_code IN ('MS03', 'MS14')
    AND c.appl_no = a.appl_no
    AND c.contract_no = a.contract_no
    +/*AND c.office_code = a.branch_id*/+
    AND NVL (a.coy_id, '01') = NVL (c.coy_id, '01'))
    GROUP BY   coy_id,
    appl_branch_id,
    appl_object_code,
    product_type,
    ppdcf_paid_date;
    COMMENT ON MATERIALIZED VIEW FIFSYS_MKT_SCHEME_MV_COY IS 'snapshot table for snapshot MARKETING.FIFSYS_MKT_SCHEME_MV_COY';
    and this error shown:
    ORA-00604 error occurred at recursive SQL level 1
    ORA-20000 Trigger xdb_installation_trigger does not support object creation of type SNAPSHOT
    ORA-06512 at line 32
    maybe some of you know how to solve this problem??
    and, this in the script of the xdb_installation_trigger
    DROP TRIGGER SYS.XDB_INSTALLATION_TRIGGER;
    CREATE OR REPLACE TRIGGER SYS.xdb_installation_trigger
    BEFORE
    CREATE ON DATABASE
    DECLARE
    sql_text varchar2(200);
    val number;
    BEGIN
    if (dictionary_obj_owner != 'XDB') then
    if (dictionary_obj_type = 'FUNCTION' or
    dictionary_obj_type = 'INDEX' or
    dictionary_obj_type = 'PACKAGE' or
    dictionary_obj_type = 'PACKAGE BODY' or
    dictionary_obj_type = 'PROCEDURE' or
    dictionary_obj_type = 'SYNONYM' or
    dictionary_obj_type = 'TABLE' or
    dictionary_obj_type = 'TABLESPACE' or
    dictionary_obj_type = 'TYPE' or
    dictionary_obj_type = 'VIEW' or
    dictionary_obj_type = 'USER'
    +)then+
    if (dictionary_obj_type  != 'PACKAGE BODY'
    +) then+
    sql_text := 'select count(*) from ALL_OBJECTS where owner = :1 and object_name = :2 and object_type = :3';
    execute immediate sql_text into val using dictionary_obj_owner, dictionary_obj_name, dictionary_obj_type;
    if (val = 0) then
    sql_text := 'select count(*) from dropped_xdb_instll_tab where owner = :1 and object_name = :2 and object_type = :3';
    execute immediate sql_text into val using dictionary_obj_owner, dictionary_obj_name, dictionary_obj_type;
    if (val = 0) then
    insert into xdb_installation_tab values
    +(dictionary_obj_owner, dictionary_obj_name, dictionary_obj_type);+
    end if;
    end if;
    end if;
    else
    raise_application_error(-20000, 'Trigger xdb_installation_trigger does not support object creation of type '||dictionary_obj_type);
    end if;
    end if;
    end;
    +/+
    /********************************************************************************/

    i'm so careless, after checking a fresh installation of the same version DB, i dont found xdb_installation_trigger.
    so just by simply remove that trigger & everything works just fine. :)

  • JDeveloper 11.1.2.3, ADF Faces: declarative component does not support af:clientListener?

    I am trying to create a declarative component with the following code:
    <?xml version='1.0' encoding='UTF-8'?>
    <af:componentDef xmlns:af="http://xmlns.oracle.com/adf/faces/rich" var="attrs" componentVar="comp" definition="private"
                     xmlns:afc="http://xmlns.oracle.com/adf/faces/rich/component">
        <af:xmlContent>
            <afc:component>
                <afc:display-name>DoubleClickTableDialogClientServerListener</afc:display-name>
                <afc:component-extension>
                    <afc:component-tag-namespace>org.mskcc.crdb.common.declarativecomponent</afc:component-tag-namespace>
                    <afc:component-taglib-uri>http://www.mskcc.org</afc:component-taglib-uri>
                </afc:component-extension>
            </afc:component>
                <af:clientAttribute name="serverListenerType" value="TableDoubleClickEvent"/>
                <af:clientListener method="handleTableDoubleClick" type="dblClick"/>
                <af:serverListener type="TableDoubleClickEvent"
                                   method="#{EditAddDialogTemplateBean.handleTableDoubleClick}"/>
        </af:xmlContent>
    </af:componentDef>
    At runtime I recieve the following error:
    javax.faces.view.facelets.FaceletException: ADF_FACES-60023:Component: DoubleClickTableDialogClientServerListenerComponent[oracle.adf.view.rich.component.fragment.UIXInclude$ContextualFacesBeanWrapper@7170a7, id=dctdcsl1] does not support client listeners.
      at oracle.adfinternal.view.faces.facelets.rich.BaseClientListenerHandler.apply(BaseClientListenerHandler.java:53)
    This component was intended to be dropped off within an af:table component. I would like to hear suggestions on workarounds, one other way I thought about was to create a code template for the three tags, however, the con to this approach is each developer would need to configure this template within jdeveloper. Ideas are appreciated.
    Also a side question, how can I embed code properly with the new forum? [code] tag does not seem to work now.

    Wes, can't help with the real question, but can tell you how to format code
    Change to the advanced editor (top right over the editor field), then you get more options. The one you are looking for is behind the blue '>>'. Here you select the language you want to insert and you get nice code formatting and color.
    Timo

  • Hp the system recovery media does not support this computer, WIN7 GS72 Notebook

    HProduct: GS-B66US (17" I3 notebook)
    OS:             Win7
    Bios Rev:   F.47
    Error message: "hp the system recovery media does not support this computer.  You are not able to restore this system"
    Changes made to system:  Updated bios (I think).
    Getting error messages (at system boot, as windows start, and from the intel hard drive controller) warning me to backup data and hard drive my fail.
    I replaced the harddrive and inserted the first of my 4 recovery DVDs (created before I updated the bios).  After booting from the first recovery disk I get the following message
    "hp the system recovery media does not support this computer. You are not able to restore this system with the media"
    The computer still boots with the old hard drive (with drive failure imminent messages)  I do see support assistant offering another bios update but I did not install it with the hard drive problem
    PLEASE HELP
    TIA

    Hi,
    I think there could be two possible reason. wrong media or systemboard is changed.
    did you create any recovery media yourself or you ordered the recovery media from hp? also, was there any systemboard replacement done before?
    media created on some other computer (same model) may not work on your computer.
    you can order the media from hp.com here.
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c00810334
    also once systemboard is replaced you need to get the configuration settings done for BIOS(only HP can do it).
    hope it helps
    Regards,
    WW
    “I am an HP Employee“
    ***** Click the KUDOS star on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem***

Maybe you are looking for

  • Can't highlight, underline, strike through or select text in iOS 7 Adobe Reader

    I have enjoyed using Adobe Reader to proofread clients' documents, but since the last two iOS 7 updates I can't highlight, underline, strike through or select text in PDFs generated by the same source that previously presented no problems. The drawin

  • Creation it0009 with only IBAN value

    Hi Friends,      I tired to create IT009 subtype 2(travel expense) for France country by just giving the IBAN values. France is a SEPA Mandate country and we'd implemented the same in our project.      In the backend(R/3), I just gave the value for I

  • Still no address bar. There is just a speed dial box where the address bar should. Navagation has a check in it

    There is a check in the navigation box but there is still no address bar. The only thing that is where the address bar should be is speed dial icon. Above that is file, edit, history, etc, Below the speed dial icon there is most visited, getting star

  • IMovie 10 Upgrade - old movies can't be viewed

    When I upgraded to iMovie 10, my old movies could not import.  Now I have to go into Finder to open with iMovie 9.  Even then, I can only view the thumbnails and can't play the movie.  Anyone know how to fix?

  • No custom shape tool color option

    Hi, I'm using Adobe Photoshop CS5 and I'm trying to use the custom shape tool to make a black music note.  However when I make the music note, it has no color to it.  I cannot find a color option for the custom shape tool anywhere. Where is the optio