Met a symbol ') ' when waiting for something else

Hello

I am not able to understand why I get this error.

2nd question is do I create procedure or a function to the followign script that changes the structure of table of data/geometry

Error

Compile for PROCEDURE RDP errors. VF123

Error: PLS-00103: encountered the symbol ")" when expecting one of the following values:

< an ID > < a between double quote delimited identifiers of >
course
Line: 1
Text: create or replace procedure vf123() is

Error: PLS-00103: encountered the symbol "end-of-file" when it is waiting for one of the following values:

begin case declare exit end exception for goto if loop mod
pragma raise return null select update while with
< an ID > < a between double quote delimited identifiers of >
< a variable binding > < < close current delete fetch locking insert
Open restore savepoint sql set run commit forall fusion
pipe
Line: 62


create or replace procedure vf123() is
Start

Start
declare
v_sql varchar2 (1000);


Start

for rec in (select table_name, column_name from user_sdo_geom_metadata where table_name like '% 09% ')
loop

-Remove the Index
for rec2 in
(select index_name from user_sdo_index_info where table_name = rec.table_name and rec.column_name = column_name)
loop
v_sql: = "delete the index. rec2.index_name | "the force."
immediately run v_sql;

-Updated SRID
v_sql: = "update". Rec.table_name | "a whole one.'" Rec.column_name | '.sdo_srid = 2958';
immediately run v_sql;

-Updated geometry in 2D
v_sql: = "update". Rec.table_name | "a whole one.'" Rec.column_name | '=' || to_2d | ' (' | rec.column_name |) ')' ;
immediately run v_sql;


-Delete the record from the Table in Sdo_User_Geom_Metadata
v_sql: = 'DELETE USER_SDO_GEOM_METADATA WHERE TABLE_NAME =' | Rec.table_name;
immediately run v_sql;

-Insert the record from the Table in Sdo_User_Geom_Metadata
v_sql: = 'INSERT IN USER_SDO_GEOM_METADATA (TABLE_NAME, COLUMN_NAME, DIMINFO, SRID) |
"VALUES (' |)" Rec.table_name | ',' || Rec.column_name | ', MDSYS. SDO_DIM_ARRAY (' |)
'MDSYS. SDO_DIM_ELEMENT ('X',-2147483648, 2147483647,.000005), ' |
'MDSYS. SDO_DIM_ELEMENT(''Y'',-2147483648, 2147483647,.000005)), 2958)';
immediately run v_sql;
commit;

-Create Index
v_sql: = 'create index ' | rec2. IndexName | "ON" | Rec.table_name | ' (' | rec.column_name |) INDEXTYPE ') IS MDSYS. SPATIAL_INDEX';
immediately run v_sql;
commit;

end loop;
end loop;


end VF123;


Thank you
Nancy

Hi, your procedure should look like

create or replace procedure VF123
is
    v_sql varchar2(1000);
begin
  for rec in (select table_name, column_name from user_sdo_geom_metadata where table_name like '%09%')
  loop
    for rec2 in
    (select index_name from user_sdo_index_info where table_name = rec.table_name and column_name = rec.column_name)
    loop
      --Drop Index
      v_sql := 'drop index ' ||rec2.index_name || ' force' ;
      execute immediate v_sql;

      --Update SRID
      v_sql := 'update ' || rec.table_name || ' a set a.' || rec.column_name || '.sdo_srid=2958';
      execute immediate v_sql;

      --Update Geometry to 2D
      v_sql := 'update ' || rec.table_name || ' a set a.' || rec.column_name || '=' || to_2d || '(' || rec.column_name || ')' ;
      execute immediate v_sql;

      -- Remove Table Record in Sdo_User_Geom_Metadata
      v_sql:= 'DELETE USER_SDO_GEOM_METADATA WHERE TABLE_NAME= ' || rec.table_name;
      execute immediate v_sql;

      -- Insert Table Record in Sdo_User_Geom_Metadata
      v_sql:= 'INSERT INTO USER_SDO_GEOM_METADATA(TABLE_NAME, COLUMN_NAME, DIMINFO, SRID) ' ||
                 'VALUES (' || rec.table_name || ',' || rec.column_name || ', MDSYS.SDO_DIM_ARRAY( ' ||
                 'MDSYS.SDO_DIM_ELEMENT(''X'',-2147483648, 2147483647, .000005), ' ||
                 'MDSYS.SDO_DIM_ELEMENT(''Y'',-2147483648, 2147483647, .000005)), 2958)' ;
      execute immediate v_sql;

     --Create Index
      v_sql := 'create index ' || rec2.indexname || 'ON ' || rec.table_name || '(' || rec.column_name ||
                  ') INDEXTYPE IS MDSYS.SPATIAL_INDEX';
      execute immediate v_sql;
    end loop;
  end loop;
end VF123;

You don't need to commit within this procedure, because you have DDL statement at the end of the inner loop. DDL statements have
implicit validation before and after execution.

In addition:
(1) what is to_2d ? you do not have this variable in your procedure

   v_sql := 'update ' || rec.table_name || ' a set a.' || rec.column_name || '=' || to_2d || '(' || rec.column_name || ')' ;

(2) maybe there is error in this text

   v_sql := 'update ' || rec.table_name || ' a set a.' || rec.column_name || '.sdo_srid=2958';

Published by: Oleg Gorskin the 20.01.2010 11:47

Published by: Oleg Gorskin the 20.01.2010 12:00
Typo

Tags: Database

