Import many excel file into owb automatically

Is it possible to load several excel files in owb automatically?
I want to avoid the follow situation...
I have like 100 excel files I have to create 100 system dsn each pointing to one excel file.
Is it possible?
Thanks

owb treat excel file as database. so you can keep your content in one excel but across different worksheet.
if you want to have multiple excel to be read by owb then create seperate dsn.
otherwise create flat files(pipe delimited) by SSIS service and use OWB to load data from flat files.

Similar Messages

  • Import excel file into owb automatically, is it possible?

    Is it possible to load several excel files in owb automatically?
    I want to avoid the follow situation...
    I have like 100 excel files I have to create 100 system dsn each pointing to one excel file.
    Is it possible?
    Thanks

    The forum is how to integrate foreign databases into an oracle database using gateway. From the provided description you're trying to import an Excel file directly into OWB. OWB has its own mechanism to import these files , so better post your issue in the OWB forum:
    Warehouse Builder

  • Import an excel file into SQL Developer and create a table

    Hello everyone!
    I have an Excel file I want to Import into SQL Developer. Do I need to Create a table first than import the file into the table?
    Or is there a way to import an Excel file and it automatically generate or turn into a table?
    I would really appreciate any directions or explanations.
    Thanks everyone!
    Java Man

    Joyce Scapicchio wrote:
    I suspect that you are having memory problems opening the excel file. This is a known issue with excel files for importing and exporting. Check this post for suggestions:
    Re: Export to Excel Hangs to Excel Hangs ]
    Joyce Scapicchio
    SQLDeveloper TeamThanks for the reply but the problem was I needed to convert the file to a csv format. To do this open the file in Excel and re-save as CSV Comma Delimiter. Don't worry about data-types because when the file is uploaded to SQL Developer, you will have the chance to set all the parameters, data-types and so on.
    Once I did this and try opening the file, the setup window opened and I was able to do all the additional tweaking and convert the data to a table.
    Because of this I am speculating that SQL Developer does not work with Excel XLSX extension.
    Thanks again!
    JM

  • How to import a excel file into database?

    hi all,
    How can I import a excel file into database?
    What I need to do first?
    Thanks,
    Amy

    1. Create a conrtol file in your disc(with notepad) ex
    test_loader.ctl
    LOAD DATA
    INFILE='C:\Testcsv.csv'
    into table test_table
    FIELDS TERMINATED BY ','
    TRAILING NULL COLS
    (ID,COL1,COL2,COL3)
    The table descrption is
    scott@ORCL> desc test_table;
    Name Null? Type
    ID NUMBER
    COL1 VARCHAR2(10)
    COL2 VARCHAR2(10)
    COL3 VARCHAR2(10)
    scott@ORCL>
    2 .Create a file testcsv.csv from your excel file you want to load with " save as" csv comma seperated value
    in your hard disc c:\
    3. in dos command mode write
    C:\>sqlldr scott/tiger control=c:\testcsv.ctl log=c:\testcsv.log
    Thats it!

  • Geting an error trying to import a data file into OWB repository

    Hi,
    We're using OWB 11.1.0.7.0
    I'm trying to import a new data file and I'm getting an error.
    When I go to The Project/Files/ I right click on the module I want to add the files to,
    I get a 'Wizard' titled 'Welcome to the Import Metadata Wizard'.
    I click next.
    I get the 'Filter Information' screen that asks if I want to select 'All Data Files' or a specific file.
    I pick 'All Data Files' and click 'next'.
    I get the 'Object Selection' screen that has a left and right panel. The left side is titled 'Available' and the right side is titled Selected.
    The 'Available' panel had the directory in Linux (/etl/datafeeds/dev) where our data files are stored with a plus sign next to it.
    When I click the plus sign, I get an error message that says:
    API2836: Directory
    /etl/datafeeds/dev does not exist.Has anyone seen this? What is the work around? Is it a bug? How do I import a data file into OWB if this isn't the way to do it?
    Thanks,

    Hi, is there any obligation to use import wizard?
    can you use right click and import view/table?
    Ugur MIHCI
    www.ifslibrary.com

  • How can i import an excel file into formscentral?

    how can i import an excel file into formscentral?

    Thanks for asking.  This is not something we currently support but you can add or vote on feature ideas:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Perry

  • Import an excel file into a table

    Anybody can help me on importing a big text file (i.e. an excel file) into a table without using SQL Loader?
    Thnx in advance

    user5181307 wrote:
    There is another method where in you can edit the listener file to make an entry for separate service. then create a database link and tns entry to use the service to access the Excel.What you are referring to is called Heterogeneous Services and allows Oracle to treat something as an External database.
    For Excel files you would do it like this...
    1- Go to Control Panel>Administrative Tools>Data Sources (ODBC)>System DSN and create a data source with appropriate driver. Name it EXCL.
    2- In %ORACLE_HOME%\Network\Admin\Tnsnames.ora fie add entry:
    EXCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.12.0.24)(PORT = 1521))
    (CONNECT_DATA =
    (SID = EXCL)
    (HS = OK)
    Here SID is the name of data source that you have just created.
    3- In %ORACLE_HOME%\Network\Admin\Listener.ora file add:
    (SID_DESC =
    (PROGRAM = hsodbc)
    (SID_NAME = <hs_sid>)
    (ORACLE_HOME = <oracle home>)
    under SID_LIST_LISTENER like:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = d:\ORA9DB)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = ORA9DB)
    (ORACLE_HOME = d:\ORA9DB)
    (SID_NAME = ORA9DB)
    (SID_DESC =
    (PROGRAM = hsodbc)
    (SID_NAME = EXCL)
    (ORACLE_HOME = D:\ora9db)
    Dont forget to reload the listener
    c:\> lsnrctl reload
    4- In %ORACLE_HOME%\hs\admin create init<HS_SID>.ora. For our sid EXCL we create file initexcl.ora.
    In this file set following two parameters:
    HS_FDS_CONNECT_INFO = excl
    HS_FDS_TRACE_LEVEL = 0
    5- Now connect to Oracle database and create database link with following command:
    SQL> CREATE DATABASE LINK excl
    2 USING 'excl'
    3 /
    Database link created.
    Now you can perform query against this database like you would for any remote database.
    SQL> SELECT table_name FROM all_tables@excl;
    TABLE_NAME
    DEPT
    EMP... however, from the sounds of the original question the OP is referring to a flat file of data (like a CSV file) and not really an Excel file (.xls) which is a proprietary binary format that you won't be able to read with SQL*Loader or External Tables.
    The best method for the OP's requirements would appear to be external tables which were introduced with 9i.

  • Excel file into InDesign document

    I am planning on making our price list in InDesign so I easily can make it "nicer" than in Excel.
    Today we have it all in an Excel file but how do I go about putting this info in InDesign? I want the Excel file to be the "origin", if I need to change the prices etc, I want to make them in the Excel file and then relink it to InDesign - if that's possible, that is...
    I want it in A5 format, should the Excel file also be made in A5 then?
    Today the price list is in one Excel Book and then separated into different pages (if that is the correct word for it, I have Excel in Swedish!). Is that OK or should I just make one long list with all the products.
    I tried making an InDesign doc in size A5 and then an Excel file in the size of A5. But when importing the Excel file into InDesign it looked really weird! Numbers came as red dots and all the info didn't fit.
    What did I do wrong!?
    I'd appreciate all the help I could get! Maybe you know how to do this or where I can read more about it. I'm not that good at InDesign, still consider myself as a beginner...
    Thanks!

    Emma,
    Have you gotten any further with your question? I am in the process of updating our pricing information and I am laying our pricers out in InDesign so that I can make them look "nicer" also. I have been doing research on linking Excel files to InDesign and it has come in very handy. There are some issues I have run into, however, which were mentioned in some of the other responses you have gotten.
    First of all, your Excel info isn't coming in correctly because of formatting issues. When you place and link an Excel file, you can indicate what sheet you want to place and even a named range or cell range of that sheet. You can also indicate in that options window whether you want it to be placed as an unformatted table, formatted table or unformatted tabbed text. You will want to choose formatted or unformatted table depending on how you want your InDesign file to look. You can do all of the formatting for your table in Excel and place it as a formatted table, which works o.k., but you will have to deal with a couple of adjustments after you place the file. Your text probably won't show up because of the default settings for the indents of the cells in a table in InDesign. All you have to do for that is double click in your text box and select the whole table. Then you can right click or go to the Table menu and choose Cell Options. Set the Top and Bottom Cell Insets to 0, I usually set my vertical justification to center while I am at it. You could also adjust the row heights to make the text fit.
    A wonderful tool to use is a plug in for InDesign by Teacup called TableStyles and CellStyles. I recently discovered this and have started trying to work with it. I came across it by looking around online for information and discussions much like this one. I discovered that we already had this plugin in our program files, but it was not in the correct spot to be able to use the function when I was in InDesign. I had to move the plugins from a Teacup folder within my PlugIns folder. They need to be in the PlugIns folder under Tables.
    At any rate, I know I am on the right path, but I am running into a few snags that I haven't been able to find any information on yet. It is best to place the Excel files as unformatted tables when you plan to use the TableStyles and CellStyles to do your formatting, but I have found that it seems as though linking to separate sheets and ranges becomes an issue when you want to update a link. It doesn't keep the sheet and range information you indicated when you first placed the file....? Haven't dug up any information on that yet.
    I hope at least some of this is helpful, sorry for rambling on, I just was going through the same thing and wish I had found out about these plugins, etc. sooner. :)

  • Import an excel file which contain resource data to P6

    Hii,
    I had a problem of importing an excel file into p6 which contain resource data to p6.
    I used the import option which is present in file-import i followed the instruction and at last while clicking the finish tab its showing the import was successful.
    But in the resource it is emplty unable to display a single resource.
    plz help me or is there any other procedure for it plz let me know.
    Best regards
    Himansu

    As the previous poster stated, you need to export using resource assignments not activities. The only changes that P6 will accept will be to information about activities (Description, duration, etc) if you choose activities. Choosing Resources will allow changes to information with resources and resources asignments will allow changes to information pertaining to the interaction of the activities and resources.

  • Bug - Import Excel File into Indesign cs5.5

    Hi,
    I'm doing a complex Indesign file with a link to a Excel file.
    To import the Excel file I have created several tables always using styles (table, cell, paragraph).
    The problem born when I make a correction into the file Excel and I update the link in Indesign.
    The text updated automatically bring a caracther style (the first that I have created).
    I don't want to apply any character style, but I want to maintein the paragraph style that I have applied.
    If I delete all caracther styles the problem is solved, but I need to have caracther styles in my layout.
    Anyone can help me?
    Thanks to all
    Elisa

    The import facility of Excel or Word Document is only on a PC system of Dreamweaver.
    File >> Import >> Excel Document
    File >> Import >> Word Document
    For mac system I understand this facility isn't there.  What can you do about this?
    1) Get hold of a PC and download a trial version of DW and import the file(s) and you are done;
    2) Ask a friend to do it for you;
    3) Post your excel file online and some nice guy like Nancy, john or Murray will help you out.
    Good luck and let us know if this has given you some more ideas to explore.
    Good Guy
    Website: http://mytaxsite.co.uk
    Website: http://html-css.co.uk
    Forums: http://mytaxsite.boardhost.com
    Email: http://mytaxsite.co.uk/contact-us

  • Importing excel file into OBIEE 10.1.3.4

    Hi,
    I am trying to import excel file into OBIEE and would like to use it as a data source. Fro this, I have already created an excel file (using MS excel 2007) with some sample data and named the data ranges with in the excel sheet as well. and I have placed that file under C:\ drive directly. And then created DSN and made sure that it points to the excel file.
    When I go to Administration tool -> Import from Database -> seelct ODBS 3.5 and selected my DSN and clicked OK. Here I have not provided the user name and password (though I have provided the username/pwd as Administrator it is not taking).
    when I click ok, it is throwing the following error :
    nQSerror:16001 ODBC error state : IM006 code: 0 message: [Microsoft][ODBCDriver Manager] Driver's SQLSetConnectAttr failed. [nQSError: 16001]ODBC error state: S1000 code - 5015 message: [Microsoft][ODBC Excel Driver] External table is not in the expected format
    Pls help me in rectifying this error. Many thanks in advance.
    Thanks
    Edited by: 858747 on 25-Aug-2011 05:47
    Edited by: 858747 on 25-Aug-2011 05:48

    Hi, I am facing the same issue.
    I am using OBIEE 11g with MS Excel 2007 file as source. I have created ODBC Driver by selecting Microsoft excel driver.
    NQSAdminTool.log gives error:
    ODBC error state: S1000 code: -5015 message: [Microsoft][ODBC Excel Driver] External table is not in the expected format
    The Admin tool gives error: "Unable to connect database using connection pool", when I try to 'update row count' in Physical Layer.
    Any quick resolution to this?
    Many thanks in advance.
    Edited by: user1603699 on 25-Oct-2011 09:28

  • I bought Numbers because my Excel files would not work with Mavericks. How can I import a non-functioning Excel file into numbers? (As of now, the file NAME transfers but data is not.) but

    I bought Numbers because my Excel files would not work with Mavericks. How can I import a non-functioning Excel file into numbers? (As of now, the file NAME transfers but data does not.)

    HI Dave,
    I'm surprised you get no message when you attempt opening the Excel document in Numbers.
    I'm assuming Numbers 3.1, since you are running Mavericks.
    Does the Numbers file that opens show any content?
    Does it contain a table?
    How large?
    Does it contain more than one tab (indicating more than one sheet)?
    Do those other tabs contain a table?
    Have you checked those tables for data content?
    There have been cases in the past of imported documents opening with white text on a white background, giving the appearance of containing nothing. Check for this by selecting a block of cells, then applying a Fill colour or a Text colour using the Format button (paintbrush).
    I'd also suggest attempting to open the Excel files using LibreOffice, which can be downloaded from the linked website.
    Regards,
    Barry

  • Import Excel file into SQL, using bulk copy - date issues

    Hello. I have a VB project where I need to import multiple excel files with lots of rows and columns into SQL 2012. Currently the import is set up, using OleDbConnection and insert commands and it takes up to 10 minutes to process all the spreadsheets.
    I'm trying to switch the code to use SQLBulkCopy, but experienced issues with dates columns. Some rows have Null dates and those are interpreted as strings and won't import into SQL tables. Is there a way to format the column prior to import programmatically?
    Any advice is appreciated.
    Note -
    If I add column mapping and exclude all dates columns - import works fine. All excel files have date fields, excel files are reports from other vendor and change on weekly bases, manual formatting of the excel files prior to import are out of the question...
    The code is just basic:
    Public Sub ImportFormExcelSample()
    Dim ExcelConnection As New System.Data.OleDb.OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\MyExcelSpreadsheet.xlsx;Extended Properties=""Excel 12.0 Xml;HDR=Yes""")
    ExcelConnection.Open()
    Dim expr As String = "SELECT * FROM [Sheet1$]"
    Dim objCmdSelect As OleDbCommand = New OleDbCommand(expr, ExcelConnection)
    Dim objDR As OleDbDataReader
    Dim SQLconn As New SqlConnection()
    Dim ConnString As String = "Data Source=MMSQL1;Initial Catalog=DbName; User Id=UserName; Password=password;"
    SQLconn.ConnectionString = ConnString
    SQLconn.Open()
    Using bulkCopy As SqlBulkCopy = New SqlBulkCopy(SQLconn)
    bulkCopy.DestinationTableName = "TableToWriteToInSQLSERVER"
    Try
    objDR = objCmdSelect.ExecuteReader
    bulkCopy.WriteToServer(objDR)
    objDR.Close()
    SQLconn.Close()
    Catch ex As Exception
    MsgBox(ex.ToString)
    End Try
    End Using
    End Sub
    The error I get is System.InvalidOperatiomException: The given value of type String from the data source cannot be converted to type date of the specified target column. System.FormatException: Failed to convert parameter value from String to a DateTime...
    Thank you!
    Alla Sanders

    Hi Alla,
    This issue might be caused because the field contains a NULL value, but the date/time columns in your table does not allow NULL values. Furthermore, please aslo take a look at "Data Type Issues" session in the article below:
    http://odetocode.com/blogs/scott/archive/2013/02/08/working-with-sqlbulkcopy.aspx
    Here is a similar thread about this topic for your reference, please see:
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/2d99181c-fc2b-4caf-9530-3bd6ae1745f1/sqlbulkcopy-column-validation-not-working?forum=sqldataaccess
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • Many CD's will include a DVD disc as well containing music videos.  Is there a way to import these video files into iTunes as well as the music files?

    I have a number of music CD's that also include a DVD which has music videos or concert movies.  Is there a way to import these video files into iTunes as well?

    wjosten - thanks very much for the detailed instructions. I'll try this as soon as I get my replacement and it looks like you'll probably end up getting the green tick

  • How do I import an MKV file into Premiere Pro CS6?

    How do I import an MKV file into Premiere Pro CS6?

    Premiere Pro CS6 doesn't support MKV formats. To import MKV to Premiere Pro CS6, a recommended solution is to convert MKV to AVI.
    I've been reading so many different forums on how to convert MKV to AVI. Finally, I summarised three solutions:
    First one: HandBrake . This tool is a free and open-source multi-threaded transcoding app. It supports nearly any videos including MKV format and has Mac version and Windows version.
    Cons:
    1. HandBrake is too professional to handle for most people;
    2. It doesn't support MOV as output format.
    Second one: there are many third party software which supports converting MKV to AVI. I just test one of them. It's professional yet easy to use and the service is excellent. And there is a step by step guide about how to use this tool .
    Cons:
    1. Most of them are not free.
    Third one: Online-Converter . This kind of converter does a great job on file conversion.
    Cons:
    1. Like most online converters, the free version of this tool only allows you to convert videos smaller than 100MB. It's too small for video conversion;
    2.Your MKV video should be upload to the internet to be converted. This means the risk of pravite information leak is possible.

Maybe you are looking for

  • Installed Firefox 3.6.8 for the first time and it keeps crashing

    I just installed Firefox for the first time and when it is finished installing I tell it to start. It tries and as soon as it does I get a crash report. Every time I click Restrt Firefox it comes up with the same crash error, which is the following:

  • Moving My  i Tunes Folder To A Different Drive

    I'm runnung Win XP Pro. I have installed my iTunes to an external drive, as my free space on my C drive is getting a bit scarce. I see that all my music is stored in the iTunes/ My Music/My Documents Folder located on my C drive. Is there any way to

  • Adobe Premiere Elements 10 chapter limits

    Has anything been done recently that allows you to use more than 25 chapters per project in Adobe Premiere Elements 10?

  • Arrow keys dowsn't work

    hello my name is Giorgi from Georgia. 1. I've got macbook pro 15". Version 10.5.8. after few updates I found that 3 arrow keys stopped to work. I can't find the reason why, so please help me. 2. My mac is already quite old and I'd like to update vide

  • PopUp for subscription Alerts on KMC

    Hi, Is there a way that a popUp Alert is trigered when subscription event ocurs for a user when this logs into the Portal? Thanx in Advanced! Gerardo J