Inserting multiple rows - need help

Hi all

I need to insert several rows in the table with a single query, and the number of lines is 269470.
Here one of the columns is determined by another sub query that returns multilple lines and the other 2 columns remain same for all.

I came up with the following query, but need a loop to turn several times (269470 times).

insert into EMLUSRRECV
(user_id, storeent_id, receiveml)
values
(+ (select user_id from users including the user_id not in (select distinct user_id of EMLUSRRECV) and CURR = 'USD' and rownum = 1) +, 11154, 1);

Thanks in advance.

And how did you think of sql developer can help you with that?

Why don't mark you this question ANSWER and post in the forum SQL and PL/SQL.
SQL and PL/SQL

Tags: Database

Similar Questions

  • Insert multiple rows in a database

    Hello
    I worked on a project that takes a JMS queue xml document and inserts the data into db. But the problem here is that there may be any number of data sets. I use EPCO for my work, but no matter what I do, the data is not simply inserted. Could you any body please help me? Here is an example of the message that I'm trying to insert as the XSD for the JCA and entry documents.

    XSD for JMS Message:

    <? XML version = "1.0" encoding = "windows-1252"? >
    < xsd: Schema container = "http://www.w3.org/2001/XMLSchema".
    xmlns = "http://www.example.org".
    targetNamespace = "http://www.example.org".
    elementFormDefault = "qualified" >
    < xsd: element name = "canonical" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "order" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "data" maxOccurs = "unbounded" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "rowCode" type = "xsd: String" / >
    < xsd: element name = "productNumber" type = "xsd: String" / >
    < xsd: element name = "attributeType" type = "xsd: String" / >
    < xsd: element name = "attributeCode" type = "xsd: String" / >
    < xsd: element name = "transactionType" type = "xsd: String" / >
    < xsd: element name = "timestamp" type = "xsd: DateTime" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >
    < / xsd: Schema >


    JCA XSD:

    <? XML version = "1.0" encoding = "UTF - 8"? >
    < xs: Schema targetNamespace = "http://xmlns.oracle.com/pcbpel/adapter/db/top/InsertData" xmlns = "http://xmlns.oracle.com/pcbpel/adapter/db/top/InsertData" elementFormDefault = "qualified" attributeFormDefault = "qualified" xmlns: XS = "http://www.w3.org/2001/XMLSchema" >
    < xs: element name = "OrderDataCollection" type = "OrderDataCollection" / >
    < name XS: complexType = "OrderDataCollection" >
    < xs: SEQUENCE >
    < xs: element name = "OrderData" type = "OrderData" minOccurs = "0" maxOccurs = "unbounded" / >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < name XS: complexType 'OrderData' = >
    < xs: SEQUENCE >
    < xs: element name = "prodnum" type = "xs: Decimal" / >
    < xs: element name = 'attrtype"minOccurs ="0"nillable ="true">
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:maxLength value = "20" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: element >
    < xs: element name = "attrcode" minOccurs = "0" nillable = "true" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:maxLength value = "10" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: element >
    < xs: element name = "transtype" minOccurs = "0" nillable = "true" >
    < xs:simpleType >
    < xs:restriction base = "XS: String" >
    < xs:maxLength value = "1" / >
    < / xs:restriction >
    < / xs:simpleType >
    < / xs: element >
    < xs: element name = "ordertime" type = "xs: DateTime" minOccurs = "0" nillable = "true" / >
    < / xs: SEQUENCE >
    < / xs: complexType >
    < / xs: Schema >

    Input samples:

    <? XML version = "1.0" encoding = "windows-1252"? >
    < ProductData >
    < header >
    < rowCode >: < / rowCode >
    < interfaceCode > H6D9J7 < / interfaceCode >
    < createdOn >
    < date >
    < year > 2011 < / year >
    < month > 05 < / month >
    < day > 23 < / day >
    < / date >
    < time >
    < time > 02 < / time >
    < minute > 05 < / minute >
    < seconds > 11 < / seconds >
    < / time >
    < / createdOn >
    < description > Front Shop of the attributes of FMS to JDA PMM < / description >
    < / header >
    < body >
    < data >
    < rowCode > D < / rowCode >
    < other > 0004567 < / productNumber >
    < attributeType > MIMI < / attributeType >
    < attributeCode > CCCCCCCjjj < / attributeCode >
    < transactionType > A < / transactionType >
    < timestamp >
    < date >
    < year > 2011 < / year >
    < month > 02 < / month >
    < day > 19 < / day >
    < / date >
    < time >
    < time > 02 < / time >
    < minute > 05 < / minute >
    < seconds > 11 < / seconds >
    < / time >
    < / timestamp >
    < / data >
    < data >
    < rowCode > D < / rowCode >
    < other > 0004567 < / productNumber >
    < attributeType > TTTTTT2 < / attributeType >
    < attributeCode > CCCCCCjjj2 < / attributeCode >
    < transactionType > A < / transactionType >
    < timestamp >
    < date >
    < year > 2011 < / year >
    < month > 02 < / month >
    < day > 19 < / day >
    < / date >
    < time >
    < time > 02 < / time >
    < minute > 05 < / minute >
    < seconds > 11 < / seconds >
    < / time >
    < / timestamp >
    < / data >
    < / body >
    <>footer
    < rowCode > Z < / rowCode >
    < interfaceCode > H6D9J7 < / interfaceCode >
    < numberOfRows > 000000000002 < / numberOfRows >
    < / footer >
    < / ProductData >

    I will be really grateful if someone can help me. Thank you.

    Check below link it may help you

    How to insert multiple records using the single DB adapter

    Thank you
    AJ

  • How to insert multiple rows in a table by the user (pl/sql)

    Hello
    I was trying to insert several rows in a table by a user by some pl/sql, but not every time entry. :/
    What is happening is that the program requires each time ask the user for the new value but the loop
    1 values inserts actually four times (the loop is run four times). can any point on what I am
    doing wrong or solutions will be fun ;)

    what I wrote here

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

    Set serveroutput on
    set verify off

    declare

    EmpNo number;
    EmpName varchar2 (20);

    Start

    because loop me in 1.4
    EmpNo: = & empno;
    EmpName: = '& empname';

    insert into values(empno,empname) of the employee;

    end loop;

    end;

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

    do not laugh at my code, I'm new to this oracle :D

    Thank you, prospects for the future for a response

    user13371438 wrote:
    Thanks for the info, looks like a nice tool will ;) try
    but I really want (my problem) in pl/sql

    Take a quick re-read my post above.

    PL/SQL is a process running on the database server. This process cannot interact with the client computer. He can't ask for user input, and it cannot display the output to the client. Client interface tools can only do. You are eager to get feedback from a user, if you need an interface tool to do. SQL * Plus can interface and application of entry, but only as variable substition, and it does not really provide a programming construct that allows you to run a program in a loop to do. Do this using SQL * Plus you must pair it with shell/dos scripting languages, but more ideally you should use an interface appropriate as Apex.

    I was wondering if it all works in pl/sql to release cached data (as fflush (stdin) in c ++)

    PL/SQL does not a customer entry, so there is no sense to have something to release the cached data. You pass the values of PL/SQL code using procedures or functions with parameters.

  • Inserting multiple rows programmatically received the unique key error

    I'm developing an application using ADF BC (JDev 11.1.1.5) ADF.

    I have a table with the attributes (id, tpId, trId) where tpId is in reference to the primary key of the table tp and trId is in reference to the primary key of the table tr. The combination of tpId and trId should be unique to table A.

    I wrote the following codes in my bean to create multiple records (from selections on a page of the user interface that allows users to select tables tp and tr).

    CCPC DCBindingContainer = getDCBindingContainer();
    DCIteratorBinding iter = dcbc.findIteratorBinding("AVO1Iterator");
    RowSetIterator rsi = iter.getRowSetIterator ();
    for (int x = 0; x < selectedRowCount; x ++) {}
    Line myRow = rsi.createRow ();
    myRow.setAttribute ("Tpid", tpRowId [x]);
    myRow.setAttribute ("Trid", trId);
    myRow.setNewRowState (Row.STATUS_NEW);
    rsi.closeRowSetIterator ();
    try {}
    System.out.println ("insert:" + myRow.getAttribute ("Tpid") + "," + myRow.getAttribute ("Trid"));
    dcbc.getDataControl () .commitTransaction ();
    created ++;
    } catch (Exception e) {}
    System.out.println ("insert:" + myRow.getAttribute ("Tpid") + "," + myRow.getAttribute ("Trid"));
    System.out.println (e.getMessage ());
    DUPS ++;
    }
    }

    Unfortunately, I get the following error:

    Insertion: 535, 48
    Failed: 535, 48
    Houston-26048: constraint 'A_UK1' is violated during the operation "Insert" post with SQL statement ' BEGIN INSERT INTO A(ID,TPID,TRID) VALUES (: 1,: 2:3) in RETURNING ID, TRID INTO: 15,: 16; END; ».
    Insertion: 537, 48
    Failed: 537, 48
    and so on...

    I check the database, there is no record at all thanks to the combination.

    Did anyone here see the rub on my codes?

    The framework works as expected. If you try to insert a key duplicated at once, you must clear the error before you can continue. In your case, you can use a rollback on the transaction to clear the error.
    Another thing that seems strange to me is that you do not set the id of the new line, which is without doubt the pharmacokinetics of the of the line.

    Timo

  • inserting multiple rows of another table with incremented recordid

    Hi all

    I HAVE TWO TABLES:

    CREATE TABLE TEMP_TEST1)
    NUMBER OF RECID,
    TESTCHAR VARCHAR2 (500)
    )

    AND

    CREATE TABLE TEMP_TEST2)
    TESTCHAR VARCHAR2 (500)
    )

    Both the table contains data in it. I want to insert data from TEMP_TEST2 in TEMP_TEST1 with RECID incremented for each record, which must be greater than max (RECID) of TEMP_TEST1.
    PS: I have to query insert only, I cannot make changes in the structure of table or RECID of TEMP_TEST1 is not automatically incremented.
    Please suggest a query that selects the record of TEMP_TEST2 and TEMP_TEST1 insert with recid incremented for each record.


    Thank you.
    SQL> insert into TEMP_TEST2(TESTCHAR)
      2  select 'Test'||level from dual connect by level < 10
      3  /
    
    9 rows created.
    
    SQL>
    SQL>
    SQL> insert into TEMP_TEST1(RECID,TESTCHAR)
      2  select (select nvl(max(RECID),0) from TEMP_TEST1) + rownum, t2.TESTCHAR
      3  from TEMP_TEST2 t2
      4  /
    
    9 rows created.
    
    SQL>
    SQL> select * from TEMP_TEST1
      2  /
    
         RECID TESTCHAR
    ---------- ----------
             1 Test1
             2 Test2
             3 Test3
             4 Test4
             5 Test5
             6 Test6
             7 Test7
             8 Test8
             9 Test9
    
    9 rows selected.
    
    SQL> insert into TEMP_TEST1(RECID,TESTCHAR)
      2  select (select nvl(max(RECID),0) from TEMP_TEST1) + rownum, t2.TESTCHAR
      3  from TEMP_TEST2 t2
      4  /
    
    9 rows created.
    
    SQL>
    SQL> select * from TEMP_TEST1
      2  /
    
         RECID TESTCHAR
    ---------- ----------
             1 Test1
             2 Test2
             3 Test3
             4 Test4
             5 Test5
             6 Test6
             7 Test7
             8 Test8
             9 Test9
            10 Test1
            11 Test2
    
         RECID TESTCHAR
    ---------- ----------
            12 Test3
            13 Test4
            14 Test5
            15 Test6
            16 Test7
            17 Test8
            18 Test9
    
    18 rows selected.
    
    SQL>
    

    Good bye
    DPT

  • Inserting multiple rows

    Is it possible to insert a number of rows in a table based on a value entered in a textbox? For example (I'm a tech writer not a programmer/engineer, so please be patient with me.), if someone enters "4" in a textbox, can I insert a large number of number of lines?

    Thank you!

    -Tom

    Who did jdeline. Thank you!

  • Calendar - insert multiple records by account number/length of

    Hello

    I would write a process allowing to insert multiple rows in a table. I think it should be a LOOP statement, but I don't know how in the APEX.

    I got a simple form with the following page:

    P2_Calendar_ID-> hidden field, populated by standard processes to Get PK to generate IDS again for the insert statement

    P2_Name-> text field

    P2_Date-> Date picker field

    P2_Duration-> numeric field

    The user name (P2_Name), choose a date (P2_Date) and type in a number (P2_Duration) and send the form. Here, I need the above mentioned process of pl/sql.

    I think that first of all it must be created a loop to generate the Dates of the picked a (P2_Date) and increment the date by the number (P2_Duration), and store dates in the variable. Then there should be another loop to insert the number of records in a table, so it has inserted the same number of rows depending on the number in P2_Duration and with the dates increment according to the P2_Duration.

    Name of the CALENDAR table after columns:

    Calendar_ID-> number)

    Name-> varchar2

    Date-> Date

    Example of what the user will fill in the form above:

    P2_Name-> Vladimir

    P2_Date-> may 9, 2014

    P2_Duration-> 3

    It must be created the following lines in a table CALENDAR:

    Date name Calendar_ID

    1 Vladimir may 9, 2014

    2 Vladimir 10 may 2014

    3 Vladimir may 11, 2014

    Of course the Calendar_ID is generated by the standard Get PK process, which might need to be included in the loop... I think so.

    Thank you for your help.

    Best regards

    Vladimir

    PS: I use the APEX Version: Application Express 4.2.5.00.08

    Hi Vladimir,.

    Simply create a process on submit more info here: 8.5 Page understanding the process , with your touch as a trigger and add the code in this document, similar to the below I would say: and you can just get rid of the hidden element calendar_id

    Thank you

    DECLARE

    DATE OF T_DATE;

    BEGIN

    FOR DATEINC IN 0.TO_NUMBER(:P2_DURATION) - 1 LOOP

    T_DATE: = TO_DATE(:P2_DATE,'DD-MON-YYYY') + DATEINC;

    INSERT INTO CALENDAR (CALENDAR_ID, NAME, DATE) VALUES (CAL_ID_SEQ.nextval,: P2_NAME, T_DATE);

    END loop;

    END;

  • Insert several rows in the data table table

    Hi all

    I have a requirement as to insert multiple rows in the table for this table data only (I need to replicate the data).
    In this table, the primary key is a composite primary key with all the keys.primary foreign key and the foreign key to the Date. I need to change that date to the insertion.


    INSERT
    IN myschema. Fact_page_performance
    (
    time_sk,
    Batch_ID,
    delta_msec,
    delta_user_msec,
    error_code_sk,
    content_errs,
    element_count,
    page_bytes,
    Available,.
    date_sk

    )
    VALUES
    (SELECT time_sk,
    Batch_ID,
    delta_msec,
    delta_user_msec,
    error_code_sk,
    content_errs,
    element_count,
    page_bytes,
    Available
    OF myschema. FACT_PAGE_PERFORMANCE_BACKUP
    WHERE date_sk = 20090509, 20090510
    );

    But it gives error like missing expression.
    Could someone please help me.

    Thanks and greetings
    Swetha.

    You can have either the VALUES or not SELECT the two

    INSERT
    INTO myschema.Fact_page_performance
    (
    time_sk ,
    batch_id ,
    delta_msec ,
    delta_user_msec,
    error_code_sk ,
    content_errs ,
    element_count ,
    page_bytes ,
    Available ,
    date_sk
    
    )
    SELECT time_sk ,
    batch_id ,
    delta_msec ,
    delta_user_msec,
    error_code_sk ,
    content_errs ,
    element_count ,
    page_bytes ,
    Available
    FROM myschema.FACT_PAGE_PERFORMANCE_BACKUP
    WHERE date_sk=20090509,20090510;
    
  • Need help in inserting first ever save

    I need help to insert my first record ever from a page of the OFA.

    I created a "MasterAM" AM, "MasterVO" is added it. Created a Page CreatePG which has a submit button, id = apply

    Here's processRequest CreateCo

    ' Public Sub processRequest (pageContext OAPageContext, OAWebBean webBean)
    {
    super.processRequest (pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule (webBean);

    If (! pageContext.isFormSubmission ()) {}
    am.invokeMethod ("createRecord", null);
    }
    }

    and here is processFormRequest

    ' Public Sub processFormRequest (pageContext OAPageContext, OAWebBean webBean)
    {
    super.processFormRequest (pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule (webBean);

    If (pageContext.getParameter ("Apply")! = null)
    {
    OAViewObject vo = (OAViewObject) am.findViewObject ("MasterVO1");
    am.invokeMethod ("apply");
    pageContext.forwardImmediately ("OA.jsp?page=/abcd/oracle/apps/per/selfservice/xxdemo/webui/CreatePG",
    NULL,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    NULL,
    NULL,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    }

    }
    }

    Here is 'createRecord' and 'apply' in MasterAMImpl

    public void createRecord() {}
    OAViewObject vo = (OAViewObject) getMasterVO1 ();
    If (! vo.isPreparedForExecution ()) {}
    vo.executeQuery ();
    }
    Line = vo.createRow ();
    vo.insertRow (row);
    row.setNewRowState (Row.STATUS_INITIALIZED);
    }

    {} public void apply()
    getTransaction () .commit ();
    }

    When I run the page, it opens and I try to enter some data and press on apply. It does not insert in the table.

    Could someone help me.

    My version of jdeveloper is 10.1.3.3.0.3

    Only for EO according to your, DML operations are supported by the Framework. For the no - EO according to your... We need to explicitly insert records using jdbc.

    See you soon
    Ganesh

  • need help with insert sitemap in the footer with the adobe site map muse

    Hi I need help, to know how to insert a site map link in the footer of a page Web in muse Adobe.

    a quick google search just shows how to create a site map, but no mention of how to get a clickable link to a sitemap on a Web footer.

    any help would be appreciated.

    Hello

    You can try to front page of the site hyperlink to any text that would open the sitemap on the mouse action.

    For example, domain.com/sitemap.xml, enter in this format in hyperlink with any text or image that you can place on the page footer area.

    Thank you

    Sanjit

  • Need help! Re: Sequence Presets understanding &amp; settings + using multiple sequences!

    Hi, I'm newer to Premiere Pro (using the new version of Pro obtained in March 2010 on a PC) and watched all the tutorials (lots of video) and read a LOT about the subject! And I have answered several questions about mine. But there is one main thing (that I'll probably have to divide it into 2 or more questions) that I just got a complete knowledge & really your expert need help on!

    Thank you very, VERY MUCH! Really...

    I have designed/product audio (music) for a while now and when you start a new session just, you select your sample rate & are locked in for the most part therefore... Pretty simple... Now with Pro, when you start your new session, you choose your Preset sequence. Now for this first project, a video clip (3 minutes), the audio is done (as I said) and for the clip, we use images from several sources including: maybe 55% compared with a mini-camera DV, 40% of the .vob files right & the remaining 5% of some mpeg files + a few YouTube videos (we only have it our preserved images of front on YouTube) + some JPEGs (still images). And we plan to export the final video on YouTube and the internet. And we want also ready to be broadcast on both television (MTV, some media, shows, etc.). And Yes, we will also use it on cell phones (even if it is the least important right now). So 3 main exports (which I believe are all made at the end through media encoder).

    • But to choose the right Preset sequence at the beginning, I am confused, unfortunately.   I

    Believe you choose the one that best fits to of your assets sizes & frame rate [in this case, which is a camera film regular DV; & mediainfo said the .vob file = 720 x 480 (4:3) to 29.970 fps MPEG video (NTSC), one of the shots (of our) YouTube = 480 x 270 (16:9) at 29.970 fps STROKE, a MPEG = 352 x 288 (4:3) at 25.000 fps and 2 examples of jpeg = 300 x 400 (size = 57 KB)] and another = 720 x 450 (size = 100 KB)]. So if I am wrong in my assumption on the choice of a pre-defined sequence just on the best corresponds to the your assets rates & sizes, I would choose (I think): DV-NTSC Standard 48 kHz (the 48 just to 41 over our audio sampling frequency). 

    And if all goes well, it is excellent for our export needs YouTube at the end of the process the video & tv as well!

    .. . Is this correct?

    Can I choose the predefined sequence that best matches most of the sizes/frame rate of your assets?

    * And ESPECIALLY... is CE Preset of the sequence is the BEST for this current music video (based on the sources of our assets & where it will be considered when it is finished - mainly of YouTube, & also some TV [for media and broadcasting] - probably on a DVD, I guess)?

    Or I'm wrong, & it (your Preset Sequence) depends on your final product & the output?

    My friend (who admits that he is no expert in some way) explained that I would probably go with HDV 1080 p 30 as this will give a much better value for my release. But after he saw the results in Pro with this setting for my property, he agrees with MY above conclusion instead. 

    When you use the DV - NTSC Standard 48 kHz preset, I saw the asset in the Source monitor Panel (& then dragged the clips to the timeline) & seen in the finale of "Project Monitor" (I think it is called). And they looked decent in this final screen (where I'll crop & use some shared screens sometimes). 

    And when I used his suggestion of 1080 p HDV 30, assets looked ok in the Source monitor Panel (I think), but very little in the final project monitor. 

    • And led me to another big question - when you use the jpeg format which is 1280 x 960 e.g. (largest

    as the previous ones) in the Standard DV NTSC 48 kHz preset, happening in the Source monitor. But when you drag it down to the timeline and view it in the program monitor, the head was cut off, etc. and of course, when you use instead the HDV 1080 p 30 preset, as larger jpeg even adapt very well in the in the program monitor. Now, I understand that this is because the size of the frame (dimensions) close match those of the HDV preset. I get it. What none of us got was however WHY in the DV - NTSC Standard 48 kHz preset, he looks very well in the Source monitor Panel (but not in the program monitor)? (The two were simply put to 'Fit'). We thought he not would not have looked at well & fit fine and complete source of follow-up at first - but that's the difference between this largest jpeg display when it is displayed in two different monitors that really confused us!

    • And the final main confusion on this topic lies in something, that a technician in Adobe, tell us, informing that

    We can create multiple sequences. Now, I saw How to do this in the project Panel, but it's really the full understanding of the workings that we don't get. The tech said: "each sequence MUST have the good frame rates, sizes of images." Ok, you understand - understood. And he said: we can be: convert the size of the image (of this large jpeg example, say reducing) to match the predefined video frame size. But in this way, we would lose the quality (jpeg - assets). And he says: - or - you CAN use multiple sequences for different sources & when everything is completed (the whole video), I just export it them all as a single project! And I have that a sequence may be getting the DV preset (with the heights of these assets corresponding closely to this preset) and another sequence (in the same project) can be the HDV preset (with the heights of remaining assets corresponds closely to the preset instead). , But he couldn't explain was: how you can view your entire music video (3 minutes) in its entirety in Pro. It seems that when you choose a 2nd sequence, it obviously creates on the timeline, and assets that you put in the 1st (DV) timeline is completely separate from the 2nd (HDV) timeline. And you get no display either at the same time (because they are distinct sequences). 

    So... is this true?

    Are we supposed to use multiple sequences within our project to clip one of the assets with a higher (or other) image size/rate?

    And you export sequences as a final clip?

    And if so, HOW the world watch you your video chats (in the monitor of the project with all of your changes - as you change) when you use more than one sequence?

    Sorry, it seems quite stretched out, but I want to answer your questions you can in turn have for me & be clear so I can finally receive clarity on this topic!

    I know it's much, but if you could address all of the above questions (more background or discussion - is but a handful of issues in there), you have my gratitude... we were afraid to start the part of the video of this project is NOT know what sequence preset start with (as "we don't want to be locked into the wrong choice & waste weeks of editing), let alone a good understanding of the 'why' or the ramifications!

    Thank you so very, very well... You have no idea how...

    Rendering is done on a basis as needed. If we do a complex animation with keyframes, or if they have odd source files, they could do. For keyframe animations, I could make this section of the timeline of a dozen or more times. Otherwise, maybe not.

    Rendering is the production of AV files, just for reading. They take a lot of space and will take a while. It's one of the reasons that a Publisher must familiarize themselves with the WAB (work area bar), so that they do things like rendering for all what they might need. Tip: remember to put this back to the full timeline.

    Good luck

    Hunt

  • Need help to insert several lines using PL/SQL

    Hi gurus,

    I wrote a simple PL/SQL to insert the recrods in a table. It works fine if the sql script that is stored in the column to the table TEST_VALIDATION SCRIPT returns a single line. Can you get it someone please let me know a better way to insert multiple results returned by the script? Rest columns can be duplicated.

    DECLARE

    p_rows default NUMBER of 0;

    CURSOR C1_TV
    IS
    SELECT ID, DESCRIPTION, TEST_VALIDATION SCRIPT;

    BEGIN

    FOR C1_TV_REC in C1_TV
    LOOP

    Run immediate C1_TV_REC. SCRIPT in p_rows;

    INSERT INTO THE VALIDATION
    (END_DATE,
    VALIDATION_ID,
    VALIDATION_DESCN,
    VALIDATION_COUNT
    )
    VALUES
    (
    (select sysdate to DOUBLE),
    C1_TV_REC.ID,
    C1_TV_REC. DESCRIPTION,
    p_rows
    );

    COMMIT;

    END LOOP;

    END;
    /

    Please let me know if this isn't clear.

    Thank you
    Shash

    You need something like that

    declare
      p_rows dbms_sql.number_table;
      i pls_integer;
    begin
      execute immediate SCRIPT bulk collect into p_rows;
      i:=1;
      loop
        exit when i>p_rows.count;
        insert... p_rows(i)....
        i:=i+1;
      end loop;
    end;  
    

    or the much faster method (if it works in your case)

    declare
      p_rows dbms_sql.number_table;
      i pls_integer;
    begin
      execute immediate SCRIPT bulk collect into p_rows;
      forall i in p_rows.first..p_rows.last
         insert into table (field) values (p_rows(i));
    end;  
    

    And why you use

    (select sysdate from DUAL)
    

    Just use

    sysdate
    

    Published by: Oleg Gorskin the 12.01.2010 06:51
    Add method with forall

  • Need help! Multiple video splices both?

    The guys of sup - sorry if this has been covered, done a brief search and its quite hard to word what I need help & hard to find anything whatsoever thereon! (if it is still possible, it is).

    Basically, I edit videos & shoot them down in highlight reels - my clients send me the exact hours of what they want out.

    Is it possible to enter at the time of parts I want to cut out all at once? I know that you can enter a time in the timeline, but I still have to do this for each clip!

    Here is an example, if you don't quite understand what I mean:

    I have a video that is long 01:00:00:00. My client has watched the video itself and noted whenever he wants to cut down, for example 12:11mins - 12:21mins, 13:14mins - 13:31mins etc. I have to do it manually every day, I know that this may sound lazy, but when I about 30 + times to cut and to manually select each that it takes forever!

    I hope someone can help, really appreciate it.

    Thank you.

    Not possible, you should make a one slice at a time.

  • ultraliteJ need help?

    Hello

    I need to store data in blackberry with ultralitj.

    I have created some tables but want to know something fundamental, how can I create key of the table that will be automatically genereated

    for each new insertion.

    I found one but it is a hex key that is not understandable.

    Your help will be very appreciated.

    There is not much help here for ultralitej!

    One of the things that we introduced in version 11.0.1 is that you can create tables and delete tables using the SQL data definition statements. So you can create a table with key primary default autoincrement like this (untested code!):

    String createSQL = "CREATE TABLE t (c1 INT PRIMARY KEY DEFAULT AUTOINCREMENT, c2 VARCHAR (40),...) ';"

    PreparedStatement ps = _conn.prepareStatement (createSQL);

    PS. Execute();

    To insert a row into this table, you do not just the autoincrement column:

    String insertSQL = "INSERT INTO t (c2,...). VALUES (?,...) « ;
    PreparedStatement ps = _conn.prepareStatement (insertSQL);
    PS. Set (1, 'chain for c2');
    ... / / Set here the other columns
    PS. Execute();
    PS.Commit (); When you're ready to commit these changes to the database.

    UltraLiteJ now supports almost all SQL listed for UltraLite (C version) here: http://dcx.sybase.com/1101en/uladmin_en11/fo-sql-statements.html.

    Tom

  • Need help on Vista downgrade to XP

    Hi, I have a laptop model Compaq Presario CQ40-401AX.

    I get blue screen error during the arrival of disc loading that using Windows SP3

    I followed the instructions given on the forum but yet I still couldn't install Windows XP SP3.

    Here is some information in case of need:

    AMD Turion (TM) X 2 Dual-Core Mobile RM-74
    TOSHIBA MK3252GSX ATA Device
    IDE ATA/ATAPI controllers

    If all those who have the solution to this dramatic problem,

    Please, help me. As I'm fed up with Vista...

    I enjoyed to these nice people who want to help...

    Number of sata. Try to use Nlite to sliptream amd sata driver.

    AMD SATA AHCI Controller Pilot, here

    Important notes:

    1. In Nlite, choose Insert -> multiple driver folder option
    2. Select ONLY x 86 driver for AMD SATA AHCI when asked.
    3. Never choose x 64 driver questioned

    or new AMD SATA driver, only much more convenient to use 32-bit here .

Maybe you are looking for

  • Support for the old BIOS

    Hello.Before upgrading the BIOS on my Satellite 1800 504, I want to make a backup of the old BIOS.How can I do this?

  • Satellite P200D Vista recovery disk will not work

    The OS is screwed on this laptop and when I try to boot normally a blue screen flashes so fast that you can't read and it stops. I try boot in hosted HDD repair he said: "the installed program cannot start. Click OK to turn off the computer. The CD d

  • Hi I have a problem, my drive hard think pad (T400s) is lost

    Hi guys I think pad T400s and a hard disk problem and I want to buy a hard drive, but it does not exist in the site of lenovo and I have a question about hard drive! I canoe find hard for my device suituble you please help me what I do my model is T4

  • I'm unable to remove Canon bubble jet driver

    My Cannon, bubble jet printer packed, I think that the power supply was at fault. I bought a new HP 5515 d and I installed set up the disc, it does not work and I can't delete the old driver of Canon from the computer that is a: Dell Inspiron 9400 la

  • Problem with directory with a program

    I use BAG and in the last two days, when I try to install a plugin, the computer says that BAG is not in the directory.  I'd appreciate it if someone could tell me what is wrong or what to do? Thank you