Unexpected output when using cursor

Hi guys,.

I have a put request as below;

WITH old_stream as (select el_nodes.name, parameter, the value of el_node_params
left to join el_nodes
el_nodes.nodeversionid = el_node_params.nodeversionid
left to join el_stream_versions
el_nodes.streamversionid = el_stream_versions.streamversionid
where
el_stream_versions. StreamId = 230 and el_stream_versions.streamversion = 48),
new_stream (select el_nodes.name, parameter value of el_node_params
left to join el_nodes
el_nodes.nodeversionid = el_node_params.nodeversionid
left to join el_stream_versions
el_nodes.streamversionid = el_stream_versions.streamversionid
where
el_stream_versions. StreamId = 230 and el_stream_versions.streamversion = 49)

Select name ParamName AS,
Count (src1) AS oldCounter,
Count (src2) AS newCounter,
parameter, the value of (select name, parameter, value, 1 AS src1, src2 AS TO_NUMBER (NULL) to old_stream
UNION ALL
Select the parameter name, value, TO_NUMBER (NULL) AS src1, src2 in new_stream 2 ACEs)
Group by name, parameter, value
Having count (src1) <>count (src2);




< < < < < < < < < RESULT

CH_PPV_PRODIS_RDC 1 0 OutputCounter B_0_2_1
CH_PPV_HORIZON_BLN 1 0 KenanCounter K_0_2_1
0 1 KenanCounter K_0_1_2 CH_PPV_HORIZON_BLN
0 1 OutputCounter B_0_1_2 CH_PPV_PRODIS_RDC


same request where I use the cursor as aid below;
-The TEST CASE for the procedure
-- 1. If the value of the parameter is changed. -Executed
-- 2. New value of the parameter is introduced. -Executed
-- 3. New node is introduced. -Still planned.

create or replace
procedure UPCSTREAM_DIFF_T1 (Streamid in NUMBER,
oldVersion in NUMBER,
newVersion in NUMBER) IS


NodeName varchar (2000);
NodeParameter varchar (2000);
number (10) has changed;
NodeValue varchar (2000);

MyCursor CURSOR is
WITH old_stream as (select el_nodes.name, parameter, the value of el_node_params
left to join el_nodes
el_nodes.nodeversionid = el_node_params.nodeversionid
left to join el_stream_versions
el_nodes.streamversionid = el_stream_versions.streamversionid
where
el_stream_versions. StreamId = StreamId and el_stream_versions.streamversion = oldVersion),
new_stream (select el_nodes.name, parameter value of el_node_params
left to join el_nodes
el_nodes.nodeversionid = el_node_params.nodeversionid
left to join el_stream_versions
el_nodes.streamversionid = el_stream_versions.streamversionid
where
el_stream_versions. StreamId = StreamId and newVersion = el_stream_versions.streamversion)

Select name ParamName AS,
Count (src1) AS oldCounter,
Count (src2) AS newCounter,
parameter, the value of (select name, parameter, value, 1 AS src1, src2 AS TO_NUMBER (NULL) to old_stream
UNION ALL
Select the parameter name, value, TO_NUMBER (NULL) AS src1, src2 in new_stream 2 ACEs)
Group by name, parameter, value
Having count (src1) <>count (src2);

heart mycursor % ROWTYPE;
CUR1 mycursor % ROWTYPE;

