Error insert using statement with subquery and prepared partition

Connection Conn = null;
PreparedStatement stmt = null;
final StringBuilder lSql = new StringBuilder();
lSql.append ("INSERT INTO table1");
lSql.append ("(Colonne1, Colonne2, column_group, column_sequence )" ");
lSql.append ("VALUES");
lSql.append ("(?,?,?, (selection from table1 (PARTION column_group max (column_sequence) + 1)) " ");)
...

the query was operating normally, the error occurred after you enter the code in red.

Normally, I would ask: what error you are getting? And what channel the operation generates?

But "select (...) over" ist lacks at least one feature after select: over clause is used for analytical functions and has the form: SELECT a_function() OVER (...) - and without the function I expect an error.

Maybe:

Select max (column_sequence) + 1 MORE (PARTION column_group) from table1

might be what you want. At least it's a plausible use of the analytical function; but I guess she returns several rows and so it will not help in a clause of insert values.

Tags: Database

Similar Questions

  • Open with options: I want to add a new application to the list right click on file-> open with and rearrange the list so my search app is first. I know that I can use open with-> other and select any application, but it takes too much time since I u

    I want to add a new application to the list right click on file-> open with

    and also reorder the list so my search app is first / top of the list.

    I know that I can use open with-> other and select any application, but it takes too long I should use my intended application in this way several times a day.

    Basically, I'm looking for a configurable way configure open with, something more to send to Windows.

    Thank you very much for all the advice offered.

    The operating system, not you, not control that open with the menu command.

  • Certificate error when you use AnyConnect with AD and SecurID auth on a few clients

    Hello

    We have a set ASA5510 in place with AnyConnect Essentials, with clients that connect both XP and Win7.

    This works as expected on most clients, but on the 3 XP clients, we get a strange error.

    They identify installed software and connects successfully the first time.

    Each attempt to connect after that, they get a message saying "VPN connection interrupted, the certificate is not found on the smart card or smart card does not exist".

    We use certificates for authentication at all (only LDAP and securid).

    Try to connect with a good name of user and password known on one of these computers, gives the same error.

    Connection with one of the users on a well-known work VPN setup/PC problem works every time.

    If remove us the AnyConnect Client of a computer problem, and then it installs again, it works the first time (as before).

    Then, all attempts after that gives the error of samme.

    The connection profile and the settings for the affected users are identical to all the others who work.

    What could be the problem?

    upgrade to

    3.0.5075 solved my problem

  • SQL statement error INSERT The conflicted with the FOREIGN KEY constraint

    I recently installed a reporting for vmware vsphere software, but I get a SQL error. I opened a request for assistance with vmware, but so far they have not come up with a solution. The error is caused by: com.microsoft.sqlserver.jdbc.SQLServerException: instruction INSERT The conflicted with the FOREIGN KEY constraint 'FK_CB_VSM_NETWORK_VC_ID '. The conflict occurred in database 'VCChargebackVCC02', table "dbo." " CB_VSM_SERVER', column 'VC_ID '. I don't know a lot about SQL, so I'm lost in the extent of troubleshooting is concerned. If anyone has any ideas I'd love to hear them.

    SQL questions are better posed on Technet.  They are better equipped to manage the

    http://social.technet.Microsoft.com/forums/en-us/categories/

  • Bad error parameter to insert page number with header and footer.

    Hi I use Adobe Acrobat standard version 7.0.  I am not able to insert page number in the option "header and"footer. "  invited error message like "invalid parameter."  Help, please

    The only available version is DC. You can purchase a permanent license or subscription, which includes future updates. You are at least 7 years too late for a reduced price upgrade.

    I recommend that you use the fi free trial CD on ANOTHER COMPUTER to see if the problem is corrected. Once you uninstall 7 you will be NEVER BE ABLE TO REINSTALL.

  • Insert the statement with the subquery to insert several lines

    Hi friends,

    Please find below mentioned query and error. Also suggest me to go forward.

    SQL > INSERT INTO FM_TRAN_DOC_NO (TDOC_COMP_CODE,

    2 TDOC_TRAN_CODE,

    TDOC_ACNT_YEAR 3,.

    TDOC_CUR_NO 4,.

    TDOC_MAX_NO 5,.

    TDOC_CAL_YEAR 6,.

    TDOC_PERIOD 7,.

    TDOC_DIVN_CODE 8,.

    TDOC_DEPT_CODE 9,.

    TDOC_CR_UID 10,

    TDOC_CR_DT 11,

    TDOC_UPD_UID 12,

    13 TDOC_UPD_DT)

    14 SELECT '001',

    15 (SELECT DISTINCT FM_TRAN_DOC_NO TDOC_TRAN_CODE

    16               '6',

    17               '0',

    18 '9999',

    19 NULL,

    20 NULL,

    21 NULL,

    22 NULL,

    23 "AGT,"

    24 TO_DATE (SYSDATE),

    25 NULL,

    26 TO_DATE (SYSDATE) FROM DUAL;

    (SELECT DISTINCT FM_TRAN_DOC_NO TDOC_TRAN_CODE),

    *

    ERROR on line 15:

    ORA-01427: einreihig subquery returns multiple rows

    +Untested.

    When values except 'TDOC_TRAN_CODE' are hardcoded, there is no need to select double.

    Something like that?

    INSERT INTO FM_TRAN_DOC_NO)

    TDOC_COMP_CODE,

    TDOC_TRAN_CODE,

    TDOC_ACNT_YEAR,

    TDOC_CUR_NO,

    TDOC_MAX_NO,

    TDOC_CAL_YEAR,

    TDOC_PERIOD,

    TDOC_DIVN_CODE,

    TDOC_DEPT_CODE,

    TDOC_CR_UID,

    TDOC_CR_DT,

    TDOC_UPD_UID,

    TDOC_UPD_DT

    )

    SELECT DISTINCT

    '001',

    TDOC_TRAN_CODE,

    « 6 »,

    '0',

    "9999",

    NULL,

    NULL,

    NULL,

    NULL,

    "AGT,"

    TO_DATE (SYSDATE),

    NULL,

    TO_DATE (SYSDATE)

    OF FM_TRAN_DOC_NO;

  • Remove the statement with subquery with more than 1 columns

    Hi all

    I want to delete the data in the kpi_logs table for which the kpi_def_id column is less than the max (timestamp). The timestamp is the date data type. I wrote below query but its throwing an error as an SQL error: ORA-00936: lack of expression.

    DELETE FROM KPI_LOGS WHERE (Select MAX (TIMESTAMP), KPI_DEF_ID of the KPI_DEF_ID KPI_LOGS GROUP);

    Hello

    user12251389 wrote:

    I want to delete the data in the kpi_logs table for which the kpi_def_id column is less than the max (timestamp). The timestamp is the date data type. I wrote below query but its throwing an error as an SQL error: ORA-00936: lack of expression.

    DELETE FROM KPI_LOGS WHERE (Select MAX (TIMESTAMP), KPI_DEF_ID of the KPI_DEF_ID KPI_LOGS GROUP);

    Whenever you have a question, please post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and the accurate results you want from this data, so that people who want to help you can recreate the problem and test their ideas.

    If you ask about a DML operation, such as DELETE, and INSERT statements, you post should show what looks like the tables before the DML, and the results will be the content of the table changed after the DML.

    Explain, using specific examples, how you get these results from these data.

    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum:

    You want to keep only the maximum timestamp for the entire table, or you want the maximum timestamp for each distinct value of kpi_def_id?

    If it is just the maximum timestamp for the whole picture, then

    DELETE FROM kpi_logs

    WHERE the timestamp<>

    SELECT MAX (timestamp)

    OF kpi_logs

    );

    If you want to keep the maximum timestamp for each individual value phew kpi_def_id, then:

    DELETE FROM kpi_logs

    WHERE (kpi_def_id, timestamp NOT IN)

    SELECT kpi_def_id

    MAX (timestamp)

    OF kpi_logs

    GROUP BY kpi_def_id

    );

    assuming that no column can be NULL.

    Moreover, the TIMESTAMP is a data type, similar to this DAY.  You'll only cause confusion by saying it is a type of data when it is really another.  In addition, TIMESTAMP is a keyword from Oracle, is not a very good column name.  Why not give your column a name more meaningful, accurate, such as create_date or entry_dt?

  • ORA-00600: internal error code, arguments: [qmcxeExUseLoc93] with xmltable and big bows in the CLOB column

    Hi all

    Running the following:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    PL/SQL Release 11.2.0.2.0 - Production

    "CORE 11.2.0.2.0 Production."

    AMT for IBM/AIX RISC System/6000: Version 11.2.0.2.0 - Production

    NLSRTL Version 11.2.0.2.0 - Production

    Create a view of a relational table and XMLTABLE and extract nodes from voluminous of the xmltable, mapped text using COLUMNS. I concatenate the text nodes in an xml element in the XQuery xmltable, simple sequencing:

    <CONTENT>
    {$i/summary/text(),$i/know/text(),$i/considerations/text(),$i/look_for/text(),
    $i/nc//text(),$i/level1//text(),$i/level2//text(),$i/ipocc//text()}
    </CONTENT>
    

    SQLDeveloper query execution and right on when I scroll the 50th outcome accordingly set or... DB connection is closed and stack following error appears:

    [ORA-00600: internal error code, arguments: [qmcxeExUseLoc93], [], [], [], [], [], [], [], [], [], []]

    00600 00000 - "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s] '.

    * Cause: It's the generic internal error for Oracle program number

    exceptions.    This indicates that a process has encountered a

    Exceptional condition.

    * Action: Report as a bug - the first argument is the internal error number

    I went site Oracle Support to use the 'search' for these types of errors, but he found nothing to the argument: "qmcxeExUseLoc93"... any ideas short of opening an SR with Oracle support? S/n reports that no problems with memory or tablespace... trace files report a stack trace is complete:

    [ORA-00600: internal error code, arguments: [qmcxeExUseLoc93], [], [], [], [], [], [], [], [], [], []]

    = Dump for incident 32114 (ORA 600 [qmcxeExUseLoc93]) =.

    2014-04-08 07:31:51.369

    dbkedDefDump(): from the default crash dumps (flags = 0x2, level = 3, mask = 0 x 0)

    -Run SQL statement for the current session (sql_id = 0qn4zxr0stgjh).

    SELECT ID, CONTENT of ort_active_content_en_vw

    -Call trace stack memory-

    call call entered the argument values in hex

    location point type (? means dubious value)

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

    skdstdst () + 40 bl 107ca 9980 FFFFFFFFFFD99A8? 000002004?

    000000001? 000000003?

    000000000? 000000002?

    000000001? 000000000?

    ksedst1 () + 104 call skdstdst() FFFFFFFFFFD89B0? 000002004?

    110641000? 1098C 1164?

    110641000? 000000000?

    FFFFFFFFFFD8AE0? 700000007?

    ksedst () + 40 call ksedst1() 3030000000000? 002050033?

    1098C 1158? 700000000025C?

    000000000? 000000000?

    1098C07B8? 000000000?

    dbkedDefDump (+ 2828) call ksedst() FFFFFFFFFFD8B90? 000000000?

    000000000? 000000000?

    000000000? 000000000?

    000000000? 300000003?

    …….

    -Binary stack dump-

    = FRAME [1] (skdstdst () + 40 - > 107ca 9980) =.

    defined by pointers frame 0xffffffffffd88b0 and 0xffffffffffd8840

    CALL TYPE: bl ERROR REPORTED: no COMPONENT: (null)

    0xffffffffffd8840 to 0xffffffffffd88b0 memory dump

    FFFFFFFFFFD8840 0FFFFFFF FFFD88B0 42422220 098C 1158 [...] BB '... X]

    08EBE70C FFFFFFFFFFD8850 00000001 00000001 10641000 [... d..]

    FFFFFFFFFFD8860 00000000 00000000 0FFFFFFF FFFD89E8 [...]

    FFFFFFFFFFD8870 0FFFFFFF FFFD99A8 00000000 00002004 [...].

    FFFFFFFFFFD8880 00000003 00000000 00000000 00000001 [...]

    FFFFFFFFFFD8890 00000000 00000000 00000000 00000002 [...]

    FFFFFFFFFFD88A0 00000000 00000001 00000000 00000000 [...]

    = SETTING [2] (ksedst1 () + 104-> skdstdst()) =.

    defined by pointers frame 0xffffffffffd89b0 and 0xffffffffffd88b0

    TYPE of CALL: call ERROR REPORTED: no COMPONENT: KSE

    0xffffffffffd88b0 to 0xffffffffffd89b0 memory dump

    FFFFFFFFFFD88B0 0FFFFFFF FFFD89B0 42422220 10317 68 A... 1zh BB"]

    FFFFFFFFFFD88C0 1033F758 00000001 00000001 0014963C [... <...] 3.X]

    FFFFFFFFFFD88D0 09ED0CA9 1873F04F 28422848 73743231... Sagna (B (Hst21]

    FFFFFFFFFFD88E0 0FFFFFFF FFFD89B0 00000000 00002004 [...].

    FFFFFFFFFFD88F0 00000001 00000001 10641000 098C 1164 [... d...d]

    FFFFFFFFFFD8900 00000001 10641000 00000000 00000000 [... d...]

    ……

    -Status of the Dump process (2).

    ===================================================

    STATE OF THE PROCESS

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

    Global information process:

    process: 0x700000012b18de8, call: 0x70000000b880ee0, xact: 0x0, curses: 0x700000012bf11f0, usrses: 0x700000012bf11f0

    in_exception_handler: no

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

    SO: 0x700000012b18de8, type: 2, owner: 0x0, flag: INIT /-/-/ 0x00 if: 0 x 3 c: 0 x 3

    proc = 0x700000012b18de8, name = process, queue = ksu.h LINE: 12451 ID:, pg = 0

    (process) Oracle pid:42, ser:153, called heart/high: 0x70000000b880ee0/0x70000000b880ee0

    flags: (0x0).

    Flags2: (0 x 800), flags3: (0x0)

    Intr error: call error 0,: 0, sess error: error of txn, 0, 0

    queue intr: vacuum

    ksudlp FALSE to the location: 0

    (post info) last message received: 0 0 0

    Last message received-card: no post

    last process affect me: no

    Last message sent: 0 0 26

    Last message sent-map: ksa2.h LINE: 282 ID:ksasnd

    last process posted by me: 6 1 700000012af9058

    (info from latch) wait_event = 0 bits = 0

    Process group: by DEFAULT, proc pseudo: 0x700000012b4db88

    Info of the o/s: user: tst214, duration: UNKNOWN, ospid: 4370650

    OSD pid Info: Unix process pid: 4370650, image: oracle@mldb2385

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

    SO: 0x700000010430ba0, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de3758 incno = 0 waiting for IO cnt = 0

    fname=/tst214_01/oradata/TST214/temp01.dbf

    FNO = 201 lblksz = 8192 fsiz = 36608

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

    SO: 0 x 700000010430578, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de2b40 incno = 0 waiting for IO cnt = 0

    fname=/tst214_03/oradata/TST214/ort_data01.dbf

    FNO = 6 lblksz = 8192 fsiz = 25600

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

    SO: 0x70000001042ff38, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de1310 incno = 0 waiting for IO cnt = 0

    fname=/tst214_01/oradata/TST214/sysaux01.dbf

    FNO = 2 lblksz = 8192 fsiz = 89600

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

    SO: 0x70000001042f910, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de0d10 incno = 0 waiting for IO cnt = 0

    fname=/tst214_01/oradata/TST214/System01.dbf

    FNO = 1 lblksz = 8192 fsiz = 96000

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

    SO: 0x700000012bf11f0, type: 4, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: 0 x 3 c: 0 x 3

    proc = 0x700000012b18de8, name = session, lead = ksu.h LINE: 12459 ID:, pg = 0

    (session) sid: 41 ser: 1263 trans: 0x0, creator: 0x700000012b18de8

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

    Flags2: (0 x 40008) - / -.

    DID:, DID in the short term:

    TXN branch: 0x0

    Oct: 3, prv: 0, sql: 0x70000000c59dbd0, psql: 0x70000000b196c38, user: 73/ORT_READ

    ksuxds FALSE to the location: 0

    name of the service: the USERS of SYS$

    Customer details:

    Info of the o/s: user: norman.jonker, duration: unknown, ospid: 6224

    machine: G4021165 program: SQL Developer

    application name: SQL Developer, hash value = 1012150930

    Battery active waiting:

    No waiting; last waiting ended 2,617517 sec ago

    Wait state:

    fixed_waits = 0 flags = 0 x 21 limit = 0 x 0 /-1

    History of waiting for session:

    elapsed time of 2,617552 sec from last wait

    0: waiting for 'direct path read '.

    number = 0 x 6, first s/n = 0 x 2901, block cnt = 0 x 2

    wait_id = 2222 seq_num = 2223 snap_id = 1

    wait time: snap = 0,000035 s, exc = 0,000035 s, total s = 0,000035

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,029003 seconds time elapsed

    1: expected "asynch descriptor resize.

    #aio in circulation = 0 x 0, the current limit of aio = 0xc8, this capping aio = 0 x 145

    wait_id = 2221 seq_num = 2222 snap_id = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = 307445734561 min 49sec

    wait charges: calls = 0 os = 0

    After 0,000710 seconds time elapsed

    "2: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2220 seq_num = 2221 snap_id = 1

    wait time: snap = 0,000005 dry, exc = 0,000005, total = 0,000005 sec

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,001452 seconds time elapsed

    3: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2219 seq_num = 2220 snap_id = 1

    wait time: snap = 0,499033 s, exc = 0,499033 s, total s = 0,499033

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000034 seconds time elapsed

    "4: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2218 seq_num = 2219 snap_id = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000048 seconds time elapsed

    5: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2217 seq_num = 2218 snap_id = 1

    wait time: snap = 0,061319 s, exc = 0,061319 s, total s = 0,061319

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000028 seconds time elapsed

    "6: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2216 seq_num = snap_id 2217 = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000048 seconds time elapsed

    7: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2215 seq_num = 2216 snap_id = 1

    wait time: snap = 0,063435 s, exc = 0,063435 s, total s = 0,063435

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000045 seconds time elapsed

    "8: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2214 seq_num = 2215 snap_id = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000070 seconds time elapsed

    9: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2213 seq_num = 2214 snap_id = 1

    wait time: snap = 0,060780 s, exc = 0,060780 s, total s = 0,060780

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000030 seconds time elapsed

    The Session history sampled session 1263 series 41

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

    History of the sampled session is built by sampling

    the session target all the 1 second. The sampling process

    capture to each sample, if the session is in an active waiting.

    a wait inactive, or not in a wait. If the session is in a

    active wait interval then one is indicated for all samples

    the session was in the same active waiting. If the

    session is in an inactive waiting or not waiting for

    consecutive samples then one interval is indicated for all

    consecutive samples. If we post these consecutive

    samples in a single interval session may NOT be permanently

    inactive or not in a wait (the sampling process is unclear).

    The history is displayed in reverse chronological order.

    sampling interval: 1 s, max 120 sec history

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

    [3 samples, 07:31:51 - 07: 31:53]

    not waiting at each sample

    [18 samples, 07:31:33 - 07: 31:50]

    waiting in each sample slowed

    [2 samples, 07:31:31 - 07: 31:32]

    not waiting at each sample

    [42 samples, 07:30:49 - 07:31:30]

    waiting in each sample slowed

    [4 biopsies, 07:30:45 - 07: 30:48]

    not waiting at each sample

    [7 samples, 07:30:38 - 07: 30:44]

    waiting in each sample slowed

    [sample 1, 07:30:37]

    waited for ' SQL * Net break/reset for customer ', seq_num: 1149

    P1: 'driver id' = 0 x 54435000

    P2: 'pause '? = 0 x 0

    P3: "= 0x0

    time_waited: 0,013444 sec (sampling interval: 0 sec)

    [14 samples, 07:30:23 - 07: 30:36]

    waiting in each sample slowed

    [4 biopsies, 07:30:19 - 07: 30:22]

    not waiting at each sample

    [26 samples, 07:29:53 - 07:30:18]

    waiting in each sample slowed

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

    History of the sampled plenary:

    longest_non_idle_wait: ' SQL * Net break/reset for customer '

    [sample 1, 07:30:37]

    time_waited: 0,013444 sec (sampling interval: 0 sec)

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

    the temporary object counter: 2

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

    Virtual discussion:

    kgskvt: 700000011f06658, sess: 700000012bf11f0 sid: 41 ser: 1263

    VC: 0, proc: 700000012b18de8, id: 41

    News consumer group: OTHER_GROUPS (upd? 0) maps: DEFAULT_CONSUMER_GROUP, orig:

    vt_state: 0x100, vt_flags: 0xA030, blkrun: 0, numa: 1

    inwait: 0

    place where last insched series: kgskthrrun

    place where insched last reset: kgskthrrun2

    place where inwait the last value: NULL

    place where inwait last reset: kgskbindfast

    is_assigned: 1, in_sched: 0 (0)

    QCLs: 0, qlink: FALSE

    vt_active: 0 (pending: 1).

    vt_pq_active: 0, dop: 0

    used quanta: 0 (cg: 0) usec, num penalty: 0

    start of CPU time: 0

    idle time: 0, time: 0 (cg: 0)

    yields of processor: 0 (cg: 0), expected: 0 (cg: 0), wait time: 0 (cg: 0) usec

    e/s expected: 0 (cg: 0), wait time: 0 (cg: 0) usec

    ASL in queue wait times: 0, time: 0 (NEWS 0, 0 cg)

    PQQ in queue wait times: 0, time: 0 (NEWS 0, 0 cg)

    Violation of the time to wait in queue: 0

    aborted calls: 0, num is exec hit limit: 0

    Cancel current: max k 0: 0 k

    I/O credits: small = 0 General = 0

    I/O waiting credits: small = 0 General = 0

    KTU Session Commit Cache Dump for IDLs:

    XID: 0x0009.008.00002025 RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0006.018.00001f5a RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0009.015.00002024 RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0005.004.00001f30 RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0006.021.000011ed RCS: flg 0x0000.00cd4e90 = 0x1

    KTU Session Commit Cache Dump for Non-IDLs:

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

    KKS - UOL used: 0 locks (used = 19, free = 3)

    KGX atomic operation Log 70000000b30a840

    Mutex 0 (0, 0) oper idn 0 NONE

    Cursor Parent uid 41 DTS 4 w/h 7 slp 0

    Oper = pt1 NONE = 0 pt2 pt3 0 = 0 =

    PT4 = 0 = 0 = 0 stt u41

    KGX atomic operation Log 70000000b30a890

    Mutex 0 (0, 0) oper idn 0 NONE

    parasite of the slp whr 6 table uid 41 DTS torrent 4 0

    Oper = NONE pt1 = 70000000d1485e8 pt2 = pt3 148678 = 0 70000000d

    PT4 = 0 = 0 = 0 stt u41

    KGX atomic operation Log 70000000b30a8e0

    Mutex 0 (0, 0) oper idn 0 NONE

    FSO uid 41 DTS mutex 0 w/h 0 slp 0

    KGX atomic operation Log 70000000b30a930

    Mutex 0 (0, 0) oper idn 0 NONE

    FSO uid 41 DTS mutex 0 w/h 0 slp 0

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

    KGL - UOL SO Cache (total = 182, free = 107)

    KGX atomic operation Log 70000000 b 045538

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache uid 41 DTS 5 w/h 85 slp 0

    Oper = 0 = 70000000b 227350 pt2 = pt3 = 0 70000000c5df180 pt1

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000 b 045590

    Mutex (0, 0) 70000000c5b11d8 idn 69fd5d60 oper NONE

    Library Cache uid 41 DTS 4 w/h 77 slp 0

    Oper = pt1 pt2 70000000934fb60 0 = = 0 = 0 pt3

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000b0455e8

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache uid 41 DTS 4 w/h 79 slp 0

    Oper = 0 = 70000000b 225950 pt2 = pt3 = 0 70000000c382cb8 pt1

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000 b 045640

    Mutex (0, 0) 70000000b225a80 idn ae8e84f6 oper NONE

    Library Cache uid 41 DTS 4 w/h 70 slp 0

    Oper = 0 = 70000000b 225950 pt2 = 0 = 0 pt3, pt1

    PT4 = pt5 0 = 0 ub4 = 4

    KGX atomic operation Log 70000000 b 045698

    Mutex (0, 0) 70000000b225a80 idn ae8e84f6 oper NONE

    Library Cache uid 41 DTS 4 w/h 70 slp 0

    Oper = 0 = 70000000b 225950 pt2 = 0 = 0 pt3, pt1

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000b0456f0

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache 41 DTS uid 0 w/h 0 slp 0

    Oper = pt1 pt2 = pt3 0 = 0 0 = 0

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000 b 045748

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache 41 DTS uid 0 w/h 0 slp 0

    Oper = pt1 pt2 = pt3 0 = 0 0 = 0

    PT4 = 0 = 0 = 0 ub4 pt5

    KGL SO hide

    SO = 70000000c5df180 link = 70000000c5df1f0 [70000000b115e38, b 70000000, 045520]

    FLG = 8000 use its 700000012bf11f0 = 700000012bf11f0 =

    SO = 70000000b115dc8 link = 70000000b115e38 [70000000c5df380, 70000000c5df1f0]

    FLG = 8000 use its 700000012bf11f0 = 700000012bf11f0 =

    SO = 70000000c5df310 link = 70000000c5df380 [70000000c7abab8, 70000000b115e38]

    FLG = 8000 use its 700000012bf11f0 = 700000012bf11f0 =

    Hello

    I'm not saying that it will solve the problem, but you must use XMLCast in this case, not XMLSerialize.

    Try also with fn:local - name instead (unless you need information namespace as well):

    Select (xmlcast)

    XMLQUERY)

    "for $dcrContent in fn:collection("oradb:/PUBLIC/DATA_CAPTURE_RECORD_CONTENT") / ROW.

    where $dcrContent/DATA_CAPTURE_RECORD_CONTENT_ID = xs:decimal ($id)

    "return fn:local - name($dcrContent/CONTENT_XML/*)"

    from 608 as "id".

    contents of return

    )

    as varchar2 (100)

    )

    Double;

  • Insert the graphic with hotspots and hyperlinks in Adobe Muse

    I created a map in Fireworks which includes many hotspots with links to external resources.  Should what format I save to use the map in Adobe Muse?  How can I insert it into my Muse to have site links work?  Specifically, when you click on a State, I want to take the user to the designated external site.

    Export the file on a file .html and import in object/import .html Muse are the only way to bring in the Muse external .html files.

    I don't think that approach will work with Fireworks, because I think that you can only export PNG or JPEG files into slices (not sure if do not have to use the program for some time)

    The best approach I see is to import the card (such as a PNG or jpeg file) into Muse, and then create the hot/hyperlinks inside the Muse points. It would be much easier in the long run, especially if you have to make updates or additions.

  • Firefox 38.0.1 get up errors in the console with JS and CSS htaccess enabled compression

    Hello

    I worked on improving the performance on my Wordpress site, one of the things I've done, I switched to a dynamic delivery of CSS and JS files (so they are compressed by PHP), which has worked very well for the performance tests.

    Now, I ALSO added it to the .htaccess in my JS and CSS (wp - TTC) file on a wordpress site:

    <filesMatch "\.(js|css)$">
    Header set Content-Encoding x-deflate
    # Header set Content-Encoding compress
    # Header set Content-Encoding x-gzip
    </filesMatch>

    to compress JS and CSS files. It works fine on IE, CSS, Android and speed, but the wrong tests, is that the site seems broken in Firefox 38.0.1, it can not load my menus and revolution Slider (image carousel).

    main error seems to be jQuery is not defined...

    Here's a montage that shows thedl.dropboxusercontent.com/u/28979877/FirefoxErrorsCollage.png errors...https://

    is there anything else that I could change in this .htaccess syntax that make each happy browser?

    any thoughts?

    Thank you very much
    Gabrio

    Hello

    I have disabled the function of .htaccess for now...

    We discovered (with assistance from Frank Autoptimize, I can TOTALLY recommend also, it's great!) said that he could not work because that makes the output is compressed, but not actually... compression. If firefox is right, others wrong.

    This should be used, IF the server supports it (ours is not because it is just shared):

    < IfModule mod_deflate.c >

            <FilesMatch "\.(js|css)$">
            SetOutputFilter DEFLATE
        </FilesMatch>
    </IfModule>
    

    so for now, I removed the .htaccess to compress JS and CSS files and FF is happy now.

    Thank you
    Gabrio

  • Error SSL using the neutrons API and CLI directly on controller nodes

    VIO vSphere 6.0 + 1.0 + NSX

    I am trying to execute the following code segment:

    credentials of 139 = get_credentials()

    Neutron 140 = customer. Customer ('2.0',

    141 username = credentials ['username'],

    142 = credentials ["password"] password,

    143 auth_url = credentials ["auth_url'],

    144 tenant_name = ['tenant_name'] credentials,

    145 endpoint_url = credentials ['url'],

    146 = ['token'] credentials token,

    147 insecurity = True)

    response of 148 = neutron.list_ports)

    When I run the Python script, it error the following:

    Traceback (most recent call changed):

    File "getMACAddr.py", line 148, < module >

    response = neutron.list_ports)

    File "/ usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 111, in with_params

    RET = self.function (instance, * args, * kwargs)

    File "/ usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 306, in list_ports

    * _params)

    File "/ usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1250, in the list

    for r in self._pagination (collection, path, * params):

    File "/ usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1263, in _pagination

    RES = self.get (path, params = params)

    File "/ usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1236, in get

    headers = headers, params = params)

    File "/ usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1221, in retry_request

    headers = headers, params = params)

    File "/ usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1156, in do_request

    RESP, replybody = self.httpclient.do_request (action, method, body = body)

    File "/ usr/lib/python2.7/dist-packages/neutronclient/client.py", line 192, in do_request

    * kwargs)

    File "/ usr/lib/python2.7/dist-packages/neutronclient/client.py", line 148, in _cs_request

    throw exceptions. SslCertificateValidationError (reason = e)

    neutronclient.common.exceptions.SslCertificateValidationError: SSL certificate validation failed: [Errno-1] _ssl.c:510: error: 140770 CF: protocol SSL routines: SSL23_GET_SERVER_HELLO:unknown

    The /var/log/neutron/server.log file has the following corresponding entry for when the script tries to establish the connection:

    2015-04-11 07:17:31.941 2096 INFO neutron.wsgi [---] (2096) accepted ('10.27.16.164', 34495)

    When I run the CLI from the same controller node, I get the error with or without the - indicator of insecurity:

    ports of neutron root@controller02:/tmp#-Liste

    SSL certificate validation failed: [Errno-1] _ssl.c:510: error: 140770 CF: protocol SSL routines: SSL23_GET_SERVER_HELLO:unknown

    root@controller02:/tmp# neutron - insecure port-list

    SSL certificate validation failed: [Errno-1] _ssl.c:510: error: 140770 CF: protocol SSL routines: SSL23_GET_SERVER_HELLO:unknown

    If I run my Macbook Pro local neutrons CLI command, it works fine. This leads me to believe that it is a communication error when the controller node tries to talk to himself. I tried setting the OS_AUTH_URL and the OS_URL both the localhost IP address and address IP 10 - network - both result in the same error.

    Any ideas?

    --

    Chris

    It seems that the SSL error was caused because I connect to the OS_URL for neutrons on SSL - which is what access security page of the & showed that the correct URL in the Horizon. By changing the OS_URL to use the HTTP protocol, it began to work.

  • Problems to use LAG with 2504 and 3560

    Hello, we recently bought a 2504 wireless controller, and I can't using the aggregation of links (LAG) to connect the WLC to the network.   I was able to connect properly to the contoller using a single link, but as soon as I activate LAG (on the switch and wlc) I'm unable to access the controller.  I think that I have the correct position of the switches as the port channel is active and shows active on the controller via cdp.

    I can't do a ping of the controller, but I see it via cdp.

    The controller runs 7.4.100.0 with bootloader 1.0.18

    The switch is a WS-C3560G-48PS and running 12.2 (25r) SE

    The controller is 10.10.10.202.

    No access-lists on interface vlan switch

    Note that I have currently the 2nd stop of the port as the first member of the Association is active.

    Thoughts?   Any help would be appreciated.

    Thank you

    Bryan

    #sho ip arp 10.10.10.202

    Protocol of age (min) address Addr Type Interface equipment

    Internet 10.10.10.202 143 5478.1aad.1f0b ARPA Vlan1

    #sho address mac-address-table 5478.1aad.1f0b

    Mac address table

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

    VLAN Mac Address Type Ports

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

    1 5478.1aad.1f0b m 1 DYNAMIC

    Total of the Mac addresses for this criterion: 1

    #sho cdp neighbors detail

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

    Device ID: wubc_wlc

    Workshop / entry:

    IP address: 10.10.10.202

    Platform: AIR-CT2504-K9, capacity: host

    Interface: GigabitEthernet0/40, ID of Port (outgoing port): GigabitEthernet0/0/1

    Hold time: 153 s

    Version:

    Name of the manufacturer: Cisco Systems Inc.  Product name: Cisco Controller Product Version: 7.4.100.0 Version RTOS: Erro Bootloader Version: 1.0.18 Type of Build: DATA + WPS

    version of the announcement: 2

    Duplex: full

    Workshop / management:

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

    Device ID: wubc_wlc

    Workshop / entry:

    IP address: 10.10.10.202

    Platform: AIR-CT2504-K9, capacity: host

    Interface: GigabitEthernet0/40, ID of Port (outgoing port): LAGInterface0/3/1

    Hold time: 148 s

    Version:

    Name of the manufacturer: Cisco Systems Inc.  Product name: Cisco Controller Product Version: 7.4.100.0 Version RTOS: Erro Bootloader Version: 1.0.18 Type of Build: DATA + WPS

    version of the announcement: 2

    Workshop / management:

    # sho etherchannel summary

    Flags: D - low P - port-channel

    I have - autonomous s - suspended

    H Eve (LACP only)

    R - Layer 3 S - Layer2

    U - running f - cannot allocate an aggregator

    u - unfit to tied selling

    w waiting to be aggregated

    d default port

    Number of channels: 1

    Number of aggregators: 1

    Protocol for the Port-Channel port group

    ------+-------------+-----------+-----------------------------------------------

    1 Po1 (SU) - Gi0/40 (P) Gi0/42 (D)

    #sho run IM int 0/40

    Building configuration...

    Current configuration: 123 bytes

    !

    interface GigabitEthernet0/40

    switchport trunk encapsulation dot1q

    switchport mode trunk

    channel-group mode 1 on

    end

    #sho run IM int 0/42

    Building configuration...

    Current configuration: 133 bytes

    !

    interface GigabitEthernet0/42

    switchport trunk encapsulation dot1q

    switchport mode trunk

    Shutdown

    channel-group mode 1 on

    end

    #sho run int port-channel 1

    Building configuration...

    Current configuration: 92 bytes

    !

    Interface Port - Channel 1

    switchport trunk encapsulation dot1q

    switchport mode trunk

    end

    Make sure that your markup of the wlc management interface.

    Sent by Cisco Support technique iPhone App

  • Muse has encountered an error during the synchronization with BC and closed: "cannot delete attributes of a XHTMLElementProxy. Any ideas?

    MuseError.png

    I'm with Business Catalyst site synchronization when it came.

    Got the latest version of the software.

    Please, go to the Help menu in Muse and select "updates... "then select Muse in the Creative Cloud Desktop app and update. (The 2015.1.1 update comes to live this morning, so your Muse and CC probably haven't noticed, again.) The update includes a fix for this error.

  • Using the drive with MSSQL and Oracle partitioning

    Hi all

    Although this isn't a likely configuration I would recommend/meeting, this issue has been driving me crazy because I can't find the answer and I don't know how to test it on my own (lack of material and knowledge).

    I met a paper on SQL Server 2012 and 2008R2, which States:
    When SQL Server performs sorting data IO operations, it first sorts data by partition. SQL Server accesses one disc at a time, and this can reduce performance. To improve the performance of data sorting, divide your partitions on disks data files by putting in place a RAID. In this way, although always SQL Server sorts data by partition, it can access all drives of each partition at the same time.
    http://msdn.microsoft.com/en-us/library/ms190787.aspx
    >

    I'm curious whether Oracle has the same "limitation." I see in the 10.2 docs they say:
    Although you are not required to keep each table or index partition (or subpartition) in a space separated, it is to your advantage to do so. Partitions in separate tablespaces storage allows you to:
    * reduce the risk of data corruption on several partitions

    * Save and retrieve each partition independently

    Controls the mapping of the partitions of hard disks (important for I/O load balancing)

    * Improve the manageability, availability and performance

    http://docs.Oracle.com/CD/B19306_01/server.102/b14231/partiti.htm
    >

    But it's not precisely say it can access more than one disc at a time. I can't tell if this applies to Oracle or not. Sorry for the reference to an earlier version, but I searched this statement in 11.2 documentation but could not find.

    Anyone can shed some light on this? It is eating at me :)

    Thank you
    Rich

    My PC at home came with two hard drives of 1 t. Default HP would deliver them together towards the top in a setting stripped for performance (even if I had the drive put in place like a mirror). For Windows, there is only a C"" drive. Yet, most of the documentation you have read still refer to the disk drives as your disc consists of physical disks to which you have access to. In a world record is often a block box, that is another question and discussion.

    HTH - Mark D Powell.

  • Insert the statement with &amp; in the chain

    Hello

    When you use the insert in varchar2 column having below value, it's the slightest mistake out.
    But, if I remove & symbol... It's inclusion.
    suggestions to insert any string

    "Networking - Cisco SMARTnet-6600 | Security & Switch Service Cont-6620 | Not used-0000"

    Thank you

    use

    SET DEFINE OFF

    before the insert statement.

    Concerning
    Arun

Maybe you are looking for