Similar Questions

  • Encountered the symbol "LOOP" when waiting for him...

    Hello, I run this code:
    DECLARE
    CURSOR cur IS SELECT ID, SEQNR, TRPELID FROM ITAI11_MP2103 WHERE ROWNUM<10 ORDER BY ID, SEQNR;
    rec cur%ROWTYPE;
    prohibLink1 cur.TRPELID%TYPE;
    prohibLink2 cur.TRPELID%TYPE;
    prohibLink3 cur.TRPELID%TYPE;
    prohibLink4 cur.TRPELID%TYPE;
    prohibLink5 cur.TRPELID%TYPE;
      
    currMPID cur.ID%TYPE;
    currSeq1ID cur.TRPELID%TYPE;
    linkIDSeq2 PL_LINK$.LINK_ID%TYPE;
      
    BEGIN
    OPEN cur;
    LOOP
    FETCH cur INTO rec; 
    EXIT WHEN cur%NOTFOUND;
    
    IF (rec.SEQNR = 1) THEN
    currMPID := rec.ID;
    currSeq1ID := rec.TRPELID;
    SELECT PL1, PL2, PL3, PL4, PL5 INTO prohibLink1, prohibLink2, prohibLink3, prohibLink4, prohibLink5 FROM PL_LINK$ WHERE ID = rec.TRPELID;
    
    ELSE IF (rec.SEQNR = 2) AND (currMPID = rec.ID) THEN SELECT LINK_ID INTO linkIDSeq2 FROM  PL_LINK$ WHERE ID = rec.TRPELID;
    
    IF (prohibLink1 IS NULL) THEN UPDATE  PL_LINK$ SET PL1 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL1 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    
    ELSE IF (prohibLink2 IS NULL) THEN UPDATE PL_LINK$ SET PL2 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL2 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    
    ELSE IF (prohibLink3 IS NULL) THEN UPDATE PL_LINK$ SET PL3 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL3 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    
    ELSE IF (prohibLink4 IS NULL) THEN UPDATE PL_LINK$ SET PL4 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL4 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    
    ELSE IF (prohibLink5 IS NULL) THEN UPDATE PL_LINK$ SET PL5 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL5 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    END IF;
    
    END IF;
    END LOOP;
    CLOSE cur;
    END;
    /
    but I have:

    *
    ERROR on line 44:
    ORA-06550: line 44, column 5:
    PLS-00103: encountered the symbol "LOOP" when expecting one of the following conditions:
    If
    ORA-06550: line 46, column 4:
    PLS-00103: encountered the symbol "end-of-file" when awaits an of the
    Next:
    not end up dominant static of final instantiable order pragma
    manufacturer membership card

    you know what mean?

    Thank you very much.

    Try this:

    DECLARE
    CURSOR cur IS SELECT ID, SEQNR, TRPELID FROM ITAI11_MP2103 WHERE ROWNUM<10 ORDER BY ID, SEQNR;
    rec cur%ROWTYPE;
    prohibLink1 ITAI11_MP2103.TRPELID%TYPE;  -- referred a column type from a table instead of a cursor
    prohibLink2 ITAI11_MP2103.TRPELID%TYPE;  -- referred a column type from a table instead of a cursor
    prohibLink3 ITAI11_MP2103.TRPELID%TYPE;  -- referred a column type from a table instead of a cursor
    prohibLink4 ITAI11_MP2103.TRPELID%TYPE;
    prohibLink5 ITAI11_MP2103.TRPELID%TYPE;
    
    currMPID ITAI11_MP2103.ID%TYPE;
    currSeq1ID ITAI11_MP2103.TRPELID%TYPE;
    linkIDSeq2 PL_LINK$.LINK_ID%TYPE;
    
    BEGIN
    OPEN cur;
    LOOP
    FETCH cur INTO rec;
    EXIT WHEN cur%NOTFOUND;
    
    IF (rec.SEQNR = 1) THEN
    currMPID := rec.ID;
    currSeq1ID := rec.TRPELID;
    SELECT PL1, PL2, PL3, PL4, PL5 INTO prohibLink1, prohibLink2, prohibLink3, prohibLink4, prohibLink5 FROM PL_LINK$ WHERE ID = rec.TRPELID;
    
    ELSIF (rec.SEQNR = 2) AND (currMPID = rec.ID) THEN
    
    SELECT LINK_ID INTO linkIDSeq2 FROM  PL_LINK$ WHERE ID = rec.TRPELID;
    
    IF (prohibLink1 IS NULL) THEN UPDATE  PL_LINK$ SET PL1 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL1 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    
    ELSIF (prohibLink2 IS NULL) THEN UPDATE PL_LINK$ SET PL2 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL2 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    
    ELSIF (prohibLink3 IS NULL) THEN UPDATE PL_LINK$ SET PL3 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL3 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    
    ELSIF (prohibLink4 IS NULL) THEN UPDATE PL_LINK$ SET PL4 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL4 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    
    ELSIF (prohibLink5 IS NULL) THEN UPDATE PL_LINK$ SET PL5 = linkIDSeq2 WHERE ID = currSeq1ID;
    DBMS_OUTPUT.PUT_LINE('Setting PL5 = '||linkIDSeq2||' for link with ID = '||currSeq1ID);
    END IF;
    
    END IF;
    END LOOP;
    CLOSE cur;
    END;
    / 
    

    PS: Not tested

  • Tecra A10 erratic mouse then freezes when serial port used for something else

    MT Tecra A10 was beautiful, but has developed a growing problem. It is running win7 ultimate. When you connect anything serial port wise it blocks indicating the Mouse / touchpad. USB mouse feezes completely, 98% frozen touchpad series same happenes when connecting via a usb emulator. Software on the laptop using series includes RS logix, perfect Omron CX1 Motion and NQ Designer, that said that they worked, can anyone guid help me pls.

    See you soon

    Martyn

    Hello

    Eventually, the software that controls the serial port or the device connected to the serial port is not fully compatible with Win 7.
    I think that this should be checked first.
    Maybe one of you should look for the Special Forum of the manufacturer of the software for more details

  • Can not use the card PXI controlling SCXI for something else

    Hi all

    We have a hybrid chassis of 1052 with a PXI-6221 (control of the special SCXI version) into the slot of the 8th and, while it allows us to access map of the SCXI-1540 module without problem, if I try to add the NI PXI-6221 to the list of data acquisition cards to read the definition of system files or I make reference to any channel in a task of analog input (custom device) it is telling me that the resource is reserved. When I list the card in the system definition file, it gives the error message even if I turn off the single-point support timed by the hardware.

    I went back to the documentation for the Web site and I couldn't find a place where it says you need a card PXI for controlling SCXI cards but that the PXI card controls became useless.

    I'm doing something wrong?

    Thank you.

    Dear Claudio_G,

    That should really be a limitation in VS2011 because there are future news added since VS2011.

    And the reason why it works in the custom device could be the one custom unit as PXI6221 and SCXI1540 are separated internally in which the task and VS that it works in the same task.

    Then when it works properly in the custom device I recommend to use this way or other wise update to VS2013.

    Kind regards

    Oleg Scherling, mengg | Engineering applications. National Instruments | NIG. |

  • Get blocking detected when waiting for resource query error select...

    Hi all

    I get an error below each time that the execution of the select query below...

    a few times, it will show lock detected while you wait resource and finished...

    a few times, it runs and give the result...

    but all the time, he writes a journal to alert to the alert

    Plesae suggest how to solve the problem...

    Thanks in advance

    .

    Env: Linux / Oracle 11.2.0.3.3

    .

    .

    Alerts log error:

    Errors in the /u01/oracle/oracle/diag/rdbms/bdrdb/bdrdb/trace/bdrdb_p017_6076.trc file:

    ORA-00060: Deadlock detected while you wait resource

    ORA-10387: interruption of server a (normal) parallel query

    Trace file... information bdrdb_p017_6076.trc:

    Trace file /U01/Oracle/Oracle/diag/RDBMS/bdrdb/bdrdb/trace/bdrdb_p017_6076.TRC

    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production

    With partitioning, OLAP, Data Mining and Real Application Testing options

    ORACLE_HOME = /u01/oracle/oracle/product/11.2.0/dbhome_1

    Name of the system: Linux

    Name of the node: bdrdb.cteplindia.com

    News Release: 2.6.18 - 308.el5PAE

    Version: #1 SMP kills Jan 27 17:40:09 EST 2012

    Machine: i686

    Instance name: bdrdb

    Redo thread mounted by this instance: 1

    Oracle process number: 92

    Unix process pid: 6076, image: [email protected] (P017)

    2013-11-04 23:18:57.915

    SESSION ID: (423.59970) 2013-11-04 23:18:57.915

    CUSTOMER ID :() 23:18:57.915 2013-11-04

    SERVICE NAME: (bdrdb) 2013-11-04 23:18:57.915

    MODULE NAME :() 23:18:57.915 2013-11-04

    ACTION NAME :() 23:18:57.915 2013-11-04

    .

    .

    2013-11-04 23:18:57.915

    DEADLOCK DETECTED (ORA-00060)

    .

    [Transaction blocking]

    Deadlock graph event:

    -Blockers - Waiter (s).

    Resource name process session held process session expected holds expected

    PS-00000001-00000011 92 423 S 33 128 S X

    BF-2ed08c01-00000000 33 128 S 92 423 S X

    session 423: C 005-0001-00081126 session 128: DONE 01/21/67 D 23

    session 128: MADE 21/01/67 D session 23 423: have you 0001-005 C-00081126

    DEADLOCK DETECTED (ORA-00060)

    [Transaction blocking]

    Deadlock graph event:

    -Blockers - Waiter (s).

    Resource name process session held process session expected holds expected

    PS-00000001-00000011 92 423 S 33 128 S X

    BF-2ed08c01-00000000 33 128 S 92 423 S X

    session 423: C 005-0001-00081126 session 128: DONE 01/21/67 D 23

    session 128: MADE 21/01/67 D session 23 423: have you 0001-005 C-00081126

    Expected number of lines:

    Session 423: no line

    Session 128: obj - rowid = 00021DC1 - AAAh3BAAVAAAQL/AAA

    (dictionary objn - 138689, file - 21, block - 66303, machine slot - 0)

    -Information for OTHER waiting sessions-

    Session 128:

    SID: 128 ser: 46176 audsid: 1836857 user: 102/DBLOCAL

    indicators: (0 x 8000041) USR /-flags_idl: (0 x 1) BSY /-/ - /-/ - / -.

    Flags2: (0 x 40009) - /-/ INC.

    PID: 33 info o/s: user: oracle, duration: UNKNOWN, ospid: 31611

    image: [email protected]

    Customer details:

    Info of the o/s: user: hidden, term: hidden, ospid: 5924:568

    machine: hidden program: Toad.exe

    application name: TOAD background query session, the hash value = 526966934

    SQL courses

    application name: TOAD background query session, the hash value = 526966934

    SQL courses

    SELECT DISTINCT B_FP_TEST. TEST_ID

    OF B_FP_TEST.

    B_USER_INFO,

    J_FP_INVESTIGATOR,

    L_TEST_STATUS,

    L_ATMS_TEST_TYPE,

    j_op_test_anml

    WHERE B_FP_TEST. TEST_ID = J_FP_INVESTIGATOR. TEST_ID

    AND B_FP_TEST. TEST_TYPE_ID = L_ATMS_TEST_TYPE. ATMS_TEST_TYPE_ID

    AND B_USER_INFO. B_USER_INFO_ID = J_FP_INVESTIGATOR. INVESTIGATOR_ID

    AND B_FP_TEST. BATCH = L_TEST_STATUS. BATCH

    AND B_FP_TEST.IS_DELETED =: "SYS_B_00."

    AND B_FP_TEST. TEST_NUM NOT IN (: 'SYS_B_01,': 'SYS_B_02': 'SYS_B_03')

    AND L_ATMS_TEST_TYPE.IS_DELETED =: "SYS_B_04."

    AND J_FP_INVESTIGATOR.is_pi =: "SYS_B_05."

    AND L_TEST_STATUS. STATUS (: 'SYS_B_06': 'SYS_B_07': 'SYS_B_08')

    AND j_op_test_anml.test_id = B_FP_TEST. TEST_ID

    .

    .

    -End of information for OTHER waiting sessions-

    .

    .

    2013-11-04 23:18:57.916

    dbkedDefDump(): from a dump of diagnosis non-event (flags = 0 x 0, level = 3, mask = 0 x 0)

    -Error stack dump-

    ORA-00060: Deadlock detected while you wait resource

    ORA-10387: interruption of server a (normal) parallel query

    -SQL statement (none).

    Run SQL information not available - no cursor.

    -Call trace stack memory-

    call call entered the argument values in hex

    location point type (? means dubious value)

    More...

    .

    .

    .

    .

    Query:

    SELECT DISTINCT B_FP_TEST. TEST_ID

    OF B_FP_TEST.

    B_USER_INFO,

    J_FP_INVESTIGATOR,

    L_TEST_STATUS,

    L_ATMS_TEST_TYPE,

    j_op_test_anml

    WHERE B_FP_TEST. TEST_ID = J_FP_INVESTIGATOR. TEST_ID

    AND B_FP_TEST. TEST_TYPE_ID = L_ATMS_TEST_TYPE. ATMS_TEST_TYPE_ID

    AND B_USER_INFO. B_USER_INFO_ID = J_FP_INVESTIGATOR. INVESTIGATOR_ID

    AND B_FP_TEST. BATCH = L_TEST_STATUS. BATCH

    AND B_FP_TEST.IS_DELETED = 0

    AND B_FP_TEST. TEST_NUM NOT IN (1, 2, 99)

    AND L_ATMS_TEST_TYPE.IS_DELETED = 0

    AND J_FP_INVESTIGATOR.is_pi = 1

    AND L_TEST_STATUS. STATUS ('regular', 'In progress', 'completed')

    AND j_op_test_anml.test_id = B_FP_TEST. TEST_ID

    AND ((j_op_test_anml.end_date ENTRE TO_DATE (28 octobre 2013 ") - 1))

    AND TO_DATE (4 November 2013 ') + 1).

    OR (j_op_test_anml.start_date BETWEEN TO_DATE (28 October 2013 "") - 1).

    AND TO_DATE (4 November 2013 ') + 1).

    OR (TO_DATE (28 October 2013') BETWEEN j_op_test_anml.start_date)

    AND j_op_test_anml.end_date)

    OR (TO_DATE (4 November 2013") BETWEEN j_op_test_anml.start_date)

    (AND j_op_test_anml.end_date))

    AND L_ATMS_TEST_TYPE.IS_DELETED = 0

    AND B_FP_TEST. DATASOURCE_ID = 9

    .

    .

    .

    Exp query plan:

    Hash value of plan: 3398228788

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------

    | ID | Operation                                          | Name                | Lines | Bytes | Cost (% CPU). Time | Pstart. Pstop |    TQ | IN-OUT | PQ Distrib.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------

    |   0 | SELECT STATEMENT |                     |  1501 |   102K |  1929 (1) | 00:00:24 |       |       |        |      |            |

    |   1.  HASH UNIQUE                                       |                     |  1501 |   102K |  1929 (1) | 00:00:24 |       |       |        |      |            |

    |   2.   CONCATENATION.                     |       |       |            |          |       |       |        |      |            |

    |   3.    COORDINATOR OF PX |                     |       |       |            |          |       |       |        |      |            |

    |   4.     PX SEND QC (RANDOM). : TQ30005 |   241. 16870 |   800 (1) | 00:00:10 |       |       |  Q3, 05 | P > S | QC (RAND) |

    |*  5 |      HASH JOIN                                     |                     |   241. 16870 |   800 (1) | 00:00:10 |       |       |  Q3, 05 | SVCP |            |

    |   8 2       PX RECEIVE                                   |                     |   246. 15990.   797 (1) | 00:00:10 |       |       |  Q3, 05 | SVCP |            |

    |   7.        PX SEND HASH | : TQ30004 |   246. 15990.   797 (1) | 00:00:10 |       |       |  Q3, 04 | P > P | HASH |

    |*  8 |         HASH JOIN                                  |                     |   246. 15990.   797 (1) | 00:00:10 |       |       |  Q3, 04 | SVCP |            |

    |   9.          RECEIVE PX |                     |   573. 29223 |   793 (1) | 00:00:10 |       |       |  Q3, 04 | SVCP |            |

    |  10.           PX SEND HASH | : TQ30003 |   573. 29223 |   793 (1) | 00:00:10 |       |       |  Q3, 03 | P > P | HASH |

    | * 11 |            HASH JOIN                               |                     |   573. 29223 |   793 (1) | 00:00:10 |       |       |  Q3, 03 | SVCP |            |

    |  12.             KIND OF BUFFER.                     |       |       |            |          |       |       |  Q3, 03 | ISSUE |            |

    |  13.              RECEIVE PX |                     |       |       |            |          |       |       |  Q3, 03 | SVCP |            |

    |  14.               PX SEND BROADCAST | : TQ30000 |       |       |            |          |       |       |        | S > P | BROADCAST |

    |  15.                NESTED LOOPS |                     |       |       |            |          |       |       |        |      |            |

    |  16.                 NESTED LOOPS |                     |   485. 20855 |   781 (0) | 00:00:10 |       |       |        |      |            |

    |  17.                  TABLE ACCESS BY INDEX ROWID | J_OP_TEST_ANML |   485. 10185 |   296 (0) | 00:00:04 | ROWID | ROWID |        |      |            |

    | * 18.                   INDEX RANGE SCAN | IDX$ $_2D190001 |   485.       |     4 (0) | 00:00:01 |       |       |        |      |            |

    | * 19.                  INDEX UNIQUE SCAN | FT_TEST_ID_PK |     1.       |     0 (0) | 00:00:01 |       |       |        |      |            |

    | * 20.                 TABLE ACCESS BY INDEX ROWID | B_FP_TEST |     1.    22.     1 (0) | 00:00:01 | ROWID | ROWID |        |      |            |

    |  21.             ITERATOR BLOCK PX |                     | 70382 |   549KO |    11 (0) | 00:00:01 |       |       |  Q3, 03 | ISSUE |            |

    | * 22.              TABLE ACCESS FULL | J_FP_INVESTIGATOR | 70382 |   549KO |    11 (0) | 00:00:01 |       |       |  Q3, 03 | SVCP |            |

    |  23.          KIND OF BUFFER.                     |       |       |            |          |       |       |  Q3, 04 | ISSUE |            |

    |  24.           RECEIVE PX |                     |     3.    42.     3 (0) | 00:00:01 |       |       |  Q3, 04 | SVCP |            |

    |  25.            PX SEND HASH | : TQ30001 |     3.    42.     3 (0) | 00:00:01 |       |       |        | S > P | HASH |

    | * 26.             TABLE ACCESS FULL | L_TEST_STATUS |     3.    42.     3 (0) | 00:00:01 |       |       |        |      |            |

    |  27.       KIND OF BUFFER.                     |       |       |            |          |       |       |  Q3, 05 | ISSUE |            |

    |  28.        PX RECEIVE                                  |                     |    30.   150.     3 (0) | 00:00:01 |       |       |  Q3, 05 | SVCP |            |

    |  29.         PX SEND HASH | : TQ30002 |    30.   150.     3 (0) | 00:00:01 |       |       |        | S > P | HASH |

    | * 30 |          TABLE ACCESS FULL | L_ATMS_TEST_TYPE |    30.   150.     3 (0) | 00:00:01 |       |       |        |      |            |

    |  31.    NESTED LOOPS |                     |       |       |            |          |       |       |        |      |            |

    |  32.     NESTED LOOPS |                     |     3.   210 |   329 (1) | 00:00:04 |       |       |        |      |            |

    |  33.      NESTED LOOPS |                     |     3.   195.   329 (1) | 00:00:04 |       |       |        |      |            |

    | * 34 |       HASH JOIN                                    |                     |     2.   114.   325 (1) | 00:00:04 |       |       |        |      |            |

    |  35.        NESTED LOOPS |                     |       |       |            |          |       |       |        |      |            |

    |  36.         NESTED LOOPS |                     |     6.   258.   322 (1) | 00:00:04 |       |       |        |      |            |

    |  37.          RANGE OF SINGLE PARTITION |                     |     6.   126.   316 (1) | 00:00:04 |     7.     7.        |      |            |

    | * 38 |           TABLE ACCESS FULL | J_OP_TEST_ANML |     6.   126.   316 (1) | 00:00:04 |     7.     7.        |      |            |

    | * 39 |          INDEX UNIQUE SCAN | FT_TEST_ID_PK |     1.       |     0 (0) | 00:00:01 |       |       |        |      |            |

    | * 40 |         TABLE ACCESS BY INDEX ROWID | B_FP_TEST |     1.    22.     1 (0) | 00:00:01 | ROWID | ROWID |        |      |            |

    | * 41.        TABLE ACCESS FULL | L_TEST_STATUS |     3.    42.     3 (0) | 00:00:01 |       |       |        |      |            |

    | * 42 |       TABLE ACCESS BY INDEX ROWID | J_FP_INVESTIGATOR |     1.     8.     2 (0) | 00:00:01 |       |       |        |      |            |

    | * 43.        INDEX RANGE SCAN | FI_TEST_ID_PK |     1.       |     1 (0) | 00:00:01 |       |       |        |      |            |

    | * 44 |      INDEX UNIQUE SCAN | L_ATMS_TEST_TYPE_PK |     1.       |     0 (0) | 00:00:01 |       |       |        |      |            |

    | * 45 |     TABLE ACCESS BY INDEX ROWID | L_ATMS_TEST_TYPE |     1.     5.     1 (0) | 00:00:01 |       |       |        |      |            |

    |  46.    COORDINATOR OF PX |                     |       |       |            |          |       |       |        |      |            |

    |  47.     PX SEND QC (RANDOM). : TQ20003 |       |       |            |          |       |       |  Q2, 03 | P > S | QC (RAND) |

    |  48.      NESTED LOOPS |                     |       |       |            |          |       |       |  Q2, 03 | SVCP |            |

    |  49.       NESTED LOOPS |                     |    33.  2310 |   399 (2) | 00:00:05 |       |       |  Q2, 03 | SVCP |            |

    | * 50 |        HASH JOIN                                   |                     |    33.  2145.   397 (2) | 00:00:05 |       |       |  Q2, 03 | SVCP |            |

    |  51.         RECEIVE PX |                     |    78.  3978 |   393 (1) | 00:00:05 |       |       |  Q2, 03 | SVCP |            |

    |  52.          PX SEND HASH | : TQ20002 |    78.  3978 |   393 (1) | 00:00:05 |       |       |  Q2, 02 | P > P | HASH |

    | * 53 |           HASH JOIN                                |                     |    78.  3978 |   393 (1) | 00:00:05 |       |       |  Q2, 02 | SVCP |            |

    |  54.            KIND OF BUFFER.                     |       |       |            |          |       |       |  Q2, 02 | ISSUE |            |

    |  55.             RECEIVE PX |                     |       |       |            |          |       |       |  Q2, 02 | SVCP |            |

    |  86 M |              PX SEND BROADCAST | : TQ20000 |       |       |            |          |       |       |        | S > P | BROADCAST |

    |  57.               NESTED LOOPS |                     |       |       |            |          |       |       |        |      |            |

    |  58.                NESTED LOOPS |                     |    66.  2838 |   382 (1) | 00:00:05 |       |       |        |      |            |

    |  59.                 RANGE OF SINGLE PARTITION |                     |    66.  1386 |   316 (1) | 00:00:04 |     7.     7.        |      |            |

    | * 60 |                  TABLE ACCESS FULL | J_OP_TEST_ANML |    66.  1386 |   316 (1) | 00:00:04 |     7.     7.        |      |            |

    | * 61.                 INDEX UNIQUE SCAN | FT_TEST_ID_PK |     1.       |     0 (0) | 00:00:01 |       |       |        |      |            |

    | * 62 |                TABLE ACCESS BY INDEX ROWID | B_FP_TEST |     1.    22.     1 (0) | 00:00:01 | ROWID | ROWID |        |      |            |

    |  63.            ITERATOR BLOCK PX |                     | 70382 |   549KO |    11 (0) | 00:00:01 |       |       |  Q2, 02 | ISSUE |            |

    | * 64 |             TABLE ACCESS FULL | J_FP_INVESTIGATOR | 70382 |   549KO |    11 (0) | 00:00:01 |       |       |  Q2, 02 | SVCP |            |

    |  65.         KIND OF BUFFER.                     |       |       |            |          |       |       |  Q2, 03 | ISSUE |            |

    |  66.          RECEIVE PX |                     |     3.    42.     3 (0) | 00:00:01 |       |       |  Q2, 03 | SVCP |            |

    |  67.           PX SEND HASH | : TQ20001 |     3.    42.     3 (0) | 00:00:01 |       |       |        | S > P | HASH |

    | * 68 |            TABLE ACCESS FULL | L_TEST_STATUS |     3.    42.     3 (0) | 00:00:01 |       |       |        |      |            |

    | * 69 |        INDEX UNIQUE SCAN | L_ATMS_TEST_TYPE_PK |     1.       |     0 (0) | 00:00:01 |       |       |  Q2, 03 | SVCP |            |

    | * 70 |       TABLE ACCESS BY INDEX ROWID | L_ATMS_TEST_TYPE |     1.     5.     1 (0) | 00:00:01 |       |       |  Q2, 03 | SVCP |            |

    |  71.    COORDINATOR OF PX |                     |       |       |            |          |       |       |        |      |            |

    |  72.     PX SEND QC (RANDOM). : TQ10003 |       |       |            |          |       |       |  Q1, 03 | P > S | QC (RAND) |

    |  73.      NESTED LOOPS |                     |       |       |            |          |       |       |  Q1, 03 | SVCP |            |

    |  74.       NESTED LOOPS |                     |    33.  2310 |   399 (2) | 00:00:05 |       |       |  Q1, 03 | SVCP |            |

    | * 75 |        HASH JOIN                                   |                     |    34.  2210 |   397 (2) | 00:00:05 |       |       |  Q1, 03 | SVCP |            |

    |  76.         RECEIVE PX |                     |    78.  3978 |   393 (1) | 00:00:05 |       |       |  Q1, 03 | SVCP |            |

    |  77.          PX SEND HASH | : TQ10002 |    78.  3978 |   393 (1) | 00:00:05 |       |       |  Q1, 02 | P > P | HASH |

    | * 78 |           HASH JOIN                                |                     |    78.  3978 |   393 (1) | 00:00:05 |       |       |  Q1, 02 | SVCP |            |

    |  79.            KIND OF BUFFER.                     |       |       |            |          |       |       |  Q1, 02 | ISSUE |            |

    |  80.             RECEIVE PX |                     |       |       |            |          |       |       |  Q1, 02 | SVCP |            |

    |  81.              PX SEND BROADCAST | : TQ10000 |       |       |            |          |       |       |        | S > P | BROADCAST |

    |  82.               NESTED LOOPS |                     |       |       |            |          |       |       |        |      |            |

    |  83.                NESTED LOOPS |                     |    66.  2838 |   382 (1) | 00:00:05 |       |       |        |      |            |

    |  84.                 RANGE OF SINGLE PARTITION |                     |    66.  1386 |   316 (1) | 00:00:04 |     7.     7.        |      |            |

    | * 85 |                  TABLE ACCESS FULL | J_OP_TEST_ANML |    66.  1386 |   316 (1) | 00:00:04 |     7.     7.        |      |            |

    | * 86 |                 INDEX UNIQUE SCAN | FT_TEST_ID_PK |     1.       |     0 (0) | 00:00:01 |       |       |        |      |            |

    | * 87.                TABLE ACCESS BY INDEX ROWID | B_FP_TEST |     1.    22.     1 (0) | 00:00:01 | ROWID | ROWID |        |      |            |

    |  88.            ITERATOR BLOCK PX |                     | 70382 |   549KO |    11 (0) | 00:00:01 |       |       |  Q1, 02 | ISSUE |            |

    | * 89 |             TABLE ACCESS FULL | J_FP_INVESTIGATOR | 70382 |   549KO |    11 (0) | 00:00:01 |       |       |  Q1, 02 | SVCP |            |

    |  90.         KIND OF BUFFER.                     |       |       |            |          |       |       |  Q1, 03 | ISSUE |            |

    |  91.          RECEIVE PX |                     |     5:    42.     3 (0) | 00:00:01 |       |       |  Q1, 03 | SVCP |            |

    |  92.           PX SEND HASH | : TQ10001 |     5:    42.     3 (0) | 00:00:01 |       |       |        | S > P | HASH |

    | * 93 |            TABLE ACCESS FULL | L_TEST_STATUS |     5:    42.     3 (0) | 00:00:01 |       |       |        |      |            |

    | * 94 |        INDEX UNIQUE SCAN | L_ATMS_TEST_TYPE_PK |     1.       |     0 (0) | 00:00:01 |       |       |  Q1, 03 | SVCP |            |

    | * 95 |       TABLE ACCESS BY INDEX ROWID | L_ATMS_TEST_TYPE |     1.     3:     1 (0) | 00:00:01 |       |       |  Q1, 03 | SVCP |            |

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Information of predicates (identified by the operation identity card):

    ---------------------------------------------------

    5 - access("B_FP_TEST".") TEST_TYPE_ID "=" L_ATMS_TEST_TYPE. " ("' ATMS_TEST_TYPE_ID")

    8 - access("B_FP_TEST".") BATCH "=" L_TEST_STATUS. " ("' BATCH ')

    11 - access("B_FP_TEST".") TEST_ID "=" J_FP_INVESTIGATOR. " ("' TEST_ID")

    18 - access("J_OP_TEST_ANML".") Start_date"> = TO_DATE(' 2013-10-27 00:00:00', 'syyyy-mm-dd hh24:mi:ss') AND"J_OP_TEST_ANML. " "" Start_date "< = TO_DATE (' 2013-11-05)

    00:00:00 ', "syyyy-mm-dd hh24:mi:ss"))

    19 - access("J_OP_TEST_ANML".") TEST_ID "=" B_FP_TEST. " ("' TEST_ID")

    20 - filter("B_FP_TEST".") DATASOURCE_ID '= 9 AND 'B_FP_TEST'." ' IS_DELETED '= 0 AND 'B_FP_TEST'.' <>TEST_NUM ' 1 AND 'B_FP_TEST '. "" TEST_NUM "<>2 AND

    'B_FP_TEST '. ("' TEST_NUM" <>99)

    22 - filter("J_FP_INVESTIGATOR".") IS_PI "= 1)

    26 - filter("L_TEST_STATUS".") STATUS "="Finished"OR"L_TEST_STATUS"". "" STATUS '= 'In progress' OR 'L_TEST_STATUS'." STATUS "="Regular")"

    30 - filter("L_ATMS_TEST_TYPE".") IS_DELETED "= 0)

    34 - access("B_FP_TEST".") BATCH "=" L_TEST_STATUS. " ("' BATCH ')

    38 - filter("J_OP_TEST_ANML".") End_date"> = TO_DATE(' 2013-10-27 00:00:00', 'syyyy-mm-dd hh24:mi:ss') AND"J_OP_TEST_ANML. " "' End_date ' < = TO_DATE (' 2013-11-05)

    00:00:00 ', "syyyy-mm-dd hh24:mi:ss") AND (LNNVL ("J_OP_TEST_ANML". "Start_date" > = TO_DATE (' 2013-10-27 00:00:00 ',' syyyy-mm-dd hh24:mi:ss')) OR) "

    LNNVL ("J_OP_TEST_ANML". "Start_date" < = TO_DATE (' 2013-11-05 00:00:00 ',' syyyy-mm-dd hh24:mi:ss')))) "

    39 - access("J_OP_TEST_ANML".") TEST_ID "=" B_FP_TEST. " ("' TEST_ID")

    40 - filter("B_FP_TEST".") DATASOURCE_ID '= 9 AND 'B_FP_TEST'." ' IS_DELETED '= 0 AND 'B_FP_TEST'.' <>TEST_NUM ' 1 AND 'B_FP_TEST '. "" TEST_NUM "<>2 AND

    'B_FP_TEST '. ("' TEST_NUM" <>99)

    41 - filter("L_TEST_STATUS".") STATUS "="Finished"OR"L_TEST_STATUS"". "" STATUS '= 'In progress' OR 'L_TEST_STATUS'." STATUS "="Regular")"

    42 - filter("J_FP_INVESTIGATOR".") IS_PI "= 1)

    43 - access("B_FP_TEST".") TEST_ID "=" J_FP_INVESTIGATOR. " ("' TEST_ID")

    44 - access("B_FP_TEST".") TEST_TYPE_ID "=" L_ATMS_TEST_TYPE. " ("' ATMS_TEST_TYPE_ID")

    45 - filter("L_ATMS_TEST_TYPE".") IS_DELETED "= 0)

    50 - access("B_FP_TEST".") BATCH "=" L_TEST_STATUS. " ("' BATCH ')

    53 - access("B_FP_TEST".") TEST_ID "=" J_FP_INVESTIGATOR. " ("' TEST_ID")

    60 - filter("J_OP_TEST_ANML".") End_date"> = TO_DATE(' 2013-11-04 00:00:00', 'syyyy-mm-dd hh24:mi:ss') AND"J_OP_TEST_ANML. " "" Start_date "< = TO_DATE (' 2013-11-04)

    00:00:00 ', "syyyy-mm-dd hh24:mi:ss") AND (LNNVL ("J_OP_TEST_ANML". "End_date" > = TO_DATE (' 2013-10-27 00:00:00 ',' syyyy-mm-dd hh24:mi:ss')) OR) "

    LNNVL ("J_OP_TEST_ANML". "End_date" < = TO_DATE (' 2013-11-05 00:00:00 ',' syyyy-mm-dd hh24:mi:ss'))) AND (LNNVL ("J_OP_TEST_ANML".) " Start_date"> = TO_DATE (' 2013-10-27)

    00:00:00 ', "syyyy-mm-dd hh24:mi:ss")) or LNNVL("J_OP_TEST_ANML".") Start_date"< = TO_DATE (' 2013-11-05 00:00:00 ',' syyyy-mm-dd hh24:mi:ss'))))

    61 - access("J_OP_TEST_ANML".") TEST_ID "=" B_FP_TEST. " ("' TEST_ID")

    62 - filter("B_FP_TEST".") DATASOURCE_ID '= 9 AND 'B_FP_TEST'." ' IS_DELETED '= 0 AND 'B_FP_TEST'.' <>TEST_NUM ' 1 AND 'B_FP_TEST '. "" TEST_NUM "<>2 AND

    'B_FP_TEST '. ("' TEST_NUM" <>99)

    64 - filter("J_FP_INVESTIGATOR".") IS_PI "= 1)

    68 - filter("L_TEST_STATUS".") STATUS "="Finished"OR"L_TEST_STATUS"". "" STATUS '= 'In progress' OR 'L_TEST_STATUS'." STATUS "="Regular")"

    69 - access("B_FP_TEST".") TEST_TYPE_ID "=" L_ATMS_TEST_TYPE. " ("' ATMS_TEST_TYPE_ID")

    70 - filter("L_ATMS_TEST_TYPE".") IS_DELETED "= 0)

    75 - access("B_FP_TEST".") BATCH "=" L_TEST_STATUS. " ("' BATCH ')

    78 - access("B_FP_TEST".") TEST_ID "=" J_FP_INVESTIGATOR. " ("' TEST_ID")

    85 - filter("J_OP_TEST_ANML".") End_date"> = TO_DATE(' 2013-10-28 00:00:00', 'syyyy-mm-dd hh24:mi:ss') AND"J_OP_TEST_ANML. " "" Start_date "< = TO_DATE (' 2013-10-28)

    00:00:00 ', "syyyy-mm-dd hh24:mi:ss") AND (LNNVL ("J_OP_TEST_ANML". "End_date" > = TO_DATE (' 2013-11-04 00:00:00 ',' syyyy-mm-dd hh24:mi:ss')) OR) "

    LNNVL ("J_OP_TEST_ANML". "Start_date" < = TO_DATE (' 2013-11-04 00:00:00 ',' syyyy-mm-dd hh24:mi:ss'))) AND (LNNVL ("J_OP_TEST_ANML".) " End_date"> = TO_DATE (' 2013-10-27)

    00:00:00 ', "syyyy-mm-dd hh24:mi:ss")) or LNNVL("J_OP_TEST_ANML".") End_date"< = TO_DATE (' 2013-11-05 00:00:00 ',' syyyy-mm-dd hh24:mi:ss'))) AND)

    (LNNVL ("J_OP_TEST_ANML". "Start_date" > = TO_DATE (' 2013-10-27 00:00:00 ',' syyyy-mm-dd hh24:mi:ss')) or LNNVL ("J_OP_TEST_ANML".) " Start_date"< = TO_DATE (' 2013-11-05)

    00:00:00 ', "syyyy-mm-dd hh24:mi:ss")))

    86 - access("J_OP_TEST_ANML".") TEST_ID "=" B_FP_TEST. " ("' TEST_ID")

    87 - filter("B_FP_TEST".") DATASOURCE_ID '= 9 AND 'B_FP_TEST'." ' IS_DELETED '= 0 AND 'B_FP_TEST'.' <>TEST_NUM ' 1 AND 'B_FP_TEST '. "" TEST_NUM "<>2 AND

    'B_FP_TEST '. ("' TEST_NUM" <>99)

    89 - filter("J_FP_INVESTIGATOR".") IS_PI "= 1)

    93 - filter("L_TEST_STATUS".") STATUS "="Finished"OR"L_TEST_STATUS"". "" STATUS '= 'In progress' OR 'L_TEST_STATUS'." STATUS "="Regular")"

    94 - access("B_FP_TEST".") TEST_TYPE_ID "=" L_ATMS_TEST_TYPE. " ("' ATMS_TEST_TYPE_ID")

    95 - filter("L_ATMS_TEST_TYPE".") IS_DELETED "= 0)

    aanto wrote:

    Thanks for the update... but if we perform also using Toad... showing the same error...

    Thanks for this update, but it does not change the reality.

    If it hurts when you push you in the eyes, the only way to stop the pain should stop poking you in the eye.

    Oracle is not related ORA-00060 just to make life more difficult.

    ORA-000600 is thrown when a deadlock between two session is detected. PERIOD!

    The order in which the DML is run needs to change.

  • Cannot rename my PXI-4071 for something else that "PXI-4071" have the self-assessment work, and I can use the new name in the ivi drivers

    I tried to change the name of the PXI-4071 "DMM" that worked, but when I try to launch the "self-test" or open the app it Panel always fails.   This is also true if I pass the new name of the ivi driver.   Return to the name "PXI-4071" makes everything works again.   Note I managed to change the name of our PXI-2530 b 'SWITCH' and the name of our SMU-6363 to "MIO" and I could pass these names to their IVI drivers and they would work.

    I messed with alias VISA, IVI logical names, but nothing works unless it is called "PXI-4071.


  • If I bought the creative cloud edition can students today I Exchange it for something else?

    Please read

    To clarify, I bought the student creative cloud cause today edition, I need illistrator for a class as soon as possible and it also have other programs that I wanted and I could not afford to buy them all separately. That's why I bought creative clouds but then a few hours later I find the CS6 production premium student edition has all the programs that I wanted initially. After crushing, some numbers I realized I should of bought that instead of the cloud creative because I would have ended up paying much more for years driven to use it where that if I get the premium production Cs6 then I could save me a lot of money that I have not really much of already. So I guess what im asking is can I cancel my subscription that I just bought today and get stedent CS6 production premium edition without having to pay the 50%? or what is the best way for me to go about this where I lose the least amount of money? I looked through the help forums and tried my best to find the answers or help I need, but could not. I don't want to waste any time with my history of sobbing, but any help would be appreciated

    On Adobe's Web Site:

    If you buy a membership creative cloud directly from Adobe, you can return it within 30 days of purchase and get a full refund by calling your regional Adobe customer service center. The return process may differ for different countries or regions. Learn more about the return of products in North America or in Europe and Asia/Pacific. If you buy a creative cloud membership from a retailer and don't have not redeemed from your membership within the first 30 days of purchase, you can return it to the retailer for a full refund. If you buy your membership within 30 days, you must call the Adobe customer for your refund.

  • Cannot add new tab to look for something else while having another page up?

    I can't add new tabs to have different Web sites to the top at the same time, I click on add new tab and nothing happens. I have to do a whole new window please help?

    If you have the Ask toolbar, try to disable or uninstall.

    Tools > Modules > Extensions

  • ESXi vmnic connected to 20000 MB when waiting for 40000 MB

    Hi all
    I have 4 x B200M3 5u2 ESXi running blades in a single chassis UCS. They run a number of vSwitches, and all the connected vmnic show 40000 full duplex Mb (as expected).
    Yesterday, I added 2 B200M3 more (to slot 7 and 8), and I get only 20000 Mb on all the vmnic. The hosts are the same set up as the old via vCenter (although not not using the host profiles), and Service UCS profiles on new knives are clones of an existing blade.

    See attached screenshots...

    Does anyone have an idea of what this might be? Any help would be great.

    See you soon

    Yet one thing, you might hit the default below if you have the same hardware on all blades, including the two new b200 M3.

    You can also see the difference in the bandwidth if the new cards are one of the missing cards, it could be the port Expander or the 1280 or 1240 vic, is an expected behavior.

  • If I download files using Adobe Acrobat Pro DC, what are the limits on the number of downloads? I publish a set of PDF files every 3 months to about 1600 people. Is that allowed with this product, or should I register for something else?

    I need an affordable way to deliver a 20-20 MB of files PDF zip file every three months to about 1600 people. What program to do this? Load on the storage of Adobe site and then use an e-mail program to send the link to the recipients?

    Hello

    There is no limit to the number of downloads of a file shared on Adobe Document cloud. Please don't forget to create an anonymous link using 'Send & Track' app, and which can be shared with the participants as much as you want.

    Thank you!

  • Creation function Interior package Error (15,3): PLS-00103: encountered the symbol ";" when expecting one of the following values: back

    Hello

    I am trying to create a function inside the packaging.

    In the Package BODY I've defined the function, but in the definition of the package, it gives me syntax errors.

    • Error (15,3): PLS-00103: encountered the symbol ";" when expecting one of the following values: back
    • Error (39.1): PLS-00103: encountered the symbol "END" when waiting for one of the following values: start the function pragma procedure subtype type current cursor removal exist prior

    What can I do wrong here.

    Thank you

    Ken

    Inner package BODY:

    / * FUNCTION to form the query * /.

    FUNCTION UDF_FORMQUERY)

    IN_CASEID VARCHAR2,

    IN_SRCLYR VARCHAR2,

    IN_SRC_CONDN VARCHAR2

    )

    RETURN VARCHAR2

    AS

    varSQLQuery VARCHAR2 (10000);

    BEGIN

    varSQLQuery: = "test query";

    RETURN varSQLQuery;

    DBMS_OUTPUT. Put_line (varSQLQuery);

    END UDF_FORMQUERY;

    Definition of package inside:

    create or replace PACKAGE BODY MY_SQUERY

    AS

    FUNCTION UDF_FORMQUERY)

    IN_CASEID VARCHAR2,

    IN_SRCLYR VARCHAR2,

    VARCHAR2 IN_SRC_CONDN( )

    RETURN VARCHAR2

    AS varSQLQuery VARCHAR2 (10000);

    END MY_SQUERY;

    your package definition is incorrect, you have included the part of the declaration of the variables of the function in the package definition. It should be like

    FUNCTION UDF_FORMQUERY)

    IN_CASEID VARCHAR2,

    IN_SRCLYR VARCHAR2,

    IN_SRC_CONDN VARCHAR2)

    RETURN VARCHAR2;

  • When I type something in the search box, it will in https mode and when I continue searching that nothing happens, IE search engine does not react. Thank you.

    When I type in the search box 1st time the Google page looks fine in https mode, but when I want something else type in the search box, nothing happens.

    You can check whether DOM Storage is enabled.

    You can check the pref (s) dom.storage.enabled on the topic: config page.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > content caching Web: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance).

    • Do not click on the reset button on the start safe mode window or make changes.
  • If the current image == 1 dosomething... else (currentFrame == 2) do something else. Does not.

    Im having a bit of trouble trying to do a button give me different results depending on which frame the main timeline is on.

    I'm trying to get a button to access a link different based on which frame the main scenario is on.  If I'm on the 5 framework it will trace back "4"... It's good but the other frames trace number of the framework and also 4.

    Click on button box 2 tracks 1 and 4

    on chassis 3 button redraws the 2 and 4

    Click on button frame 4 tracks 3 and 4

    Click on button frame 5 traces back 4

    Thanks for your advice.

    function buttonClicked(e:Event):void
    {
         if(currentFrame == 2)
         {
              trace("Clicked 1");
         }
         else if(currentFrame == 3)
         {
              trace("Clicked 2");
         }
         else if(currentFrame == 4)
         {
              trace("Clicked 3");
         }
         else (currentFrame == 5)
         {
              trace("Clicked 4");
         }
    }
    
    

    You have an another misstake (currentFrame == 5) do nothing, but it is used for something else. After this trace ("clicked 4"); is simple command

    or in other words:

    another (currentFrame == 5)
    {
    trace ("4 click");

    }

    is equal to

    another (currentFrame == 5)

    trace ("4 click"); It will always be executeds

  • I'm looking for something, or even click on a link "for you", that he - and nothing else than the spinning wheel.

    I'm looking for something, or even click on a link "for you", that he - and nothing else than the spinning wheel.

    It is easier to go to YouTube, which I prefer not to do.

    < published by host >

    It's real comments to your message:

    You talk to other users here, not to Apple directly.

    Click below and select the product (s) on which you have any concerns or suggestions:

    http://www.Apple.com/feedback/

    Then select your product

    When you contact Apple to give them feedback, note the statement at the top of this page:

    'Use the form below to send us your comments. We read all comments

    carefully, but please note that we cannot respond to comments you

    submit. »

  • Download a file should implement an option to open the file or save it - for some reason any now just downloading it straight to the download folder. Why? Problem with Firefox or something else?

    Download a file would normally bring up an option to open the file with the appropriate program or save it - for some reason any now just downloading it straight to the download folder. Why? Problem with Firefox or something else? It is very frustrating - sometimes, you want the first opened file so it can be discarded or stored in a different location.

    Find the type of file in the Firefox -> Options -> Applications Panel, open its menu drop-down and select 'ask '. To reset all the actions of download, delete the mimeTypes.rdf file in your Firefox profile folder (or rename the mimeTypes.rdf X if you want to save as a backup). The file will be regenerated with all types of files, restore the default actions.

    For more information, see application Panel - set how Firefox handles different file types and change what Firefox does when you click on or download a file .

Maybe you are looking for

  • Re: Tempro does not work

    I tried in vain to install Windows 7 SP1 on two different computers and oudu to my T110 in 64-bit operating system restore to get rid if I now get warnings on this Tempro starting does not work, as well as all the Accessories programs associated with

  • How to find CVI4.0.1

    Hello, I need to reinstall CVI4.0.1, I got the license but lost the disk, and I can not find it on this site.

  • Pavilion dv7 WC159EA #ABU: the fan RPM increases a lot whenever I plug my battery

    I recently bought a new battery for my laptop and when I plug it, while my charger is plugged, the fan THAT RPM increases as if I use 100% CPU at 100% of RAM. Could it be caused by the new battery? I have a hp dv7-3111ea and bought this battery http:

  • ProBook 470 G0 memory ypgrade

    I bought a laptop HP directly from HP UK and a 4 GB module. I installed the module, but whenever the computer starts, it displays the following screen: http://postimg.org/image/r35y6hy1j/ Any ideas?

  • password for administrators

    How can I connect Windows when I forgot my password