Unable to insert more than 9 rows at a time

Hi there,
I have to insert more than 5000 rows in my table at a time,but i am not able to insert more than 10 ROWS AT ATIME.
Do we need to do some that at the data base level for this to happen??????
Thanks in Advance.

Rather than give us unhelpful comments like "still its not taking", why don't you show us exactly what you're doing? We can't help you if you don't give us enough information.
I've tried it and it works fine:
SQL> create table customer (dealership_id number,
  2  region varchar2(100),
  3  customer_no number,
  4  firstname varchar2(100),
  5  lastname varchar2(100),
  6  address varchar2(100),
  7  city varchar2(100),
  8  state varchar2(100),
  9  zip varchar2(100),
10  country varchar2(100),
11  phone_number varchar2(100),
12  email varchar2(100),
13  gender varchar2(1),
14  age number,
15  transaction_date date);
Table created.
SQL> ed
Wrote file afiedt.buf
  1  begin
  2  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
  3  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
  4  TRANSACTION_DATE ) VALUES (
  5  1, 'West', 546, 'Maria L', 'Umali', '515 W 59th St', 'San Francisco', 'California'
  6  , 10019, 'United Sta', '2122478223', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
  7  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
  8  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
  9  TRANSACTION_DATE ) VALUES (
10  24, 'East', 547, 'Justa', 'Viafara', '66 Avenue C', 'Charleston', 'West Virginia'
11  , 10009, 'United Sta', '2126736156', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
12  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
13  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
14  TRANSACTION_DATE ) VALUES (
15  22, 'East', 548, 'C', 'Vignola', '41 Carmine St', 'Miami', 'Florida', 10014, 'United Sta'
16  , '2122436687', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
17  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
18  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
19  TRANSACTION_DATE ) VALUES (
20  2, 'West', 549, 'Catherine', 'Vignola', '16 Barrow St', 'San Diego', 'California'
21  , 10014, 'United Sta', '2129297697', '[email protected]', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
22  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
23  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
24  TRANSACTION_DATE ) VALUES (
25  10, 'West', 550, 'Ashley', 'Weare', '275 W 96th St', 'Oakland', 'California', 10025
26  , 'United Sta', '2128652935', '[email protected]', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
27  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
28  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
29  TRANSACTION_DATE ) VALUES (
30  9, 'West', 551, 'Shamire A', 'Zobadi', '446 W 46th St', 'San Jose', 'California', 10036
31  , 'United Sta', '2129740994', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
32  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
33  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
34  TRANSACTION_DATE ) VALUES (
35  20, 'East', 552, 'Iride', 'Ciaccio', '130 Wisner Ave', 'Baltimore', 'Maryland', 12550
36  , 'United Sta', '9145612058', '[email protected]', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
37  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
38  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
39  TRANSACTION_DATE ) VALUES (
40  17, 'Central', 553, 'Cecil', 'Jackson', '30 Lake Dr', 'Houston', 'Texas', 12550, 'United Sta'
41  , '9145617354', '[email protected]', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
42  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
43  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
44  TRANSACTION_DATE ) VALUES (
45  4, 'West', 554, 'M P', 'Prabhu', '590 River Rd', 'Scottsdale', 'Arizona', 12550, 'United Sta'
46  , '9145656155', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
47  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
48  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
49  TRANSACTION_DATE ) VALUES (
50  16, 'Central', 555, 'Jacob', 'Agam', '221 E 61st St', 'Ann Arbour', 'Michigan', 10021
51  , 'United Sta', '2127524408', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
52  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
53  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
54  TRANSACTION_DATE ) VALUES (
55  23, 'East', 556, 'Alkis', 'Agaphogleous', '208 W 15th St', 'Fairfax', 'Virginia', 10011
56  , 'United Sta', '2126478725', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
57  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
58  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
59  TRANSACTION_DATE ) VALUES (
60  19, 'East', 557, 'Ponti C', 'Cia', '251 Central Park W', 'New York', 'New York', 10024
61  , 'United Sta', '2128777400', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
62  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
63  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
64  TRANSACTION_DATE ) VALUES (
65  27, 'West', 558, 'Steve', 'Ciabbatoni', '71 Broadway', 'Phoenix', 'Arizona', 10006
66  , 'United Sta', '2128639140', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
67  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
68  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
69  TRANSACTION_DATE ) VALUES (
70  13, 'Central', 559, 'Pascale', 'Coadou', '307 E 89th St', 'Austin', 'Texas', 10028
71  , 'United Sta', '2128769343', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
72  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
73  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
74  TRANSACTION_DATE ) VALUES (
75  21, 'East', 560, 'Arthur G', 'Coake', '95 W 95th St', 'Boston', 'Massachusetts', 10025
76  , 'United Sta', '2122221851', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
77  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
78  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
79  TRANSACTION_DATE ) VALUES (
80  15, 'Central', 561, 'B P', 'Coakley', '139 W 35th St', 'Minneapolis', 'Minnesota'
81  , 10001, 'United Sta', '2126863187', 'null', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
82* end;
SQL> /
PL/SQL procedure successfully completed.
SQL> select count(*) from customer;
  COUNT(*)
        16

Similar Messages

  • Unable to sync more than one song at a time

    Hello,
    I am unable to add more than 1 song at a time to my iPhone. Previously I was able to add some music by drag and dropping a whole playlist of about 15 songs. However, now when I drag and drop a playlist to the iPhone section in iTunes, iTunes and the phone identify that its syncing for a second or two and then it stops. The playlist shows up on the iPhone, but no songs are in it...I can only add 1 song at a time. I have tried multiple usb ports on my computer and I also tried using msconfig and disabling all 3rd party services per this article http://docs.info.apple.com/article.html?artnum=302538
    Still the same result. Please help.
    Thanks

    Did you by any chance uncheck the the boxes beside any or all of the songs in the library? Unchecked songs won't play in a playlist or the library unless you select them individually: iTunes: Understanding the Symbols Next to Songs
    Holding down the Control key and clicking the checkbox next to a song in the library or a playlist will toggle the marks for all the songs on or off: : iTunes 7 Keyboard Shortcuts for Windows

  • Can't insert more than 8000 rows to excel via JOB

    Hello, 
    I have SSIS package where I have two tasks.
    File System task copies file (with header names) to destination folder.
    Data flow task export data from table to copied Excel file. Select are simple "select * from table" without any filters.
    There are about 100 000 rows in the table.
    When I run this task through Visual studio everything works fine. Data to Excel file is exported.
    When I run this package in JOB (Job Activity Monitor) the file is created but 0 rows is exported.
    One interesting thing, that when I use select "select top 7000 * from table" 7000 rows is inserted but when I try to export more than 8000 rows then 0 rows is exported. The JOB generates 0 errors. In fact he tries to export. Because all the time
    Excel's file "Date modified" is changing.
    It seems like data is exported but the final "commit" isn't done. Anybody knows where could be a problem?

    Out of curiosity I have had a go at reading 70K lines of data from a table in a sql server and exporting them to an excel 2007 file:
    SSIS 2012 project deployment
    2 project connections: sql database connection for source
    and an Excel 2007 connection for destination:
    Provider=Microsoft.ACE.OLEDB.12.0;Data Source=F:\Data\Outbox\ExcelOut.xlsx;Extended Properties="Excel 12.0 XML;HDR=YES";
    I have an empty excel 2007 file as template with header rows in the first sheet.
    I test the project in VS 2012, ran without problems. 
    I set DelayValidation to true on package level, data flow level.
    In data flow, excel distination, ValidataExternal metadata to False. 
    I deploy the project with the package to an Integration Services catalog on a SQL 2012 server (not my development machine)
    I copy an empty excel 2007 file (with the headers in the first row) in the correct file location.
    I execute the package from SSMS in the Integration services catalogs, with 32 bit checked.
    The package runs without errors. 
    I can open the excel file and see 70K records.
    Last thought: I have no NULL values in my data. Do you have null values after the first 7000 records? Or is one of the excel columns expecting numerical data where it suddenly finds alfanumeric after 7000 rows?
    Another suggestion: if you run the package with SSMS from the catalog, you can set the verbose reporting mode on, does that tell you anything more?
    Jan D'Hondt - SQL server BI development

  • Unable to play more than 1 song at a time

    I have been using iTunes on my desktop for years without much trouble. I usually place it on shuffle and let it go. Suddenly, today I am unable to play anything more than 1 song at a time. It no longer will go on to the next song either in shuffle or continuous play. Using the forward or backward button does not work, either. I have to select a song one at a time.
    I don't know if this thing is really screwed up or if somebody in the house changed a setting that I just can't figure out.

    Did you by any chance uncheck the the boxes beside any or all of the songs in the library? Unchecked songs won't play in a playlist or the library unless you select them individually: iTunes: Understanding the Symbols Next to Songs
    Holding down the Control key and clicking the checkbox next to a song in the library or a playlist will toggle the marks for all the songs on or off: : iTunes 7 Keyboard Shortcuts for Windows

  • Unable to add more than one album at a time

    So I have had minimal issues with my ipod classic until about a week ago, when suddenly all 45gb of music on my ipod was erased. I didn't do anything stupid like disconnect it when it wasn't ready to be disconnected. So I restored my ipod and then began adding music on to it. The only problem is that if I try and add more than one album at a time, it freezes at some point and some error message pops up (there are a few differnt ones). After that happens practically nothing can be added to my ipod. Any solutions?

    Yes, I was able to add as many albums as I wanted before the crash and I have restored it three or four times since then because of this problem.

  • Unable to move more than one song at a time

    For some reason, iTunes has stopped allowing me to move more than one song at a time to playlists or my manually-managed iPod. I can grab as many songs as I want, but when I drag them over to the sidebar, i don't get the little green plus sign that means you can add the songs.
    If I only select one song, it woks fine.

    Did you by any chance uncheck the the boxes beside any or all of the songs in the library? Unchecked songs won't play in a playlist or the library unless you select them individually: iTunes: Understanding the Symbols Next to Songs
    Holding down the Control key and clicking the checkbox next to a song in the library or a playlist will toggle the marks for all the songs on or off: : iTunes 7 Keyboard Shortcuts for Windows

  • How to insert more than one row in an Oracle table in one go

    Hi All,
    I am working on a file-XI(BPM)-Oracle scenario.
    I am sending an xml file to XI via a file adapter. On the receiver end i am using a jdbc adapter to insert the row in the database. There is a transformation step within the BPM which is converting the file to a format understood by the JDBC adapter.
    The problem i am facing is that, even if my input xml file contains more than one recordset, only one row is created in the database with the first recordset.
    How can i insert all the other recordsets in the database at the same time.
    Pls guide
    Thanks in advance.
    Regards
    Neetu

    Hi,
    As asked by Bhavesh, i set the occurence of the STATEMENT tab 1 to UB. But still only one row is getting updated in the database at a time.
    As asked by Udo, i even tried the same by changing the occrence of ACCESS tab 1 to UB. But still same thing happened.
    Can there be some other problem.
    The transformation is being dane in the BPM.
    As seen in SXMB_MONI, the input xml to the BPM has two RECORDSET tags but the output generated xml in the format understood by jdbc adapter has a single STATEMENT tag.
    The two formats are given below
    <b>Input:</b>     
            <?xml version="1.0" encoding="utf-8"?>
         <ns:MT_Test_File xmlns:ns="http://namespace-EmpNumberGen">
         <EmpGenRecord>
              <APPLICANT_NO>20</APPLICANT_NO>
              <FIRST_NAME>abc</FIRST_NAME>
              <LAST_NAME>xyz</LAST_NAME>
              <FUNCTION>ADMIN</FUNCTION>
              <DESIGNATION>ZA</DESIGNATION>
              <RESPONSIBILITY_LEVEL>dd</RESPONSIBILITY_LEVEL>
              <RECRUITMENT_TYPE>dd</RECRUITMENT_TYPE>
              <EMPLOYEE_TYPE>p</EMPLOYEE_TYPE>
              <STATUS>A</STATUS>
              <***>M</***>
         </EmpGenRecord>
         <EmpGenRecord>
              <APPLICANT_NO>14</APPLICANT_NO>
              <FIRST_NAME>abc</FIRST_NAME>
              <LAST_NAME>xyz</LAST_NAME>
              <FUNCTION>ADMIN</FUNCTION>
              <DESIGNATION>ZA</DESIGNATION>
              <RESPONSIBILITY_LEVEL>dd</RESPONSIBILITY_LEVEL>
              <RECRUITMENT_TYPE>dd</RECRUITMENT_TYPE>
              <EMPLOYEE_TYPE>p</EMPLOYEE_TYPE>
              <STATUS>A</STATUS>
              <***>M</***>
         </EmpGenRecord>
    </ns:MT_Test_File>
    <b>Output</b>
            <?xml version="1.0" encoding="UTF-8"?>
         <ns0:MT_Emp_No_Generation xmlns:ns0="http://namespace-EmpNumberGen">
         <Statement>
              <SAP_EMPGEN action="INSERT">
                   <access>
                   <APPLICANT_NO>20</APPLICANT_NO>
                   <FIRST_NAME>abc</FIRST_NAME>
                   <LAST_NAME>xyz</LAST_NAME>
                   <FUNCTION>ADMIN</FUNCTION>
                   <DESIGNATION>ZA</DESIGNATION>
                   <RESPONSIBILITY_LEVEL>dd</RESPONSIBILITY_LEVEL>
                   <RECRUITMENT_TYPE>dd</RECRUITMENT_TYPE>
                   <EMPLOYEE_TYPE>p</EMPLOYEE_TYPE>
                   <STATUS>A</STATUS>
                   <***>M</***>
                   </access>
              </SAP_EMPGEN>
         </Statement>
         </ns0:MT_Emp_No_Generation>
    This is a bit urgent.
    Pls help
    Regards
    Neetu

  • Unable to insert more than once into an Oracle table  through ODI

    Hi,
    The scenario is I need to load a table which stores the contact informations (Phones).
    The source data is such that the different types of phones come from different source tables (Home phone, Work Phone, Fax etc)
    I have developed different interfaces in ODI based on the types of phones.
    The issue is for the first time, if I run any of the interfaces it runs properly & the data gets inserted properly. Then if I run any of the other interfaces, it is unable to insert into the intermediate I$ table (I$_Phones) and is stuck there forever :-)
    Is it an ODI issue or an issue with the database? I have manually copied the query and tried to load it into the intermediate table, but it didn't work.
    Have any of you faced this type of issues in ODI ever? If so, are there any work arounds?
    PS - I have checked whether I am dropping the intermediate flow tables after inserting the records.

    Thanks Ankit,
    I was using IKM Oracle Incremental Update. The volume of data is around 300,000.
    It didn't fail, It just took forever. It got stuck in the step "Insert flow in I$ table". (FYI, I have disabled the Flow control in the IKM).
    Almost the same query ran properly and got the data loaded when its used in the initial interface. I have pasted the query below.
    /* DETECTION_STRATEGY = NOT_EXISTS */
    insert /*+ APPEND */ into PROD_ODI_WORK.I$_PHONES
         SRC_CLIENT_ID,
         PHONE_NO,
         PHONE_TYPE_ID,
         IND_UPDATE
    select      
         C1_SRC_CLIENT_ID     SRC_CLIENT_ID,
         C2_PHONE_NO     PHONE_NO,
         1     PHONE_TYPE_ID,
         'I' IND_UPDATE
    from     PROD_ODI_WORK.C$_0PHONES
    where     (1=1)
    and not exists (
         select     'X'
         from     CIF_STG.PHONES T
         where     T.SRC_CLIENT_ID     = C1_SRC_CLIENT_ID
         and     T.SRC_SYSTEM_ID     = 'BARS'
              and     ((C2_PHONE_NO = T.PHONE_NO) or (C2_PHONE_NO IS NULL and T.PHONE_NO IS NULL))
              and     ((1 = T.PHONE_TYPE_ID) or (1 IS NULL and T.PHONE_TYPE_ID IS NULL))
         )

  • Unable to open more than one site at a time. The + is not working at all.

    A few days ago I suddenly lost the ability to have more than one web page open. The "+" will not open anything.

    Uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox that prevents new tabs from being opened.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

  • How to Insert more than one record at a time- with fixed set of values in one field

    Can someone guide as to how to insert multiple records at a time using ASP VBScript in Dreamweaver CS4 or ADDT.
    If someone can guide then the exact problem is given below.
    I have a MS access database with one table. The table has three fields. The first field is an autonumber field for ID number.
    The second field contains string values- One out of 7 predefined values. One set of records consists of 7 records containing all the seven types of predefined values in fields no 1.
    The third field is a numeric field and can contain integers.
    I want that the user can enter data for the table using an ASP form in such a way that he enters one set of records at a time in one single screen. This way he will not have to remember that he has /has not entered all the seven set of values for the field no 1.
    I am not creating fields with the 7 types of field1value as their names as it will increase the number of fields drastically.
    Please help for dreamweaver ASP VBScript.

    I have successfully inserted seven records in one form submit operation by looping through the command object execute method.
    However, the data that is being inserted by the command object is repetition of the first record and the command object is not taking any data from the text boxes for the second record onwards. In this I had used the isert record behavious generated by DW CS4 and modified it to suit my requirement. However, the data inserted in the first row is getting repeated in all the seven rows.
    Please help.
    Also advise if there are any free dreamweaver server side validation extensions available.

  • How to Insert more than one record at a time

    How to insert multiple records at a time?
    If someone can advise on this, then the actual problem is described below:
    I have a MS access database with one table. The table has three fields. The
    first field is an autonumber field for ID number.
    The second field contains string values- One out of 7 predefined values. One
    set of records consists of 7 records containing all the seven types of
    predefined values in fields no 1.
    The third field is a numeric field and can contain integers.
    I want that the user can enter data for the table using an ASP form in such
    a way that he enters one set of records at a time in one single screen. This
    way he will not have to remember that he has /has not entered all the seven
    set of values for the field no 1.
    I am not creating fields with the 7 types of field1value as their names as
    it will increase the number of fields drastically.
    Please help with inserting multiple records at a time.

    I have successfully inserted seven records in one form submit operation by looping through the command object execute method.
    However, the data that is being inserted by the command object is repetition of the first record and the command object is not taking any data from the text boxes for the second record onwards. In this I had used the isert record behavious generated by DW CS4 and modified it to suit my requirement. However, the data inserted in the first row is getting repeated in all the seven rows.
    Please help.
    Also advise if there are any free dreamweaver server side validation extensions available.

  • Unable to print more than one copy at a time to any printer

    I've had this issue for a while but have just been dealing with it but I ran into an issue where I needed 50 copes of a document and I had to print the document 50 times......
    First, the issue; Through any of the applications I've tried (Preview, Adobe, Pages, numbers) to print multiple copies, I can't get more than one to print at a time. Even if I set the number of copies to 2, 5, 10 or whatever, only one copy prints.
    I've tried multiple printers, One connected via USB, one shared through an OS X Leopard server and the other through an IP port all with the same result.
    All of the printers are various HPs but I had this issue with a Lexmark one in the past. I am running 10.5.5 and am really hoping someone has a solution to this.
    Thanks,

    anyone...?

  • Cannot insert more than 1 row

    The insert statement is insert as select, and select is restricted by rownum. When rownum < 2 then it works (ie. only one row is inserted). When rownum < 3 and more it doesn't work (and without rownum condition there are over 200k rows, and it doesn't work either).
    Why could it be like that? The process is logged and it clearly shows for rownum < 2 that one row is inserted:
    SQL*Plus: Release 11.2.0.1.0 Production on Sat Oct 20 10:46:02 2012
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production With the Partitioning, Automatic Storage Management, OLAP, Data Mining and Real Application Testing options
    10:46:02 SQL> set serveroutput on
    10:46:02 SQL>
    10:46:02 SQL> WHENEVER SQLERROR EXIT SQL.SQLCODE
    10:46:02 SQL>
    10:46:02 SQL> insert into tmp2 select x,y from tmp where rownum < 2;
    1 row created.
    Elapsed: 00:00:00.00
    10:46:02 SQL>
    10:46:02 SQL> commit;
    Commit complete.
    Elapsed: 00:00:00.00
    10:46:02 SQL>
    10:46:02 SQL> exit sql.sqlcode
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production With the Partitioning, Automatic Storage Management, OLAP, Data Mining and Real Application Testing optionswhile for rownum < 3 it ends and doesn't insert anything:
    SQL*Plus: Release 11.2.0.1.0 Production on Sat Oct 20 10:50:03 2012
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production With the Partitioning, Automatic Storage Management, OLAP, Data Mining and Real Application Testing options
    10:50:03 SQL> set serveroutput on
    10:50:03 SQL>
    10:50:03 SQL> WHENEVER SQLERROR EXIT SQL.SQLCODE
    10:50:03 SQL>
    10:50:03 SQL> insert into tmp2 select x,y from tmp where rownum < 3;Any guesses about it? I don't have idea where to start.

    Well I find that hard to believe.but this is what I can read from the log.. it ends after insert statement.
    When you run scripts from a command window and the script 'ends' you get returned to the command window and you will get whatever prompt has been configured. So there has to be 'something' - it it just ended it would be hung and you would have to use ctrl-c to get out.not exactly. I tried to run it from shell as typing sqlplus user/pass @/path/script.sql, and it worked. but after reading your answer I also ran it as executing original KSH script (which calls sql script inside), and it ran successfully too.
    But you say that this is the very last thing you see on the screen for the nonworking example. [..] So you now say 'thre is no more output than shown. it just ends after "insert ... where rownum < 3".yes, this is correct. the last line I see in log is just insert statement.
    So explain how it can 'just end' without your system being hung, without the script exiting, without the Oracle connection being disconnected and without the command window displaying some kind prompt (either SQL or OS). You also did not indicate whether you removed the WHENEVER SQLERROR line and you appear to be piping into a log file but haven't posted that either.OK, I overlooked this. here is the detailed situation. we have a propertiary scheduling tool. you just point a KSH file in this tool and it runs it at specified time. how it actually runs it I don't know, but I don't see command window, I just see logs. and when I look into the log it shows just insert statement as last line for rownum < 3. it shows other lines like elapsed, commited etc for rownum < 2. And yes, of course, I followed your suggestion and removed whenever line. what I was reffering earlier was after this removal: no change in log.
    let me summarize:
    1) sql runs in 3rd party sql tool
    2) sql runs from inside sqlplus
    3) runs when KSH is executed directly in shell manually
    4) runs from shell when sqlplus is called with user/pass and @/path/scriipt.sql
    5) doesn't run when executed with scheduling tool for rownum < 3, runs for rownum < 2
    You gave me quite a good hint about the cause. nothing comes to my mind except.. calling the support of this scheduling tool :)
    do you see other possibilities other that you mentioned? key violation is not causing it, I can load the whole table manually.
    thank you

  • Unable to export more than 19 rows of data from Excel sheet

    Anyone could please guide me how to export more data from excel sheet.
    I tried with 50 row but only 19 rows are exported.
    Appln builder==> create ==> Export from spread sheet --> Copy paste / csv export (i tried both) but i got only 19 rows.
    Regards,
    Manoj

    Hi Manoj,
    If you're talking about the 19 rows you see while in the create wizard, that is just a sample of the data so you can see what you're working with while specifying column names, types, etc. Once you finish working in the wizard it should import all of the rows assuming there aren't any error-rows.
    Hope this helps,
    John
    If you find this information useful, please mark the post "helpful" or "correct" so that others may benefit as well.*

  • Deleting more than one row at a time

    Hey all,
    Im trying to be able to delete rows from my arraylist and UI table but im getting Index out of bounds exep.
    I think its because of the numbering, like counting through the i in the for loop is making it look at something different.
    Can anyone help?
    Thanks!
    selectedObjects = table.getSelectedRows();
                if (selectedObjects.length != 0)
                   for (int i = 0; i < selectedObjects.length; i++)
                        table.deleteRow(selectedObjects);
    rows.remove(selectedObjects[i]);

    I think its because of the numbering, like counting
    through the i in the for loop is making it look at
    something different.This is exactly correct.
    Personally I would look to see if those objects have a method named "clear" or "removeAll" or something like that, so you don't have to write that loop at all.
    But if you do have to write the loop, write a loop that continuously deletes the last entry until there aren't any more. This logic doesn't have the numbering problems that your code does.

Maybe you are looking for

  • Iphone won't sync!

    My Iphone will not sync with my laptop! It says that I must download the 64 bit version of Itunes! I've already done this 3 times and it still gives the same message! What can I do?

  • Locks on tables.

    Hi All, One of customer asked me to look at Locks in database, and I informed them that there are SHARED and UPDATE locks with grant permission, Now customer came back again and asking for the TABLES on which these SHARED and UPDATE locks happen ofte

  • CS2 run on Intel, Leopard?

    I need to keep older versions of InDesign to match clients, but if I upgrade my equipment to an Intel machine running Leopard, will InDesign CS2 run OK on it?

  • Finder quits after mavericks update.. now what???

    finder quits after mavericks update.. now what???

  • Creating a new IDoc

    Dear all , I need to create an IDoc for testing in quality enviroment. I do not have any IDoc with the same Message type to copy from . How do I go about that ?? Thanks in Advance , Vivek K .