BEGIN
changed: = 0;
Open mycursor;
LOOP
dbms_output.put_line ('Loop during the recording' | mycursor % ROWCOUNT);
Fetch mycursor into news;
When the exit mycursor % NOTFOUND;
dbms_output.put_line (CUR. ParamName | » '|| cur.oldcounter |' '|| cur.newcounter |' '|| cur. Parameter |' '|| cur.value);

end loop;
Close mycursor;
END UPCSTREAM_DIFF_T1;




The output is very strange;
SET SERVEROUTPUT ON
call upcstream_diff_t1 (230,48,49);



Looping on record0
NL_DMS100_COLLECTOR 1 0 MoveSrcToDirectory/u01/app/d1elkpe/UPC_DEVELOPMENT/NL_DMS100 /.
Looping on record1
NL_DMS100_COLLECTOR 1 0 SourceDirectory/u01/app/d1elkpe/UPC_DEVELOPMENT/NL_DMS100/COLLECTOR/in
Looping on record2
CH_INET_DWH_DISTRIBUTOR 1 MaximumReconnectionInterval 0
Looping on record record3
CH_INET_CDR_FILE_COLLECTOR 1 0 Username
Looping on record4
CH_INET_METADATA_FILE_COLLECTOR 1 0 DC. TimeSlotsInMemory 6
Looping on record5
CH_INET_METADATA_FILE_COLLECTOR 1 0 TransferProtocol Local
Looping on record6
UPC_PE_PL_OUTPUT_LOADER_COLLECTOR 1 0 file ^ PL_OUTPUT_FILE. [0-9] {14}. [0-9] {6} $
Closure on record7
UPC_PE_NL_AUDIT_COUNTER_ENCODER 1 CreateEmptyOutputFileOnFlush 0



As you can see the output of the sql query returns only the rows with column is related to the "CH" and once the io is used in PLSQL, it shows a completely different output.
Can someone help me what's wrong I do?

Your code listed an empty line integrated into SQL code in both places. Some SQL tools will ignore blank lines while others will treat them as indicators of end indicating that only part of the SQL will be executed. What tool do you use to test the query?

Try to remove the empty row in SQL and PL/SQL and try again

Tags: Database

Similar Questions

  • Problem when using cursor

    Hello

    I am using the qml item cascade of cursor.

    I realized, when the user drag the slider if the signal onValueChanged.

    He also issue onValueChanged signal if I set the value manually.

    Is it possible to emit a signal onValueChanged does not then change value manually?

    Thanks and greetings

    Hello! Try

    cursor-> blockSignals (true);

    .. .modify the value...

    cursor-> blockSignals (false);

    or unplug and reconnect the signal.

  • Rename "Column" of output when using XMLCOLATTVAL

    Hello

    Can someone please help me to replace the word "Column" in the output to something else when you use XMLCOLATTVAL. For example, in the output for the following statement, I would like to see 'Field' instead of 'column '.

    I'm on 10g R2.

    SELECT XMLELEMENT ("Emp",
    XMLCOLATTVAL (e.employee_id, select, e.salary)) 'item Emp.
    E EMPLOYEES
    WHERE employee_id = 204;

    Emp element
    --------------------------------------------------------------------
    < Emp >
    < column name = "Employe_id" > 204 < / column >
    < column name = "Name" > Baer < / column >
    < column name = "SALARY" > 10000 < / column >
    < / Emp >


    Any help is greatly appreciated.

    Thank you
    Suresh

    Hello

    No 'simple' solution, but you can try one of them, according to your needs:

    (1) apply an XSL transformation to the output

    SELECT XMLElement(
     "Emp", XMLColattval(e.employee_id, e.last_name, e.salary)
    )
    .transform(
     xmltype(
    '
    
    
      
    
    
      
        
      
    
    
      
        
      
    
    '
     )
    )
    FROM hr.employees e
    WHERE employee_id = 204;
    

    (2) "XQuerying" (as an alternative to XSLT)

    SELECT XMLElement("Emp",
      XMLQuery(
       'for $i in /*
        return element Field {
          attribute name {$i/name()},
          $i/text()
        }'
       passing XMLForest(e.employee_id, e.last_name, e.salary)
       returning content
      )
    )
    FROM hr.employees e
    WHERE employee_id = 204;
    

    (3) or, of course, generating the correct structure in the first place

    SELECT XMLElement(
     "Emp",
     XMLElement("Field", xmlattributes('EMPLOYEE_ID' as "name"), e.employee_id),
     XMLElement("Field", xmlattributes('LAST_NAME' as "name"), e.last_name),
     XMLElement("Field", xmlattributes('SALARY' as "name"), e.salary)
    )
    FROM hr.employees e
    WHERE employee_id = 204;
    
  • Satellite L505 - 10K - unexpected error when using recovery disc creator

    Toshiba Satellite L505 - 10 k

    Can't do any recovery disk when I open the toshiba recovery media creator, it says: an unexpected error has occurred. Close the program and then restart it (error code: 0D00F6-49-00000015) and then I click ok and then, it is once again and then I click ok and it is once again and I click ok and then the program comes and when I create the disc it comes to audit, but then it says: cannot read the following file. E:------Boot-fonts-chs_boot.ttf (error code: 02015-20-00000000).

    I really need help, I'm afraid something will happen to my computer, so is there someone who knows something about this kind of problem?

    Grateful for your help.

    Hi putte32,

    To be honest I never received this error before but it sounds like that recovery creator disc doesn t work properly... You should try a HDD recovery to restore the factory settings. Maybe you are able to create the recovery disk.

    Otherwise, I would contact an authorized service provider. If you can t create the recovery disk, the guy should be able to help you to complete this procedure.

  • How to stop the automatic zoom input / output when using my mouse?

    Whenever I try to do something that involves the use of the needle on my laptop the screen zooms in to the point where the text is too small for me to continue to work.  I use Ctrl-0 or select zoom from the menu and zoom out up to 100%.  This happens over and over again.  I can't do anything with my new computer - surf the web, check your emails, create/edit documents because I continually moved to a new resolution of the screen that is impossible to read.

    Your touchpad is probably a multitouch touchpad which is able to detect more than one finger at a time.  In fact, most of the new laptops that have these days.  If it is too sensitive, it can detect presses when you're not even touch her.  Sometimes my palms are considered to be the two fingers and enable this feature "pinch to zoom".

    Unfortunately, this is not a Windows control.  The hardware manufacturer who built the touchpads provides the software that runs it (the pilot).  Some creators of touchpad (as the Synaptics company) have a really robust software that includes a control panel to adapt it in many ways, including this sensitivity and even a few features such as a Palm check that tries to detect when it is not an intentional touch.

    You'll have to talk to anyone to build your PC or refer to the manual well because each business is different.  If you can display your PC name and model number here, I try to look as well for you.

  • No output when using CFTHREAD for parallel queries

    Hello

    I want to run some queries at the same time using cfthread.

    But when I attach the wires and try to generate the query results I get following error:

    "The value of the query of the attribute, which is currently q_emp, is not valid."

    Here is my sample code:

    < cfthread name = "t1" >

    < cfquery name = "q_emp" datasource = 'test' >

    SELECT EmpNo, ename

    WCP

    < / cfquery >

    < / cfthread >

    < cfthread name = "t2" >

    < cfquery name = "q_dept" datasource = 'test' >

    SELECT DeptNo, name

    OF THE Department

    < / cfquery >

    < / cfthread >

    < cfthread action = 'join' name = "t1, t2" / >

    < cfoutput >

    < cfloop query = "q_emp" >

    #empno # #ename # < here >

    < / cfloop >

    < cfloop query = "q_dept" >

    #deptno # #name # < here >

    < / cfloop >

    < / cfoutput >

    What is the problem in my code?

    I use ColdFusion 9 Standard Edition and Oracle 11 g.

    cordially Claudia

    I suspect the variables q_emp and q_dept are available in their scope respective local thread . In other words, within tags respective cfthread in which they are defined.

    I would like to redefine q_emp and q_dept within the scope of the thread, in order to extend their context to the entire page, as follows:

    SELECT EmpNo, ename

    WCP

    CFThread name = "t2" >

    SELECT DeptNo, name

    OF THE Department

    CFThread action = 'join' name = "t1, t2" / >

    cfoutput >

    #empno # #ename #.

    CFLOOP query = "t2.q_dept" > "

    #deptno # #name #.

  • Error when using cursor

    I use a cursor as:

    CUR cursor is
    Select ("wwwwwwwwwwwwww... ") twice;


    The values in the SQL statement has been greater than 4000 charecters length. So he was throwing an error like: string literal too long.


    Please suggest... How to handle this.

    Published by: user13044793 on February 8, 2011 02:45

    user13044793 wrote:
    I use a cursor as:

    CUR cursor is
    Select ("wwwwwwwwwwwwww... ") twice;

    Why do you use the DUAL table? It is a special system table that is very useful for the application code. Using it, is practically an exception.

    The values in the SQL statement has been greater than 4000 charecters length. So he was throwing an error like: string literal too long.
    Please suggest... How to handle this.

    Of course, it will fail because you can create strings in SQL Oracle which exceeds 4000 bytes. How to handle? Well, it depends on exactly what you're trying to do.

  • Where is the DBMS output window when using the PL/SQL Editor in v1.5.5?

    I find the output window of DBMS when using the SQL worksheet, but where is when I run a PL/SQL procedure in the PL/SQL Editor window?

    I'm used to using TOAD (and want to use SQL Developer, because it's much better behaved when executing procedures, among other problems, TOAD refuses to reduce to a minimum when it executes a pl/sql procedure) and it allows me to edit a pl/sql procedure, enable the DBMS output window, run the proc, and have the DBMS lines show up in the said output window.

    I can't find the same functionality in SQL Developer. I've seen a lot of posts (this forum and a Google search), but they all talk about the SQL worksheet. This is not what I want.

    Any help would be greatly appreciated.

    Thank you.

    Hello
    After running PL/SQL procedure, I saw all the important information in the running tab (called Running - log) including DBMS_OUTPUT.put_line lines.
    Petr

  • Error link database to MySQL when using variables

    Hi guys

    I currently have a database of hava link to MySQL. I can read, insert, delete and update without any problem when using literals. However when I try to perform the same actions using pl/sql variables, I get the following error:

    ORA-02055: distributed update operation failed. Rollback required
    ORA-02068: following a serious error of AAA1
    ORA-28511: interruption of the RPC connection to heterogeneous remote agent using SID = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) (HOST = ProdDB.btl)(PORT=1527) .net) (CONNECT_DATA = (SID = AAA1)))
    ORA-06512: at line 15 level

    You kindly give me some suggestions?


    PL/SQL code

    Declare

    MSISDN2 tank (8);
    IMSI2 number (28.0);
    ICC2 number (28.0);
    CNT number (28.0);

    Begin

    MSISDN2: = 610-0850';
    IMSI2: = 8950167090300132451;
    ICC2: = 702670161017765;


    Delete "SUBSCRIBERS"@AAA1 where "MSISDN" = MSISDN2; -'ICC' = ICC2 or 'IMSI' = IMSI2;

    End;


    -----------------------------------------------------------------------------------------------------------
    System information:

    Oracle Database 10.2.0.5.0 under Redhat Linux 64-bit

    Database portals Oracle ODBC 11.2.0.1.0 on the same machine as above

    UnixODBC - 3.2.1 compiled in 64-bit on the same machine so

    MySQL ODBC connector DriverVer:05.02.0002

    ------------------------------------------------------------------------------------------------------
    ODBC DSN

    ;
    ; ODBC.ini configuration for MYODBC and MYODBC 3.51 drivers
    ;

    [ODBC data sources]
    AAA1 = pilot 5.2.2 MyODBC DSN

    [AAA1]
    Driver = /usr/lib64/libmyodbc5w.so
    Description = driver MYODBC DSN 5.52
    SERVER = 10.50.18.89
    USER = tytancc2
    Password = xxxxxx
    Database = radiator
    OPTION = 3
    CHARSET = latin1
    Trace = yes
    Trace file = /tmp/unixodbc.sql.log
    Debug = 1
    Debugfile = /tmp/unixodbc.debug.log

    ---------------------------------------------------------------------------------------
    File hs
    # This is an example of initialization file of the agent that contains the HS settings
    # necessary for the database to ODBC gateway

    #
    # HS init parameters
    #
    HS_FDS_CONNECT_INFO = AAA1
    #HS_FDS_TRACE_LEVEL = 255
    HS_FDS_TRACE_LEVEL = DEBUG
    #HS_FDS_SHAREABLE_NAME = /usr/lib64/libmyodbc5w.so
    HS_FDS_SHAREABLE_NAME = /usr/lib64/libodbc.so.2
    HS_FDS_SQLLEN_INTERPRETATION = 32
    #HS_LANGUAGE = AMERICAN_AMERICA. AL32UTF8
    #HS_LANGUAGE = AMERICAN_AMERICA. WE8ISO8859P15
    #HS_LANGUAGE = AMERICAN_AMERICA. WE8ISO8859P1
    HS_LANGUAGE = AMERICAN_AMERICA. LATIN1
    HS_FDS_FETCH_ROWS = 1
    #HS_NLS_NCHAR = UCS2
    #HS_OPEN_CURSORS = 10


    #
    # ODBC specific environment variables
    #
    Set ODBCINI=/u01/oracle/.odbc.ini
    Set ODBCINSTINI=/etc/odbcinst.ini


    #
    # Required for the non-Oracle system environment variables
    #
    set LD_LIBRARY_PATH = / usr/lib64


    --------------------------------------------------------------------------------------------
    Trace file

    Oracle Corporation - 22:01:40.555 Friday, February 8, 2013


    Heterogeneous Agent release
    11.2.0.1.0




    Oracle Corporation - 22:01:40.549 Friday, February 8, 2013

    Version 11.2.0.1.0

    Hgogprd entries
    HOSGIP to 'HS_FDS_TRACE_LEVEL' returned 'DEBUG '.
    Hgosdip entries
    default assignment of 50 HS_OPEN_CURSORS
    setting HS_FDS_RECOVERY_ACCOUNT or 'RECOVER '.
    HS_FDS_RECOVERY_PWD layout to the default
    default HS_FDS_TRANSACTION_LOG of HS_TRANSACTION_LOG layout
    HS_IDLE_TIMEOUT layout to the default 0 value
    layout by default HS_FDS_TRANSACTION_ISOLATION of "READ_COMMITTED".
    layout by default «AL32UTF8» HS_NLS_NCHAR
    layout HS_FDS_TIMESTAMP_MAPPING default 'DATE '.
    layout HS_FDS_DATE_MAPPING default 'DATE '.
    layout HS_RPC_FETCH_REBLOCKING failure to 'ON '.
    HOSGIP returned the value of '1' for HS_FDS_FETCH_ROWS
    parameter HS_FDS_RESULTSET_SUPPORT default 'FALSE '.
    parameter HS_FDS_RSET_RETURN_ROWCOUNT default 'FALSE '.
    parameter HS_FDS_PROC_IS_FUNC default 'FALSE '.
    parameter HS_FDS_CHARACTER_SEMANTICS default 'FALSE '.
    parameter HS_FDS_MAP_NCHAR if there is no 'TRUE '.
    setting HS_NLS_DATE_FORMAT or 'YYYY-MM-DD HH24:MI:SS ".
    parameter HS_FDS_REPORT_REAL_AS_DOUBLE default 'FALSE '.
    HS_LONG_PIECE_TRANSFER_SIZE layout without "65536".
    parameter HS_SQL_HANDLE_STMT_REUSE default 'FALSE '.
    parameter HS_FDS_QUERY_DRIVER if there is no 'TRUE '.
    parameter HS_FDS_SUPPORT_STATISTICS default 'FALSE '.
    The HS_FDS_QUOTE_IDENTIFIER parameter is not defined
    setting in HS_KEEP_REMOTE_COLUMN_SIZE if 'OFF '.
    parameter HS_FDS_GRAPHIC_TO_MBCS default 'FALSE '.
    parameter HS_FDS_MBCS_TO_GRAPHIC default 'FALSE '.
    HOSGIP returned the value "32" for HS_FDS_SQLLEN_INTERPRETATION
    HS_CALL_NAME_ISP layout "gtw$: SQLTables; GTW$: SQLColumns. GTW$: SQLPrimaryKeys. GTW$: SQLForeignKeys. GTW$: SQLProcedures. GTW$: SQLStatistics; "gtw$: SQLGetInfo.
    parameter HS_FDS_DELAYED_OPEN if there is no 'TRUE '.
    HS_FDS_WORKAROUNDS layout by default "0".
    Release of hgosdip, rc = 0
    ORACLE_SID is "AAA1.
    Product information:
    Port RLS / Upd:1 / 0 PrdStat:0
    Agent: Oracle Database Gateway for ODBC
    : Installation
    Class: ODBC, ClassVsn:11.2.0.1.0_0008, Instance: AAA1
    Release of hgogprd, rc = 0
    Hgoinit entries
    HOCXU_COMP_CSET = 1
    HOCXU_DRV_CSET = 31
    HOCXU_DRV_NCHAR = 873
    HOCXU_DB_CSET = 31
    HOCXU_SEM_VER = 102000
    Entry hgolofn to 2013/02/08-22: 01:40
    HOSGIP to 'HS_FDS_SHAREABLE_NAME' returned ' / usr/lib64/libodbc.so.2 '.
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a08f61
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a090e5
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a09c18
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a0b6dc
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a17bc4
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a182e8
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a1bc40
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a1dad8
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a1e6dc
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a20bae
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a20bd0
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a22f44
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a276d4
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a27b90
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2a4a4
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2b574
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2b99c
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2e65c
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2ecd0
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a31db8
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a31ac0
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a0c47c
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a0e884
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a14943
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a1714a
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a19327
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a1d2ce
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a1f648
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a210c7
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a23990
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2414c
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a25d26
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a26cc0
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a288a8
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a28c67
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a29e88
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2c51e
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2ccfa
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2d5c0
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2de92
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a2f088
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a33fa4
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a315fe
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a36de2
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Entry hgolofns to 2013/02/08-22: 01:40
    symbol_peflctx = 0x31a380ec
    hoaerr:0
    Output hgolofns to 2013/02/08-22: 01:40
    Release of hgolofn, rc = 0 to 2013/02/08-22: 01:40
    HOSGIP to 'HS_OPEN_CURSORS' returned '50 '.
    HOSGIP to 'HS_FDS_FETCH_ROWS' returned '1 '.
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536".
    HOSGIP to 'HS_NLS_NUMERIC_CHARACTER' returned '. "
    HOSGIP to 'HS_KEEP_REMOTE_COLUMN_SIZE' returned 'OFF '.
    HOSGIP for "HS_FDS_DELAYED_OPEN" returns 'TRUE '.
    HOSGIP to 'HS_FDS_WORKAROUNDS' returned '0 '.
    HOSGIP to 'HS_FDS_MBCS_TO_GRAPHIC' returned 'FALSE '.
    HOSGIP to 'HS_FDS_GRAPHIC_TO_MBCS' returned 'FALSE '.
    treat_SQLLEN_as_compiled = 0
    Release of hgoinit, rc = 0 to 2013/02/08-22: 01:40
    Entry hgolgon to 2013/02/08-22: 01:40
    name: tytancc2, reco:0, tflag:0
    Entry hgosuec to 2013/02/08-22: 01:40
    Release of hgosuec, rc = 0 to 2013/02/08-22: 01:40
    HOSGIP to 'HS_FDS_RECOVERY_ACCOUNT' returned 'RECOVER '.
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returns "HS_TRANSACTION_LOG".
    HOSGIP to 'HS_FDS_TIMESTAMP_MAPPING' returned 'DATE '.
    HOSGIP to 'HS_FDS_DATE_MAPPING' returned 'DATE '.
    HOSGIP to 'HS_FDS_CHARACTER_SEMANTICS' returned 'FALSE '.
    HOSGIP for "HS_FDS_MAP_NCHAR" returns 'TRUE '.
    HOSGIP to 'HS_FDS_RESULTSET_SUPPORT' returned 'FALSE '.
    HOSGIP to 'HS_FDS_RSET_RETURN_ROWCOUNT' returned 'FALSE '.
    HOSGIP to 'HS_FDS_PROC_IS_FUNC' returned 'FALSE '.
    HOSGIP to 'HS_FDS_REPORT_REAL_AS_DOUBLE' returned 'FALSE '.
    using tytancc2 as the default value to "HS_FDS_DEFAULT_OWNER".
    HOSGIP to 'HS_SQL_HANDLE_STMT_REUSE' returned 'FALSE '.
    Entry hgocont to 2013/02/08-22: 01:40
    HS_FDS_CONNECT_INFO = "AAA1.
    RC =-1 of HOSGIP for 'HS_FDS_CONNECT_STRING '.
    Entry hgogenconstr to 2013/02/08-22: 01:40
    DSN:AAA1, name: tytancc2
    OPTN:
    Entry hgocip to 2013/02/08-22: 01:40
    DSN:AAA1
    Release of hgocip, rc = 0 to 2013/02/08-22: 01:40
    Release of hgogenconstr, rc = 0 to 2013/02/08-22: 01:40
    Entry hgolosf to 2013/02/08-22: 01:45
    Release of hgolosf, rc = 0 to 2013/02/08-22: 01:45
    DriverName:libmyodbc5w.so, DriverVer:05.02.0002
    Name of DBMS: MySQL, DBMS Version: 5.1.66 - community-newspaper
    Release of hgocont, rc = 0 to 2013/02/08-22: 01:45
    SQLGetInfo Returns Y for SQL_CATALOG_NAME
    SQLGetInfo returns 192 for SQL_MAX_CATALOG_NAME_LEN
    Release of hgolgon, rc = 0 to 2013/02/08-22: 01:45
    Entry hgoulcp to 2013/02/08-22: 01:45
    Entry hgowlst to 2013/02/08-22: 01:45
    Release of hgowlst, rc = 0 to 2013/02/08-22: 01:45
    SQLGetInfo returns 0x0 for SQL_OWNER_USAGE
    Able TXN: isolation 3, Option: 0xf
    SQLGetInfo returns 0 for SQL_MAX_SCHEMA_NAME_LEN
    SQLGetInfo returns 192 for SQL_MAX_TABLE_NAME_LEN
    SQLGetInfo returns 192 for SQL_MAX_PROCEDURE_NAME_LEN
    SQLGetInfo returns (0 x 60) for SQL_IDENTIFIER_QUOTE_CHAR
    SQLGetInfo Returns Y for SQL_COLUMN_ALIAS
    16 functions for instance will be uploaded
    context: 0x00000000, capno:1964, add info: 0
    context: 0x00000000, capno:1989, add info: 0
    context: 0x0001ffff, capno:1991, add info: 0
    «"" context: 0x0001ffff, capno:1992, info-add: 1, translation:»»»
    context: 0x00000000, capno:3042, add info: 0, translation: "42".
    context: 0x00000000, capno:3047, add info: 0, translation: "57."
    context: 0x00000000, capno:3049, add info: 0, translation: "59".
    context: 0x00000000, capno:3050, add info: 0, translation: "60".
    context: 0x00000000, capno:3066, add info: 0
    context: 0x00000000, capno:3067, add info: 0
    context: 0x00000000, capno:3068, add info: 0
    context: 0x00000000, capno:3069, add info: 0
    capno:3500, context: 0x00000001, add info: 91, translation: "42".
    capno:3501, context: 0x00000001, add info: 93, translation: "57."
    capno:3502, context: 0x00000001, add info: 107, translation: "59".
    capno:3503, context: 0x00000001, add info: 110, translation: "60".
    Release of hgoulcp, rc = 0 to 2013/02/08-22: 01:45
    Entry hgouldt to 2013/02/08-22: 01:45
    NO translation of DD for instance have been downloaded
    Release of hgouldt, rc = 0 to 2013/02/08-22: 01:45
    Entry hgobegn to 2013/02/08-22: 01:45
    tflag:0, original: 1
    Hoi:0x9671a48, ttid (len 26) is...
    00: 54595441 4E2E6438 32323564 62642E32 [TYTAN.d8225dbd.2]
    10: 3433 33313031 [9.7.310143] 392E372E
    tbid (len 10) is...
    0: 1-000700 7FBB0400 0104 [...]
    Release of hgobegn, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopdsc to 2013/02/08-22: 01:45
    Describing the procedure SUBSCRIBERS
    Output hoada
    hgopdsc, line 1406: NO hoada to print
    Release of hgopdsc, rc = 942 to 2013/02/08-22: 01:45
    Entry hgodtab to 2013/02/08-22: 01:45
    number: 1
    Table: SUBSCRIBERS
    Allocate hoada [0] @ 0x3a23590
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:1 (MSISDN): dtype:1 (CHAR), prc / scl:8 / 0, nullbl:0, byte: 8, sign: 1, radix: 0
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:2 (IMSI): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:0, byte: 8, sign: 1, radix: 10
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:3 (ICC): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:0, byte: 8, sign: 1, radix: 10
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:4 (CHECKATTR): dtype:1 (CHAR), prc / scl:200 / 0, nullbl:1, byte: 200, sign: 1, radix: 10
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:5 (REPLYATTR): dtype:1 (CHAR), prc / scl:200 / 0, nullbl:1, byte: 200, sign: 1, radix: 10
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:6 (TIMELEFT): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:1, byte: 200, sign: 1, radix: 10
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:7 (ELIMINATED): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:1, byte: 200, sign: 1, radix: 10
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:8 (Suspended): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:1, byte: 200, sign: 1, radix: 10
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    The hoada for SUBSCRIBERS table follows...
    hgodtab, line 876: print hoada @ 0x3a23590
    MAX: 8, REAL: 8, BRC:1, WHT = 6 (TABLE_DESCRIBE)
    hoadaMOD bit-values found (0x200: TREAT_AS_CHAR, 0x20: NEGATIVE_HOADADTY)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CSE IND MOD NAME
    1 TANK N 8 8 0 / 0 0 0 200 MSISDN
    -5 BIGINT 8 8 N 0 / 0 0 0 20 IMSI
    -5 BIGINT 8 8 N 0 / 0 0 0 20 ICC
    1 CHAR Y 200 200 0 / 0 0 0 200 CHECKATTR
    1 CHAR Y 200 200 0 / 0 0 0 200 REPLYATTR
    -5 BIGINT Y 8 8 0 / 0 0 0 20 TIMELEFT
    -5 BIGINT Y 8 8 0 / 0 0 0 20 ELIMINATED
    -5 BIGINT Y 8 8 0 / 0 0 0 20 SUSPENDED
    Release of hgodtab, rc = 0 to 2013/02/08-22: 01:45
    Entry hgodafr, cursor IDs 0 to 2013/02/08-22: 01:45
    Free Hoada @ 0x3a23590
    Release of hgodafr, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopars, id of cursor 1 to 2013/02/08-22: 01:45
    type: 0
    Text SQL hgopars, id = 1, len = 134...
    45 00: 53454 C 43542041 53495344 312E604D [SELECT A1.'MSISD]
    10: 4E602C41 4 534960 2C41312E 312E6049 [NO, A1.] "IMSI', A1.]
    20: 60494343 602C 4131 2E604348 45434B 41 ['ICC', A1' COACHA]
    30: 54545260 60524550 4 594154 2C41312E [TTR ', A1' REPLYAT]
    40: 5452602 C 54494 45 4 454654 41312E60 [TR ', A1' TIMELEFT]
    50: 602C 4131 2E60454C 494D494E 41544544 [', A1.'] ELIMINATED]
    60: 602C 4131 2E605355 5350454E 44454460 [', 'SUSPENDED' A1.]
    70: 4 206053 55425343 52494245 2046524F [A ' SUBSCRIBE]
    80: 52536020 4131 [RS A1]
    Release of hgopars, rc = 0 to 2013/02/08-22: 01:45
    Entry hgoopen, id of cursor 1 to 2013/02/08-22: 01:45
    hgoopen, line 86: NO hoada to print
    Delayed open until the first fetch.
    Release of hgoopen, rc = 0 to 2013/02/08-22: 01:45
    Entry hgodscr, id of cursor 1 to 2013/02/08-22: 01:45
    Allocate hoada @ 0x3a23538
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:1 (MSISDN): dtype:1 (CHAR), prc / scl:8 / 0, nullbl:0, byte: 8, sign: 1, radix: 0
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:2 (IMSI): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:0, byte: 8, sign: 1, radix: 0
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:3 (ICC): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:0, byte: 8, sign: 1, radix: 0
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:4 (CHECKATTR): dtype:1 (CHAR), prc / scl:200 / 0, nullbl:1, byte: 200, sign: 1, radix: 0
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:5 (REPLYATTR): dtype:1 (CHAR), prc / scl:200 / 0, nullbl:1, byte: 200, sign: 1, radix: 0
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:6 (TIMELEFT): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:1, byte: 200, sign: 1, radix: 0
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:7 (ELIMINATED): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:1, byte: 200, sign: 1, radix: 0
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    Entry hgopcda to 2013/02/08-22: 01:45
    Column:8 (Suspended): dtype:-5 (BIGINT), prc / scl:19 / 0, nullbl:1, byte: 200, sign: 1, radix: 0
    Release of hgopcda, rc = 0 to 2013/02/08-22: 01:45
    hgodscr, line 880: print hoada @ 0x3a23538
    MAX: 8, REAL: 8, BRC:1, WHT = 5 (SELECT_LIST)
    hoadaMOD bit-values found (0x200: TREAT_AS_CHAR, 0x20: NEGATIVE_HOADADTY)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CSE IND MOD NAME
    1 TANK N 8 8 0 / 0 0 0 200 MSISDN
    -5 BIGINT 8 8 N 0 / 0 0 0 20 IMSI
    -5 BIGINT 8 8 N 0 / 0 0 0 20 ICC
    1 CHAR Y 200 200 0 / 0 0 0 200 CHECKATTR
    1 CHAR Y 200 200 0 / 0 0 0 200 REPLYATTR
    -5 BIGINT Y 8 8 0 / 0 0 0 20 TIMELEFT
    -5 BIGINT Y 8 8 0 / 0 0 0 20 ELIMINATED
    -5 BIGINT Y 8 8 0 / 0 0 0 20 SUSPENDED
    Release of hgodscr, rc = 0 to 2013/02/08-22: 01:45
    Entry hgoclse, id of cursor 1 to 2013/02/08-22: 01:46
    Release of hgoclse, rc = 0 to 2013/02/08-22: 01:46
    Entry hgodafr, id of cursor 1 to 2013/02/08-22: 01:46
    Free Hoada @ 0x3a23538
    Release of hgodafr, rc = 0 to 2013/02/08-22: 01:46
    Entry hgopars, id of cursor 1 to 2013/02/08-22: 01:46
    type: 0
    Text SQL hgopars, id = 1, len = 56...
    45 00: 44454 C 54452046 60535542 524F4D20 [DELETE OF ' SUB]
    10: 53435249 42455253 60205748 45524520 [OF THE TRUSQUINS WHERE]
    20:60535542 53435249 602E604D 42455253 ["SUBSCRIBERS". AM]
    30: 53495344 4E603D3F [SISDN'=?]
    Release of hgopars, rc = 0 to 2013/02/08-22: 01:46
    Entry hgoexec, id of cursor 1 to 2013/02/08-22: 01:46
    octype = 3 (REMOVE)
    hgoexec, line 108: print hoada @ 0x3a23538
    MAX: 1, SIZE: 1, BRC:1, WHT = 3 (BIND_LIST)
    hoadaMOD bit-values found (0x200: TREAT_AS_CHAR)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CSE IND MOD NAME
    1 TANK N 8 0 0 / 0 31 0 200?
    Entry hgoprbv to 2013/02/08-22: 01:46
    hgoprbv, line 145: print hoada @ 0x3a23538
    MAX: 1, SIZE: 1, BRC:1, WHT = 3 (BIND_LIST)
    hoadaMOD bit-values found (0x200: TREAT_AS_CHAR)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CSE IND MOD NAME
    1 TANK N 8 0 0 / 0 31 0 200?
    Release of hgoprbv, rc = 0 to 2013/02/08-22: 01:46

    Could you please put the table in the MySQL table definition is defined in the MySQL database and the way she is described using the database link (desc 'SUBSCRIBERS"@AAA1)
    What happens when you comment the gateway init parameter:
    HS_FDS_SQLLEN_INTERPRETATION = 32?

    Thank you
    Klaus

    Published by: kgronau on February 11, 2013 07:37

    Successfully tested the DG4ODBC 11.2.0.3 by the definition of a table in MySQL:
    drop table CUSTOMERS;
    create table CUSTOMERS (MSISDN char (8), numeric (28.0) IMSI2, ICC2 numeric (28.0), NTC numeric (28.0));
    insert into CUSTOMERS values (610-0850', 8950167090300132451, 702670161017765, NULL);

    and by using this code:
    SQL > select count (*) from 'SUBSCRIBERS"@MYSQL_DG4ODBC_EMGTW_1123_DB;

    COUNT (*)
    ----------
    1

    SQL > declare
    2
    3 MSISDN2 tank (8);
    4 IMSI2 number (28.0);
    5 ICC2 number (28.0);
    6 NTC number (28.0);
    7
    Begin 8

    9 10 MSISDN2: = 610-0850';
    11 IMSI2: = 8950167090300132451;
    12 ICC2: = 702670161017765;
    13
    14 remove from 'SUBSCRIBERS"@MYSQL_DG4ODBC_EMGTW_1123_DB where"MSISDN"= MSISDN2;
    15 ' ICC' = ICC2 or "IMSI" is IMSI2;.
    16
    End 17;
    18.

    PL/SQL procedure successfully completed.

    SQL > select count (*) from 'SUBSCRIBERS"@MYSQL_DG4ODBC_EMGTW_1123_DB;

    COUNT (*)
    ----------
    0

    Published by: kgronau on February 11, 2013 07:51

    Also successfully tested using DG4ODBC Oracle 11.2.0.1 database and 10.2.0.5

  • The address bar disappears when the cursor is in the middle or the bottom of the page. How can I make the address bar to stay constantly?

    When you open mozilla, when the cursor is not at the top of the page, I do not see:
    (1) the address bar
    (2) front and rear buttons
    (3) office toolbar

    So, in short i can only see the adress bar when i move the cursor to the top of the page. Desktop toolbar doesn't seem at all when the mozilla internet page is open. How can i solve this?
    

    See also:

    When you are in full screen view, move the mouse to the top of the screen to facilitate the bar bar appear Navigation and tab.

    You can use one of them to exit full screen:

    • Click the expand (in the top right Navigation bar) button to exit full screen
    • Right click on an empty space on a toolbar and select "exit full screen".
    • Press the F11 key
  • Is there a delay in the signal when using Bluetooth on any iDevice and, in particular, on an iPad Pro?

    I am using Bluetooth involved in the use of music made a software with sounds of digital instruments using a musical keyboard hardware connected via the USB cable to Lightning to play sounds from the app on my iPad Pro.

    When I try to use a Bluetooth speaker source, there's a 1-2 second delay when I play a chord in the app and when the sound is played through the Bluetooth speaker.

    This delay IS NOT the case when I use just the iPad Pro speaker on when I am attaching some small travel speakers to the headphone jack of my iPad.

    Only when I try to use my Bluetooth speakers sounds better.

    I use a keyboard master Korg MicroKey Air uses the USB port play their own Korg music make its app module.

    Someone who makes music on an iPad with this problem at all?

    Is this a problem question Bluetooth and/or iOS?

    My iPad Pro isn't very strong using these apps do and travel speakers I use plugged into the headset jack music are a little better on the volume, but tend to deform when I try to increase the overall volume level.

    I intend to put this issue on the web forums for Korg, but want some answers from anyone who has been playing and recording music on their iPad using an external keyboard to play and record music in an app to do the music.

    Also, (and I intend to ask this in the GarageBand for iOS forums) can the iOS version of Garageband output sound on a Bluetooth speaker and quietly delay, too, that I can not get the iOS version of GarageBand to sound output via Bluetooth to a Bluetooth speaker.

    Hi, MichelPM

    According to the used speaker, he will always be * some * delay when using Bluetooth to stream audio from an iOS device (or practically any device BT also) through a Bluetooth speaker. I have a Bluetooth speakers system cheaper that I use with my iPad mini 4... I pretty much use it only to listen to sound. If I try and use it for Pinball iOS games I play, there is a delay of environ.5 second anywhere, I'm the speaker. Exactly same phenomenon occurs with the keyclicks when you type it on the iPad keyboard... 5 second delay & even with some applications of synthesizer iOS that I use (Animoog & Arturia iSEM). I think it's just the nature of the beast of Bluetooth.

    Higher quality speakers would be better, but I'm not spending more money to find out.

    If you want an immediate response with zero real audio keypress delay, I fear, the only way to do this is to use a wired speaker.

  • Different when using different reading software

    I use NI9205 and NI DAQ 9171USB, a battery and a DC output have been wired to NI9205.

    However, when using MAX (the creat task function), express Signal or a program, I created using DAQmx functions to get the output voltage,

    I got different readings for the same channel (20-50% of variation). and it turned out that only the readings of my own program are the same as what I measured with a portable meter,.

    Really do not understand how this could be possible? What's wrong with the MAX and the Signal Express?

    BTW, I made sure I put the connection method to be CSR in all three cases.

    Entrance to anyone who will be greatly appreciated.

    Problem solved. Everything is fine with the DAQ platforms

  • Strange behavior when using units and controls the ring

    Hello

    Something unexpected occurs when you use a control of the ring with units:

    1. Create the control of the ring,
    2. change the representation of double
    3. display unit label,
    4. the value of mV as a unit,
    5. edit items
      1. disable the sequential values,
      2. Add an element with a value other than zero for example 123,
      3. Ok
    6. Select the value created,
    7. create a KPI DBL with V as unit,
    8. wire from the control to the indicator,
    9. run

    What I see in the indicator is 123 V instead of the expected 0,123 V

    You guys are able to reproduce this?

    Noticed on LabVIEW 2013 and 2014, 32 and 64 bit on Windows 7 and 8.1

    Thank you

    Boris

    Bring up the digital display of the command of the ring.  You will see the units you enter under edit items menu is indeed volts.  Any prefix to units only acts on the screen.

  • Data on 'Back' button pressure only when the cursor is in the text field

    All,

    With the help of members of the forum, I understood how to use the 'Touch down?' event to send text series when the user presses the button «Back»  Is there any way I can limit this function so that the data is only sent when the cursor is in or on the correct text box AND the user presses the return key?

    Thank you very much.

    You will be most of the way, if you change the event handled in a key event down to the control of the string, rather than for all VI.  This way, you haven't really even to worry about key priorities.  You have control over the "Limit to the single line" value chain so the new line in fact will not be added to the string, but you will always have the event.

    The other problem is that you read the value of string outside of the structure of the event, so the value you write to the indicator will be flawed when it is written.  The string value is not actually until you press the Enter key.  The event fires at the point where you hit enter so that it uses the value that is on the line at the time, which is the value before you hit enter, then your indicator gets old.  There are several possible solutions.  A simple, but not necessarily good option must set "Update of value while typing" and assumes that the user will always wait for at least 10 ms between the last strike and enter.  Of course, if you increase the timeout value you may miss some characters, and there isn't really a need for a case of timeout to all in the structure of your event (just another case for the power button).  Putting control of the Terminal string inside the structure of the event does not solve the problem - again, the event occurs before the new value is treated - but, oddly enough, reading the value of a property within the structure of the event node works (while reading a local variable does not work).  It could also save a dynamic event that triggers the update based on the control indicator.  You can add a registry to offset Boolean to act as a flag and handle the case of the value has changed for the control of the chain as well.  In the case of the value has changed, if the Boolean value is set, updated to the indicator and always set to Boolean false.

    Sorry it's all rather complicated, there are quirks to LabVIEW treatment event.  Reliable the more straightforward approach is probably reading the control value of the string to a property node in the case of the event.  While property nodes are not generally recommended, especially for obtaining or the settting a value when the terminal is on the same side, in this case I think that it is the least complicated solution.

  • My slider controls when using Excel and Publisher became too sensitive

    My slider controls when using Excel and Publisher have become too sensitive and more often, don't do what it is that I'm willing to do.  For example: while in Publisher if I click on a photo, that I've inserted, and try to move it, it will automatically open the Format Picture option.  She does it with a number of other features as well.  If I'm in Excel and I'm trying to highlight a phrase, it will begin to highlight the requested sentence, then the middle of it will stop after the sense that I'm going with my cursor and it will pass at the end of the sentence.  I guess you could say this kind of "jump" and the mouse became too sensitive with the controls.  It's really frustrating and it feels like it has a mind of its own.  At first, I thought maybe a low battery mouse, because she was the way she does when the battery is dying.  Changed the battery and no change.  I also tried to set my mouse speed and still nothing.

    Any ideas?

    Oh and btw this just started to happen during the first 4 to 6 months.

    Hi H.Morton,

    1. the problem occurs with excel and publisher?
    2. what operating system do you use?
    3. did you uninstall and reinstall the mouse drivers?
    4. have you tried with another mouse and check?
    5. do the mouse has a selection of sensitivity on the mouse itself?

    I suggest you to update the mouse drivers and see if that helps.
    Updated a hardware driver that is not working properly
    http://Windows.Microsoft.com/en-us/Windows7/update-a-driver-for-hardware-that-isn ' t-work correctly

Maybe you are looking for

  • Cannot connect in iMessage on Mac. ID and password.

    iMessage spontaneously told me to open a session, but don't connect. My ID and password are correct. I even reset my password to see if it would fix it. iCloud and other apps Apple ID/functions work fine. iMessage on my Mac does not work. iMessage on

  • Arc mouse replacement

    My USB adapter mouse Arc has just broken.  The camera is not old (9-12 months), but I have more than the reception.  I can not find on the Microsoft.com site where / who to contact for advice the return or replacement.  Any advice will be appreciated

  • Use of excessive CPU due to rndll32.exe?

    Hello, by opening the Task Manager I shows 75% use practically all with multiple instances of rndll32.exe. I had this problem a couple of years and after that the research days found a fix. Stupidly, I didn't save the link for the fix. Can anyone hel

  • Windows 7 notification icons are blury

    The small icons in my taskbar are blurred and it's really irritating me. I had this problem on my computer windows 8 but after I restarted, it was back to normal. I tried to restart on this computer, but nothing has changed. I have also looked throug

  • How to rearrange apps on the front of my printer?

    I was helping a friend with an application problem, and after that we had understood, he wanted to know if you can change the order applications without having to delete and readd all of them.  We discovered that some printers allow you to change the