Moving data's from collection

Hi friends,
I have a APEX form and soon after if i insert via form means, then it will save the details(data's) in the table. But my question is how to move a data from a collection table to a main table. Is there any way of moving the stored data's from the collection to the table.
Once the data is transferred into the table from collection, the transferred data in the collection has to get deleted. Only the data's which is not transferred to the main table should exist in the collection.
Once the data is transferred from the collection to the table means, then that transferred data (i.e) row data should not exist in collection..
Anyways of achieving it friends.
Brgds,
Mini

Dear Jari,
I have created an example in apex.oracle.com
http://apex.oracle.com/pls/apex
Workspace: mini_ws
Username: [email protected]
Password: 4i@duppyApplication 11569 - Upload Data File..
I have two buttons over there..one is Upload and the other one is Upload1
If u pressed Upload button soon after browsing one csv file with a Separator as ,(comma), then the datas from the .csv file will be saved in the collection..
And after that if u pressed the Upload1 button means, then the data from the collection will be saved in my custom table named(excel_upload_table).
What is the problem that im facing here is.
Suppose if i upload the csv file with an column heading for each column(that is the two column ID, NAME)  means then i couldnt upload the data from collection to my custom table.
I have two columns in my custom table like
<li> ID
<li> Name
But if i upload the csv file without the column heading for each column(that is the two column ID, NAME) means, then i can upload the data from the collection to the my custom table.
How i can proceed with this task, so that i can upload the csv file with the column heading for each and every column.
Brgds,
Mini

Similar Messages

  • HT1296 I just bought a new MacBook Pro and moved data over from my old MacBook Pro.   Everything seemed fine at first but Outlook 2011 for Mac will not run.  It just flashes the Outlook logo briefly and then closes.  Help!

    Everything seemed to work fine after moving everything over from my old MacBook Pro at first but I cannot run Outlook 2011 for Mac.  The logo displays briefly and then the app closes.  It never really even gets anything loaded other than the little logo.

    Try removing and reinstalling Outlook
    Next try posting in a more appropriate forum. this is the iPod touch forum

  • I just got a new MacBook Air -- Moving data over from the Time Capsule over WiFi??

    I just bought a new MacBook Air because my MacBook Pro 2008 died completely. I own a Time Capsule and it backed up regularly. I'd like to just move over all my data to my new 256GB MacBook Air, but it doesn't seem to be recognizing the Time Capsule over WiFi? I had the Time Capsule set to backup over Ethernet. Does this mean I can only access my files vs. Ethernet? Does that mean I need a USB to Ethernet adapter?

    Backing up other Ethernet doesn't prevent access via Wi-Fi.
    If the Time Capsule creating a wireless network?  If not, you'll need to configure it to do so in order to allow the MBA to connect to it.  If it does, can you connect the MBA to the Time Capsule's network?
    Depending on the amount of data you want to transfer, using a USB-to-Ethernet adapter would help things run faster.

  • Moving data string from a jtextarea into an array

    i was looking for some advice. how would i be able to take chunks of text on a paragraph by paragraph basis and enter them into an array. which would result in paragraph1 in array 0, and so on. is this possible to do? i have never really used straing arrays before, and if anyone knows of any online tutorials it would be a great help
    thank u

    here you go, forgive the gui, very sloppy looking, press the Click me button to store the jtextarea data into the array and show output button to see what the value stored in the array is. there are 2 classes:
    class MyMain {
          public static void main(String args[]){
              MyMain main = new MyMain();
              main.createIt();
          public void createIt() {
              MyFrame frame = new MyFrame();
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    class MyFrame extends JFrame {
          String[] myString = new String[1];
          JTextArea textArea = new JTextArea();
          JButton myButton = new JButton("Click me");
          JButton outButton = new JButton("Show output");
          MyFrame() {
              myButton.addActionListener(new ButtonListener());
              outButton.addActionListener(new OutListener());
              getContentPane().setLayout(new GridLayout(1,3));
              getContentPane().add(myButton);
              getContentPane().add(textArea);
              getContentPane().add(outButton);
              setVisible(true);
          class ButtonListener implements ActionListener{
              public void actionPerformed(ActionEvent e){
                  myString[0] = textArea.getText();
          class OutListener implements ActionListener{
              public void actionPerformed(ActionEvent e) {
                  System.out.println(myString[0]);
    }

  • Error getting value from collection to a date picker field

    Hi all,
    I'm stumble with getting correct data value from collection.
    The column is described as
    'wwv_flow_item.date_popup(3,null, c002, 'dd/mm/yyyy', 10, 10) purchase_date'
    This field is causing error: 'report error:
    ORA-01843: invalid month'
    I'm sure, c002 has correct value '08/08/2003' because I've temporarily changed description of the field to
    'htmldb_item.text(3,c002,10) purchase_date' that returned correct value.
    What can be wrong? I'm puzzled.
    Any suggestion please.

    Are you sure that when you used 'htmldb_item.text(3,c002,10) purchase_date' you got 08/08/yyyy and not 0808yyyy. I have seen that message often in Oracle (outside of HTMLDB) and it is normally when one assumes one format when it is actually another, or the leading zero gets dropped (08082005 becomes 8082005, which converts to 80/82/0205).

  • Moving data forward 30 days, 60 days, 90 days

    Hi - I have an issue trying to move a set of data 30 days forward. I have tried using SHIFT and PRIOR, but they seem to work best moving data up from prior month(s). My CurCycleOutMonths are from Aug:Dec. What I am trying to have the calc script do is, move the data that is in Aug:Dec to move 3 months forward. So, the data that is in Aug will be in Nov, Sep data will be in Dec, Oct I will shift to next year Jan.
    FIX(VersionA,Actual,GM,@relative("Top End",0),"Studio Output Deal",@UDA("Titles",GM))
         FIX (FY10)          
              FIX (&CurCycleOutMonths)
              "W1-PR"
                   IF(@ISMBR("Amort Amount"))
                   "W1-PR" = @SHIFT("W1-PR"->"Amort Amount",-3,);
                   ENDIF
              ENDFIX     
         ENDFIX                    
    ENDFIX

    Are you looking for a brute force method or a generic calc script?
    using brute force (A couple of assumptions
    Your periods are dense, Amort amount is in a dense dimension)
    FIX(VersionA,Actual,GM,@relative("Top End",0),"Studio Output Deal",@UDA("Titles",GM))
    FIX (FY10)
    FIX ("W1-PR","AMort Amount")
    Nov(
    Nov = Aug;
    Dec = Sep;
    Jan->FY11 = Oct;
    ENDFIX
    ENDFIX
    ENDFIX
    I'm not sure if you wanted to copy the data or move it. If you want to move it add
    Aug(
    Cleardata Aug;
    Clear data Sep;
    Cleardata Oct;
    After the first calc but before your endfix. The one thing about tis is you can only move it once. Once you do, your source data is gone. I don't typically like this as I like to be able to run repetatively and get the same result. If you are going to do the, make sure you back up your data first

  • Creating a collection from a query in Apex 4.2 is not populating the data into the collection.

    I have a process that creates a collection with data from multiple tables. The query returns multiple rows in 'Sql commands' tab. The same query is used to create the collection in 'Before Header' and when i create a region with Region source as
    Select * From apex_collections Where collection_name = 'load_dashboard';
    At the time of rendering the page shows me 'no data found'.
    what could be the problem? Are there any prerequisites before creating the collection?
    Thanks in Advance,
    Sriram

    Hi Denes,
    Below is my code for creating and saving data into the collection.
    if apex_collection.collection_exists(p_collection_name =>'load_dashboard') then
       apex_collection.delete_collection(
             p_collection_name =>'load_dashboard');
    end if;
    apex_collection.create_collection_from_query(
        p_collection_name => 'load_dashboard',
        p_query => 'select a.rowid
                   ,b.first_name
                   ,b.last_name
                   ,c.job_title
                   ,d.parent
                   ,d.child_level_1
                   ,d.child_level_2
                   ,a.resource_allocation
                   ,a.person_id
                   ,a.month_id
                   ,a.oracom_project_id    ,wwv_flow_item.md5(a.rowid,b.first_name,b.last_name,c.job_title,d.parent,d.child_level_1,d.child_level_2,a.resource_allocation,a.person_id,a.month_id,a.oracom_project_id)
    from oracom_resource_management a, oracom_people b,oracom_job c ,oracom_project d where a.supervisor_id=886302415 and a.month_id=201312 and a.oracom_job_id=c.job_id and a.person_id=b.person_id and a.oracom_project_id=d.oracom_project_id',
       p_generate_md5 => 'YES'
    Sriram.

  • Which CKM is used for moving data from Oracle to delimited file ?

    Hi All
    Please let me know Which CKM is used for moving data from Oracle to delimited file ?
    Also is there need of defining each columns before hand in target datastore. Cant ODI take it from the oracle table itself ?

    Addy,
    A CKM is a Check KM which is used to validate data and log errors. It is not going to assist you in data movement. You will need an LKM SQL to File append as answered in another thread.
    Assuming that you have a one to one mapping, to make things simpler you can duplicate the Oracle based model and create a file based model. This will take all the column definitions from the Oracle based model.
    Alternatively, you can also use an ODI tool odiSQLUnload to dump the data to a file
    HTH

  • What are required Oracle products for moving data from IBM IMS/DB(mainframe) to Oracle environment?

    I am z/OS system programmer, our company is using IMS as its main OLTP database. We are investigating moving data off the mainframe for data warehousing and online fraud detection. One option is using IBM InfoSphere CDC and DB2, another option is using IMS connect and writing our own program, I am wondering what is the oracle solution for this kind of issue?
    I am not oracle technician but I googled and find out Oracle has some product like Oracle Legacy Adapters, OracleAS CDC Adapter and Oracle Connect on z/OS, however I didn't find them in Oracle site(https://edelivery.oracle.com/), I don't know whether these products are deprecated or not?!
    I would very much appreciate any help or guidance you are able to give me

    Thank you for responding.
    I've considered dumping the data into a flat file and using SQL*Loader to import as you suggest but this would require some scripting on a per-table basis. Again: all I want to do is to copy the contents of a table from one database to another. I do not think I should have to resort to creating my own dump and load scripts in order to do that. However I agree with you that this type of solution may be my final solution.
    I've tried the db link solution. It was just a slow as the 'imp' solution for some reason. Don't know why. The tables are rather large (3 tables of a few Gb each) and therefore require intermediate commits when loaded. Otherwise the rollback segment will run out of space. So the 'db link solution' is really a PL/SQL script with a commit for each x records.
    I think Oracle is making it a bit difficult for me to copy the contents of a table from one database to another and to do it efficiently. Perhaps I'm missing something here?

  • Moving Data from Normal table to History tables

    Hi All,
    I'm in the process of moving data from normal tables to
    History tables.
    It can be some sort of a procedure which should be a cron job running at night.
    My aim is to move data say 1.5 yrs or 2yrs old data to History tables.
    What aspects i need to check when moving data. And how can i write a procedure for this requirement.
    The schema is same in both the normal table and history table.
    It has to be a procedure based on particular field RCRE_DT.
    If the rcre_dt is above 2 yrs the data needs to be moved to HIS_<table>.
    I have to insert record in to HIS_table and simultaneously delete record from the normal table.
    This is in Production system and the tables are quite big.
    Pls do find enclosed the attached sample schema for Normal table and HIS_<table>.
    If i want to automate this script as a Cron job for similarly other History tables
    how am i to do it in a single procedure assuming the procedure for moving the data is the same procedure.
    Thanks for ur help in advance.
    SQL> DESC PXM_FLT;
    Name Null? Type
    RCRE_USER_ID NOT NULL VARCHAR2(15)
    RCRE_DT NOT NULL DATE
    LCHG_USER_ID VARCHAR2(15)
    LCHG_DT DATE
    AIRLINE_CD NOT NULL VARCHAR2(5)
    REF_ID NOT NULL VARCHAR2(12)
    BATCH_DT NOT NULL DATE
    CPY_NO NOT NULL NUMBER(2)
    ACCRUAL_STATUS NOT NULL VARCHAR2(1)
    FLT_DT NOT NULL DATE
    OPERATING_CARRIER_CD NOT NULL VARCHAR2(3)
    OPERATING_FLT_NO NOT NULL NUMBER(4)
    MKTING_CARRIER_CD VARCHAR2(3)
    MKTING_FLT_NO NUMBER(4)
    BOARD_PT NOT NULL VARCHAR2(5)
    OFF_PT NOT NULL VARCHAR2(5)
    AIR_CD_SHARE_IND VARCHAR2(1)
    UPLOAD_ERR_CD VARCHAR2(5)
    MID_PT1 VARCHAR2(5)
    MID_PT2 VARCHAR2(5)
    MID_PT3 VARCHAR2(5)
    MID_PT4 VARCHAR2(5)
    MID_PT5 VARCHAR2(5)
    PAX_TYPE VARCHAR2(3)
    PAY_PRINCIPLE VARCHAR2(1)
    SQL> DESC HIS_PXM_FLT;
    Name Null? Type
    RCRE_USER_ID NOT NULL VARCHAR2(15)
    RCRE_DT NOT NULL DATE
    LCHG_USER_ID VARCHAR2(15)
    LCHG_DT DATE
    AIRLINE_CD NOT NULL VARCHAR2(5)
    REF_ID NOT NULL VARCHAR2(12)
    BATCH_DT NOT NULL DATE
    CPY_NO NOT NULL NUMBER(2)
    ACCRUAL_STATUS NOT NULL VARCHAR2(1)
    FLT_DT NOT NULL DATE
    OPERATING_CARRIER_CD NOT NULL VARCHAR2(3)
    OPERATING_FLT_NO NOT NULL NUMBER(4)
    MKTING_CARRIER_CD VARCHAR2(3)
    MKTING_FLT_NO NUMBER(4)
    BOARD_PT NOT NULL VARCHAR2(5)
    OFF_PT NOT NULL VARCHAR2(5)
    AIR_CD_SHARE_IND VARCHAR2(1)
    UPLOAD_ERR_CD VARCHAR2(5)
    MID_PT1 VARCHAR2(5)
    MID_PT2 VARCHAR2(5)
    MID_PT3 VARCHAR2(5)
    MID_PT4 VARCHAR2(5)
    MID_PT5 VARCHAR2(5)
    PAX_TYPE VARCHAR2(3)
    PAY_PRINCIPLE VARCHAR2(1)

    Hi All,
    Thanks for ur valuable suggestion.But can u explain me bit more on this as i'm still confused about switching between partitoned tables and temporary table.Suppose if i have a table called PXM_FLT and an correspoding similar table named HIS_PXM_FLT.How can i do the partitioning shd i do the partitioning on the normal table or HIS_PXM_FLT.i do have a date field for me to partition based on range.Can u pls explain why shd i again create a temp.table.What's the purpose.Now the application is designed in such a way that old records have to be moved to HIS_PXM_FLT.can u pls highlight more on this.Your suggestions are greatly appreciated.As i'm relatively new to this partitioning technique i'm bit confused on how it works.But i came to understand Partitioning is a better operation than the normal insert or delte as it is more data intensive as millions of record need to be moved.Thanks for feedback and ur precious time.

  • Switching/Moving Data from Powerbook to MacBook

    Hey All,
    I just received a new MacBook, and I need to go about moving my information from one to the other. I have a LaCie external with most of my applications and documents on it, but I'm wondering about moving things like my mail accounts (with its "on my mac" mailboxes), address book contacts, etc.
    Also, if I have programs like MS Word, which I had to supply a code in order to install on my Powerbook, will I need to supply a new code to put it on the MacBook, even if I'm transferring it through my external hardrive from the G4?
    Thanks,
    Drayton

    A Basic Guide for Migrating to Intel-Macs
    If you are migrating a PowerPC system (G3, G4, or G5) to an Intel-Mac be careful what you migrate. Keep in mind that some items that may get transferred will not work on Intel machines and may end up causing your computer's operating system to malfunction.
    Rosetta supports "software that runs on the PowerPC G3 or G4 processor that are built for Mac OS X". This excludes the items that are not universal binaries or simply will not work in Rosetta:
    Classic Environment, and subsequently any Mac OS 9 or earlier applications
    Screensavers written for the PowerPC
    System Preference add-ons
    All Unsanity Haxies
    Browser and other plug-ins
    Contextual Menu Items
    Applications which specifically require the PowerPC G5
    Kernel extensions
    Java applications with JNI (PowerPC) libraries
    See also What Can Be Translated by Rosetta.
    In addition to the above you could also have problems with migrated cache files and/or cache files containing code that is incompatible.
    If you migrate a user folder that contains any of these items, you may find that your Intel-Mac is malfunctioning. It would be wise to take care when migrating your systems from a PowerPC platform to an Intel-Mac platform to assure that you do not migrate these incompatible items.
    If you have problems with applications not working, then completely uninstall said application and reinstall it from scratch. Take great care with Java applications and Java-based Peer-to-Peer applications. Many Java apps will not work on Intel-Macs as they are currently compiled. As of this time Limewire, Cabos, and Acquisition are available as universal binaries. Do not install browser plug-ins such as Flash or Shockwave from downloaded installers unless they are universal binaries. The version of OS X installed on your Intel-Mac comes with special compatible versions of Flash and Shockwave plug-ins for use with your browser.
    The same problem will exist for any hardware drivers such as mouse software unless the drivers have been compiled as universal binaries. For third-party mice the current choices are USB Overdrive or SteerMouse. Contact the developer or manufacturer of your third-party mouse software to find out when a universal binary version will be available.
    Also be careful with some backup utilities and third-party disk repair utilities. Disk Warrior (does not work), TechTool Pro (pre-4.5.1 versions do not work), SuperDuper (newest release works), and Drive Genius (untested) may not work properly on Intel-Macs. The same caution may apply to the many "maintenance" utilities that have not yet been converted to universal binaries.
    Before migrating or installing software on your Intel-Mac check MacFixit's Rosetta Compatibility Index.
    Additional links that will be helpful to new Intel-Mac users:
    Intel In Macs
    Apple Guide to Universal Applications
    MacInTouch List of Compatible Universal Binaries
    MacInTouch List of Rosetta Compatible Applications
    MacUpdate List of Intel-Compatible Software
    Transferring data with Setup Assistant - Migration Assistant FAQ
    Because Migration Assistant isn't the ideal way to migrate from PowerPC to Intel Macs, using Target Disk Mode or copying the critical contents to CD and DVD or an external hard drive will work better when moving from PowerPC to Intel Macs.
    Basically the instructions you should follow are:
    1. Backup your data first. This is vitally important in case you make a mistake or there's some other problem.
    2. Connect a Firewire cable between your old Mac and your new Intel Mac.
    3. Startup your old Mac in Target Disk Mode.
    4. Startup your new Mac for the first time, go through the setup and registration screens, but do NOT migrate data over. Get to your desktop on the new Mac without migrating any new data over.
    4. Copy the following items from your old Mac to the new Mac:
    In your /Home/ folder: Documents, Movies, Music, Pictures, and Sites folders.
    In your /Home/Library/ folder:
    /Home/Library/Application Support/AddressBook (copy the whole folder)
    /Home/Library/Application Support/iCal (copy the whole folder)
    Also in /Home/Library/Application Support (copy whatever else you need including folders for any third-party applications)
    /Home/Library/Keychains (copy the whole folder)
    /Home/Library/Mail (copy the whole folder)
    /Home/Library/Preferences/com.apple.mail.plist (* This is a very important file which contains all email account settings and general mail preferences.)
    /Home/Library/Preferences/ copy any preferences needed for third-party applications
    /Home /Library/iTunes (copy the whole folder)
    /Home /Library/Safari (copy the whole folder)
    If you want cookies:
    /Home/Library/Cookies/Cookies.plist
    /Home/Library/Application Support/WebFoundation/HTTPCookies.plist
    For Entourage users:
    Entourage is in /Home/Documents/Microsoft User Data
    Also in /Home/Library/Preferences/Microsoft
    Credit goes to another forum user for this information.
    If you need to transfer data for other applications please ask the vendor or ask in the Discussions where specific applications store their data.
    5. Once you have transferred what you need restart the new Mac and test to make sure the contents are there for each of the applications.
    Written by Kappy with additional contributions from a brody.

  • Moving data from an array to a JTable

    Hi,
    I am facing some problems with handling array data to JTable.
    My objective is moving data from a 10X5 data array to a JTable.
    I am using the following code:
    String columnNames = { "Col 1", "Col 2", "Col 3", "Col 4", "Col 5" };
    for(int j=0; j<10; j++)
    data[ j ] = array1[ j ] + array2[ j ] + array3[ j ] + array4[ j ] + array5[ j ];
    JTable table = new JTable( data, coulmnNames);
    Can you please help me with the error in tha above code.My array1 is a String array and the other four arrays are of Integer data type.
    Thanks!!!

    hi,
    The actual error message is:
    [root@localhost java]# javac GUI.java
    GUI.java:144: incompatible types
    found : int
    required: java.lang.Object
    data [j] [1] = array1[j];
    ^
    GUI.java:145: incompatible types
    found : int
    required: java.lang.Object
    data [j] [2] = array2[j];
    ^
    GUI.java:146: incompatible types
    found : int
    required: java.lang.Object
    data [j] [3] = array3[j];
    ^
    GUI.java:147: incompatible types
    found : int
    required: java.lang.Object
    data [j] [4] = array4[j];
    ^
    4 errors
    My code segment with line no goes as follows:
    private static JTable createTable() {         
           String[] columnNames = { "Col 1", "Col 2", "Col 3", "Col 4"' "Col 5" };
             Object data [ ] [ ] = new Object [10] [5];
       for( int j=0; j<10; j++)
              data [j] [0] = array1[j]; ...................Line:144
              data [j] [1] = array2[j]; ..................Line 145
              data [j] [2] = array3[j]; ....................Line 146
              data [j] [3] = array4[j]; .................Line 147
              data [j] [4] = array5[j];
      final JTable table = new JTable(data, columnNames);
      return table;
    [code/]
    Array 1 is declared as String array and Array 2,3,4,5 are declared as Integer arrays.The error is coming from the Integer arrays only.
    Java version running on my machine is: 1.4.2
    Please help!!!
    Thanks!!!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Moving data from flat file

    Hi,
    I am moving data from flat file to oracle table. while populating the oracle table if I get any errors in flat file those errors should populate in ODI error table.
    Is this is possible? if yes. Could you please let me know the set up in ODI.

    CKM is the dedicated for checking the constraints while doing transformation. The constraints includes, PK,FK, conditions etc.,
    There are two types/ways of checking the constraints.
    Flow Control: Triggered CKM after data is loaded in to I$.
    Static Control : Triggered CKM after data is loaded in to target table.
    If you opt for any one the above ODI will create E$ and SNP_CHECK_TAB (summary table for logging the errors) and load the error records.
    ODI will also provide you an option of loading the corrected error records by RECYCLE ERROR feature. In this phase/run ODI will load ONLY the error records in to target table (assuming its been corrected/cleaned).
    **how to set up flow control could you please provide steps**
    **Appreciate your help**

  • Error occurred moving data from the transformation RECON_SEQ_GEN: to the transformation FILTRANS.

    Hi,
    Today one my task in the DAC Etl failed and when I opened the DAC log file of it. I saw the error description as below
    Error while contacting Informatica server for getting workflow status for PLP_SRC_WH_AP_Invoice_Reconciliation
    Error Code = 36331:Unknown reason for error code 36331
    Since there is no much information in DAC log file about the failure, I opened the PLP_SRC_WH_AP_Invoice_Reconciliation session log file.
    The error description in the session log file says.
    There is an error in the port [NEXTVAL]: The default value for the port is set to: ERROR(<<Expression Error>> [ERROR]: transformation error
    ... nl:ERROR(u:'transformation error')).
    2014-01-14 08:00:45 : ERROR : (582188 | TRANSF_1_1_1) : (IS | Oracle_BI_DW_Server) : node01_ : TT_11023 : An error occurred converting data in the port [NEXTVAL]. The row was dropped.
    2014-01-14 08:00:45 : ERROR : (582188 | TRANSF_1_1_1) : (IS | Oracle_BI_DW_Server) : node01_ : TT_11021 : An error occurred moving data from the transformation RECON_SEQ_GEN: to the transformation FILTRANS.
    2014-01-14 08:00:45 : ERROR : (582188 | TRANSF_1_1_1) : (IS | Oracle_BI_DW_Server) : node01 : CMN_1086 : RECON_SEQ_GEN: Number of errors exceeded threshold [1].
    2014-01-14 08:00:45 : INFO : (582188 | TRANSF_1_1_1) : (IS | Oracle_BI_DW_Server) : node01_ : CMN_1053 : : Rowdata: ( RowType=-4(error but dropped due to abort) Src Rowid=1186281 Targ Rowid=1186281
      NEXTVAL (ROW_WID:Int:): "(NULL)"
    I am not sure of this error and I have never seen before. Can any one share some ideas on how to tackle this error and make the task execute successfully.
    Many Thanks.

    Hi,
    fist check weather any special characteristics if not
    check in data source under this we have fields tab check the format of a particular field format internal/external/check u choose internal format, if any check routine once
    use Semantic Groups in the DTP.
    Try  it
    Thanku
    lokeeshM
    Edited by: lmedaSAP_BI on Oct 20, 2010 6:44 AM

  • Bridge CS5: Images added to collection get removed from collection

    This is the first time I used non-smart collections. But, I'm sure that I'm quite sure that I'm not doing anything wrong.
    I simply dragged thumbnails into the collection from various folders and the collection shows all 20 images. Then, I close out Bridge and open it later, only to find that there are only 4 images in that collection. There may have been 4 images to start with, but every image I've added does not get remembered. This has happened twice and it's very unnerving because the images I am adding are coming from folders that are all over the place and it's very hard to look up all the pictures again.
    What's up with this?
    Thanks,
       Mike

    I've just noticed this problem, by chance, whilst moving data to a new computer.
    We found that files that were in collections were randomly missing from Bridge CS5's display, and sure enough, as described earlier, as soon as a file in the collection with a quote/spostrophe was read, that file and the rest of the collection were missing from Bridge CS5's display.
    (This was using Bridge 4.0.3.9. Adobe Application Manager tells me my software is uptodate)
    Because we had some backed up copies of Collections from both Bridge CS4 and Bridge CS5, I've been able to work a few things out, which I hope might help someone at Adobe get the problem fixed - and might help a few frustrated users too...
    Background
    The following entirely applies to Windows 7 (and presumably Windows Vista too):
    In Bridge CS4, collections files are stored in:
    C:\Users\%USERNAME%\AppData\Roaming\Adobe\Bridge CS4\Collections
    In Bridge CS5, collections files are stored in:
    C:\Users\%USERNAME%\AppData\Roaming\Adobe\Bridge CS5\Collections
    Both CS4 and CS5 store their Collections in files called <collection name>.filelist
    Both are XML files, where file paths are surrounded by apostrophes:
    For example:
    <file uri='bridge:fs:file:///D:/Shared%20Images/Flowers/RHS/DSC_0788.jpg'>
    Both Bridge CS4 and CS5 convert any spaces in file paths to %20 - so /Shared%20Images/ above is actually /Shared Images/ on disk.
    The cause of the bug
    Crucially, however, in Bridge CS4, any apostrophes (i.e. single quotes) in file paths get converted to %27
    But this conversion does not happen in Bridge CS5. And then when filelists get read back in, the data is truncated.
    As a developer, I'm surprised at this sort of regression in behaviour, in such expensive software from such a large company.
    Workarounds
    None of these should be required to be done by a user, I feel, but I have found that they do work, and they could be scripted (e.g. in Python) if someone were sufficiently desparate:
    Edit your .filelist files that were created by Bridge CS5, and convert all ' in file paths to %27 - oh yes, and remember to do that every time you add any new files to any existing or new Collections
    Edit your .filelist files and change the single quotes at the start and end of each <file uri line to double quotes
    I don't regard "remove quotes from your file names" as an acceptable workaround, however. We've got nearly 400GB of files, going back more than 10 years, and various of these are referred to from other locations, e.g. InDesign publications: if we were to rename locations for the benefit of Bridge, we'd break other stuff on the PC.
    Clare

Maybe you are looking for

  • Problem with Checkbox and Button components....(Simple one)

    Hi all,           As I am new to flash and ActionScript 3.0,I have the following issue regarding Flash.           I have 2 swf files whose contents are as follows: First.swf file contains a check-box (instance name:my_checkbox).    Second.swf file co

  • Templates with rollovers

    I have rollovers in my nav, with the corresponding button being in the highlighted position when you're on that page. Because one button is going to be "highlighted" on each page, I don't see how I can use a template for the navigation. Does anyone k

  • Can't change identity in Acrobat on Mac

    Hello, I am unable to change my identity in Acrobat 11 for Mac.

  • Error when trying SHOW=Y on dump file

    Hi All, Source: Oracle 10G on Windows 2003 Target: Oracle 11G r2 on Windows 2008 R2 I have a dump file created from the source as : exp 'sys/password@production as sysdba' file=F:\Export\mmsprd.dmp full=yes log=F:\Export\mmsprd.logAfter doing: imp 's

  • SSL/TLS compression

    Is there a way to turn on compression for client-mode SSL sockets in Java 5 or 6? The deflate compression method has been standardized for a few years now, and it looks like Apache and OpenSSL 0.9.8 now support it, so it would be really handy to have