Bringing data from Excel, same content with different file name

Hello world

I was download data from Excel files with success so far.

The files that I used to download, have had the same 'FileName.xls '. Now, what I have is a workbook with a different name, so I guess as it was not created on the ODB like that he will not be transferred, in the name of the file is the same. Let me explain better.

MYBEAUTIFULXLS.xls - before
MYBEAUTIFULXLS_MORETEXT.xls - now

Can I use something like MYBEAUTIFULXLS % somewhere on the ODI, for him to download data from the files that begin with the characters?

I really appreciate your ideas!

Best regards.

J_ORCL

Option 1 seems to be preferable, because there is risk associated with the 2nd.
And debugging will also be little difficult.

This is my personal opinion only... you can choose the desired option.

Thank you
Fati

Tags: Business Intelligence

Similar Questions

  • Import data from Excel in PDF with Acrobat Pro XI - is it possible? How?

    I need to be able to create a pdf file where certain information can be merged to an Excel spreadsheet in the pdf file so that our land use specialists can use tablets to fill the field. I also need to be able to create a field where the user can join or import a jpg file. Is it possible to do this with Acrobat Pro XI? Another program is necessary. I need to know the answers to my questions by January 28, 2016.

    Hi shannonr80675036,

    Yes, but you there are two things you need to do in Excel for this to work:

    Columns must be named the same as the field names in the PDF form. The names that you use in your PDF form, or you must change the names of fields in the PDF form so that they correspond to the column names in Excel, you can either match. In this example, I took the first approach and used the field names as my column headings:

    When you export your data to Excel file, you must select the "Tab Delimited Text" format. It is one of the export options in Excel (and other spread sheet applications) which is available when you select file > save as:

    Once you have your tabs-delimited text file, open your PDF form, and then select Tools > forms > more form Options and click Import:

    In the file dialog box, select this option to import a text file, browse to your exported text file and select it. In the next screen, you can then choose what import record, you can import only one record at a time:

    This will complete the PDF form with the selected values:

    That, for each record you have in your Excel file and save the PDF file under a new name.

    Kind regards

    Nicos

  • Find photos with different file names?

    Somehow, I have photos with different names. Example: 2015-04-08 13.28.25.jpg and IMG_1668.JPG.

    Trying to get all the photos into the Lightroom Catalog, I am unable to find any pictures unless I know the two names - which I did not.

    And my DuplicateFinder are not nameless a base file name.

    Any ideas?

    Sheila

    Lightroom doesn't have a function automated for something like that, but there are third-party plug-ins. See, for example, here: Finding of pictures duplicate in Lightroom

  • Speed up the transfer of data from Excel

    Hey!

    In my VI, I need the contents of 3 Excel files. The VI then takes in the filter criteria and uses them to filter all the data and produce graphs. Problem is that all 3 Excel files are more than 8000 lines deep and wide of 40 columns. She takes super long to get the data from one of these worksheets, nevermind 3.

    IM only starting this project, so I wanted to find the best way to address the issue.

    Is it possible to quickly transfer all the data from Excel to LabVIEW?

    If I read once and then writes it to a binary file for quick access, which would be better?

    I'm under that LabVIEW 2009 on Windows XP with report generation tool installed too.

    Rkll!

    Then this is the case you have seen either

    This

    http://zone.NI.com/DevZone/CDA/EPD/p/ID/2231

    or

    This

    http://zone.NI.com/DevZone/CDA/EPD/p/ID/3409

    ?

  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • Import data from Excel to ADF

    Hello world
    I need to import data from excel file that I've seen some posts as
    http://technology.AMIS.nl/Blog/8418/ADF-11g-import-from-Excel-into-an-ADF-table
    but it did not work with me.
    Thank you

    N °
    ADFDi binds ADF (web) with MS Office.
    See this demo: http://download.oracle.com/otn_hosted_doc/jdeveloper/111demos/ADFdi_Overview/Overview-ADFdi11g.html

  • How to get data from excel

    Hello world

    How can I get data from excel inside my program? I'm using labview 8.2. I have tried to find the solution for this but seems that the solutions are not suitable. Can someone help me? Thank you.

    Hi jieah,

    Inside of the attachment nijams don't you see this?

    read_excel_values. LLB

  • I just got a call from the same thing with the eventvwr in the race, I wrote down everything, is it a scam?

    I just got a call from the same thing with the eventvwr in the race, I just wrote it down at the bottom, if it is a scam What are they actually accomplishing?  This gives them access to our computers?  They do not seem to be asking for money or that comes up when they try to "fix"?

    You are not alone! See...

    I received a phone call from someone who claims to have a Virus (August 10, 2009 &ff; 40 pages)
    http://answers.Microsoft.com/thread/4489f388-d6de-416d-9158-0079764bb001

  • How many user take RDP at the same time with different user login ID in Server R2 2012

    How many user take RDP at the same time with different user login ID in Server R2 2012?

    How many user take RDP at the same time with different user login ID in Server 2008 R2?

    How many user take RDP at the same time with different user login ID in Server 2012 starndard?

    How many user take RDP at the same time with different user login ID in Server 2008 standard?

    This issue is beyond the scope of this site (for consumers) and to make sure you get the best answer, we need to ask either on Technet (for IT Pro) or MSDN (for developers)

    If you give us a link to the new thread we can point to some resources it
  • Import data from Excel

    Is it possible to import data from Excel into a pdf form.

    I have some text on a form fields that need to be filled automatically.

    Thanks in advance.

    : )

    To manually import from Excel, the simplest method is to first convert a spreadsheet to a tabs-delimited text file. The first line of the sheet must be the exact field names (case matters) corresponding to the data in the following lines.

    In Acrobat 9, you can import a row of data from the file by selecting: forms > manage form data > import data...

    and select the file, then one row of data in the file.

    If you want to do it automatically or by any other non-manual method, post again and provide more information.

  • extract data from a table to a text file

    I need to extract data from a table to a text file, I twist my output is the following...

    bash-3. $00 vi tap3roamercosts_20110915144318.txt
    lines of 'tap3roamercosts_20110915144318.txt' 393948, 23464348 characters
    ^ LAFGTD | N | 2011090203000001 | 13242514000064 | 1. 0 | 20. 41220 | 02-SEVEN.-11. 01-SEPT.-11. 0 | 13244
    755. 64. 70. 0093794428588 | 0093796234547 | 0 | S2 | E | 412200306902634 | 8. 1. 61500 | 16081 |
    | HW | Call to the Roamer. 0 | I have | Roaming billing Inroamer Plan | 1_0_1 | LKA | N_I_Independent
    the time of day. Rate of Roamer SMST systems | AFGTD20110902030000010001013242514000064 |
    |||||||||||||||||||||

    AFGTD | N | 2011090203000001 | 13242612000044 | 1. 0 | 20. 41220 | 02-SEVEN.-11. 01-SEPT.-11. 0 | 13244
    853. 44. 70. 234. 0093793252818 | 0 | S2 | E | 412200303198150 | 8. 1. 61000 | 12403 | HW | -Ro
    bitter call | 0 | I have | Roaming billing Inroamer Plan | 1_0_1 | N_I_Independent time of Da
    There | Rate of Roamer SMST systems | AFGTD20110902030000010001013242612000044 |
    ||||||||

    AFGTD | N | 2011090203000001 | 13242612000047 | 1. 0 | 20. 41220 | 02-SEVEN.-11. 01-SEPT.-11. 0 | 13244
    853. 47. 70. 234. 0093793252818 | 0 | S2 | E | 412200303198150 | 8. 1. 61000 | 12403 | HW | -Ro
    bitter call | 0 | I have | Roaming billing Inroamer Plan | 1_0_1 | N_I_Independent time of Da
    There | Rate of Roamer SMST systems | AFGTD20110902030000010001013242612000047 |
    ||||||||
    .
    .
    .
    .
    .

    Please help me how to format my output each record in simple lines in oracle sqlplus. Here are the settings I used...

    TERMOUT OFF SET;
    SET ECHO OFF;
    SET LINESIZE 100000;
    THE VALUE OF NEWPAGE 0;
    SET SPACE 0;
    SET PAGESIZE 50000;
    SET FEEDBACK OFF;
    SET THE OFF POSITION;
    SET TRIMSPOOL
    SET THE TAB

    And what was wrong with the answers that you have on your previous thread?

    How to extract data in a text file

    Please do not ask the same question again. If there is a problem with the answers provided, then continue on the same thread that tell people what is the problem.

    Saying that, this is another possibility for you...

    As user sys:

    CREATE OR REPLACE DIRECTORY TEST_DIR AS '\tmp\myfiles'
    /
    GRANT READ, WRITE ON DIRECTORY TEST_DIR TO myuser
    /
    

    As myuser:

    CREATE OR REPLACE PROCEDURE run_query(p_sql IN VARCHAR2
                                         ,p_dir IN VARCHAR2
                                         ,p_header_file IN VARCHAR2
                                         ,p_data_file IN VARCHAR2 := NULL) IS
      v_finaltxt  VARCHAR2(4000);
      v_v_val     VARCHAR2(4000);
      v_n_val     NUMBER;
      v_d_val     DATE;
      v_ret       NUMBER;
      c           NUMBER;
      d           NUMBER;
      col_cnt     INTEGER;
      f           BOOLEAN;
      rec_tab     DBMS_SQL.DESC_TAB;
      col_num     NUMBER;
      v_fh        UTL_FILE.FILE_TYPE;
      v_samefile  BOOLEAN := (NVL(p_data_file,p_header_file) = p_header_file);
    BEGIN
      c := DBMS_SQL.OPEN_CURSOR;
      DBMS_SQL.PARSE(c, p_sql, DBMS_SQL.NATIVE);
      d := DBMS_SQL.EXECUTE(c);
      DBMS_SQL.DESCRIBE_COLUMNS(c, col_cnt, rec_tab);
      FOR j in 1..col_cnt
      LOOP
        CASE rec_tab(j).col_type
          WHEN 1 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
          WHEN 2 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_n_val);
          WHEN 12 THEN DBMS_SQL.DEFINE_COLUMN(c,j,v_d_val);
        ELSE
          DBMS_SQL.DEFINE_COLUMN(c,j,v_v_val,2000);
        END CASE;
      END LOOP;
      -- This part outputs the HEADER
      v_fh := UTL_FILE.FOPEN(upper(p_dir),p_header_file,'w',32767);
      FOR j in 1..col_cnt
      LOOP
        v_finaltxt := ltrim(v_finaltxt||','||lower(rec_tab(j).col_name),',');
      END LOOP;
      --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
      UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
      IF NOT v_samefile THEN
        UTL_FILE.FCLOSE(v_fh);
      END IF;
      --
      -- This part outputs the DATA
      IF NOT v_samefile THEN
        v_fh := UTL_FILE.FOPEN(upper(p_dir),p_data_file,'w',32767);
      END IF;
      LOOP
        v_ret := DBMS_SQL.FETCH_ROWS(c);
        EXIT WHEN v_ret = 0;
        v_finaltxt := NULL;
        FOR j in 1..col_cnt
        LOOP
          CASE rec_tab(j).col_type
            WHEN 1 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_v_val);
                        v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
            WHEN 2 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_n_val);
                        v_finaltxt := ltrim(v_finaltxt||','||v_n_val,',');
            WHEN 12 THEN DBMS_SQL.COLUMN_VALUE(c,j,v_d_val);
                        v_finaltxt := ltrim(v_finaltxt||','||to_char(v_d_val,'DD/MM/YYYY HH24:MI:SS'),',');
          ELSE
            v_finaltxt := ltrim(v_finaltxt||',"'||v_v_val||'"',',');
          END CASE;
        END LOOP;
      --  DBMS_OUTPUT.PUT_LINE(v_finaltxt);
        UTL_FILE.PUT_LINE(v_fh, v_finaltxt);
      END LOOP;
      UTL_FILE.FCLOSE(v_fh);
      DBMS_SQL.CLOSE_CURSOR(c);
    END;
    

    This allows the header line and the data to write into files separate if necessary.

    for example

    SQL> exec run_query('select * from emp','TEST_DIR','output.txt');
    
    PL/SQL procedure successfully completed.
    

    Output.txt file contains:

    empno,ename,job,mgr,hiredate,sal,comm,deptno
    7369,"SMITH","CLERK",7902,17/12/1980 00:00:00,800,,20
    7499,"ALLEN","SALESMAN",7698,20/02/1981 00:00:00,1600,300,30
    7521,"WARD","SALESMAN",7698,22/02/1981 00:00:00,1250,500,30
    7566,"JONES","MANAGER",7839,02/04/1981 00:00:00,2975,,20
    7654,"MARTIN","SALESMAN",7698,28/09/1981 00:00:00,1250,1400,30
    7698,"BLAKE","MANAGER",7839,01/05/1981 00:00:00,2850,,30
    7782,"CLARK","MANAGER",7839,09/06/1981 00:00:00,2450,,10
    7788,"SCOTT","ANALYST",7566,19/04/1987 00:00:00,3000,,20
    7839,"KING","PRESIDENT",,17/11/1981 00:00:00,5000,,10
    7844,"TURNER","SALESMAN",7698,08/09/1981 00:00:00,1500,0,30
    7876,"ADAMS","CLERK",7788,23/05/1987 00:00:00,1100,,20
    7900,"JAMES","CLERK",7698,03/12/1981 00:00:00,950,,30
    7902,"FORD","ANALYST",7566,03/12/1981 00:00:00,3000,,20
    7934,"MILLER","CLERK",7782,23/01/1982 00:00:00,1300,,10
    

    The procedure allows for the header and the data to separate files if necessary. Just by specifying the file name "header" will put the header and the data in a single file.

    Adapt to the exit of styles and different types of data are needed.

  • Playback of multiple files with different file extensions

    Hi all

    Is there a way where we can read multiple files with different file extensions using file adapter?



    < property name = value=".*\.csv"IncludeFiles"/ >

    Can include us a few models more file in the property above? Please let me know

    Yes you can. .

    But here, the thing you need to do is all these files must have the same format (XSD)

    You can dynamically pass the name of the file to invoke the activity of the file that is the property of jca.file.filename

    The value given when you set up the adapter will be written by this value. .

    Hope this will help you

    If this is not the case, let me know. .

    Thank you & best regards

    Sharath Kumar

  • Is it possible to migrate a planing with different database name application?

    Hi gurus,

    is 1] possible to migrate an application planing with different database name via the LCM in EMP 11 utility?

    [2] we can migrate application of planning with different names from DB in sys9 too?

    You must update this table, restart planning. You must also rename the database through the Regional service.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Streaming of files with different files

    Hello

    I am new to FMS4 and I'm having a problem reading some files with different files.

    I have different files in C:\media3\feeds

    in this directory I file '1', '2' and '3 '.

    other words C:\media3\feeds\1

    C:\media3\feeds\2

    C:\media3\feeds\3

    I changed in the config file, fms.ini

    VOD_DIR = C:\media3\feeds\

    and

    VOD_COMMON_DIR = C:\media3\feeds\

    I've only had the f4v files to work in C:\media3\feeds\ which link is rtmp://localhost/vod/mp4:testfile.f4v

    then I tired to have some files in C:\media3\feeds\ as mentioned above

    I tried to put < streams >; < C:\media3\feeds\1 < / stream > in the Applications.xml file in the C:\Program Files\Adobe\Flash Media Server 4\applications\vod

    and rtmp://localhost/vod/1/mp4:testfile.f4v used

    Here's the piece of the App file

    < application >

    < StreamManager >

    < VirtualDirectory >

    <!-specifies the mapping of application for recorded streams specific virtual directory.   ->

    stream <>; ${VOD_COMMON_DIR} < / flow >

    stream <>; ${VOD_DIR} < / flow >

    stream <>; < C:\media3\feeds\1 < / flow >

    stream <>; < C:\media3\feeds\2 < / flow >

    < / VirtualDirectory >

    nothing has worked

    can someone help me with this?

    If you are using

    VOD_DIR = C:\media3\feeds\ or VOD_COMMON_DIR = C:\media3\feeds\

    and have the files in the folder "1" which is under "C:\media3\feeds\".

    then you URI must be rtmp://localhost/vod/mp4:1 / testfile.f4v (where testfile.f4v is present under C:\media3\feeds\1)

    If you are using

    /; C:\media3\feeds\1

    /; C:\media3\feeds\2

    Then your URI should be rtmp://localhost/vod/mp4:testfile.f4v (where testfile.f4v is present under C:\media3\feeds\1 or C:\media3\feeds\2)

    Please note in your configuration you specified

    /;<>

    /;<>

    Please remove ".<" in=""><>

  • Adobe flash error: cannot save the document please try to save to a different file name

    Hello

    I am to change a few files fla with my Adobe Flash Professional. Suddenly he stopped to save and gives me an error; Cannot save the document under... Please try to save to a different file name or to another location.

    I changed the location where to save the files, but I still get the same error.

    Is there anyone who knows how to deal with this error?

    Thank you

    zipper.  right click on its icon or start the program and click "Run as Administrator".  Save your fla.

    If that fails: restart your computer, create a new directory on your desktop and save a fla test (for example, named test) to this new directory.  any problem?

Maybe you are looking for

  • TBird will not easily allow an apostrophe to be inserted into a Word

    Suppose you want to insert a ' say in one word - used. Now, I'm going to try to insert it: custom ' "-even if I put the cursor in the right place, the symbol appeared in the wrong place." Let's try again (note that happened there by typing normal wit

  • Problem with HBO go App on Iphone 6 s

    I am unable to play a video on the HBO Go app.  Instead, I get "error video, operation canceled."  I contacted the support HBO and they said that they were unable to reproduce my problem on their end, and that's why it must be a problem with my phone

  • protection against overheating

    I bought one a few weeks ago, the retina of the iMac, 4 K.   I enjoy from a PC back to the ground.   When I taught that we all had Macbook pro computers among teachers and it was fine. The question is that I have a program that really needs the compu

  • reCAPTCHA works in IE8, but not in Firefox - missing graphics

    reCAPTCHA works in IE8, but not in Firefox All the graphics, the challenge, radio buttons and logo do not appear.

  • LabVIEW 8.3 Internet connection

    I'm running an executable of labview that made several attempts to connect to the internet to reference a website OR in the middle of the night.  I am not connected to the internet not I. Does anyone know how to disable this?