Oracle to Excel Convertion -reg

Dears,
Currently i am using TOAD for Oracle excel convertion purpose. but our client users want all reports (currently all reports in pdf format) in excel. Any possible tool is aviable. I could not give TOAD due to security purpose.
Please give your's valuable suggestion with soultions
Kodiyarasu.P
Chettinad Cements,
Karur,TN,India

You have a couple of choices. If your client doesn't want spend money, you could extract the data into a CSV file and then use Excel to open it as mentioned by other members. Or you could pay for a more comprehensive tool like Excel-DB
We like Excel-DB actually - saved a ton of development effort over the years for the many one-off reports that our Finance and Actuarial departments request every year.

Similar Messages

  • Can an Oracle VM be converted for use in VMWare or VirtualBox?

    Does anyone know how to convert / export an Oracle VM for use in VMware Server or in VirtualBox? I've successfully converted VMware images to OVM and VirtualBox images to OVM, but I've not been able to figure out how to get an Oracle VM to convert for use in VMWare or in VirtualBox.
    -Dan
    Edited by: user723595 on Apr 16, 2010 4:10 PM

    The ovs-agent will recognize any strorage device on your VM server which:
    a) is unused and free of any partition, so basically a blank drive
    b) the drive must be recognized by the multipath daemon, so it must be present under /dev/mapper
    So basically, you can't throw in a big drive, partition it, install OVM on it and hope to use the remaining space for your storage pool, you will need the system to recognize at least two independent drives - how ever you going to achieve that is up to you, but the most easy way is to have indeed at least two separate drives installed.

  • Are trails of the PDF to Excel converter available?

    I have a PDF file consisting of several hundred pages that I must match to existing county government records. The data source we subscribe to, allows us to copy and use the information as we need it. Doing it one record at a time is totally impractical. I can do the comparisons in minutes by pasting the data into an Excel spreadsheet.
    The PDF page consist of text box fields that are not evenly aligned, thus gridding the rows and columns is more problamatic.
    I work for a local government agency, and have to involve our "IT" department. The $80 dollars for the PDF to Excel converter is within our budget, but we have to know if the application is suited to this type of page.
    Can I send a page from the file to get an opinion, or perhaps use a trial version of the converter if available?
    I have to hope this is falling on friendly ears.....Is there help?

    This is a online conversion service.
    For further questions use following forum:
    http://forums.adobe.com/community/exportpdf

  • Query Data From Oracle to Excel

    Dear all,
    Please guide me to solve.
    Regards
    Dharma

    Question's Caption is : Data From Oracle to Excel
    While you are asking :
    data in execel (windows ) move to Oracle Database table (Linux *64)Anyway, if your question is export data from Excel to Oracle then below thread may be of your interest which are saying that you have to install Dg4ODBC on Windows and use the ODBC driver there.
    When running DG4ODBC on Unix you need an ODBC driver on this Unix box which can connect to the MS Excel file. I'm not aware of any suitable driver so far that fulfills the ODBC level 3 standard required for DG4ODBC.
    So instead of using DG4ODBC, get the Windows software of DG4ODBC and install it on a Windows machine. You can then connect from your Oracle database to the Dg4ODBC listener on Windows which then spawns the DG4ODBC process. This DG4ODBC process then uses the MS Excel ODBC driver to connect to the Excel sheet.
    https://cn.forums.oracle.com/forums/thread.jspa?messageID=10466197
    For this purpose there is separate forum too : [url https://forums.oracle.com/forums/forum.jspa?forumID=63] Heterogeneous Connectivity
    Regards
    Girish Sharma

  • Getting data stored in ref cursor ( got from store proc in oracle) to excel sheet)

    Hey, I am trying to Get data stored in ref cursor ( got from store proc in oracle) to excel sheet in a virtual folder using ssis. 
    I am getting errors and cant do it. If anyone can help me

    Hi Nabin000,
    The Oracle stored procedure doesn't work with SSIS source adapters such as OLE DB Source because the data provider doesn't provide metadata for the source adapter. To achieve your goal, you can use a Script Component as source to call
    the Oracle stored procedure by using System.Data.OracleClient OracleDataReader, and get the rows and add them to the pipeline buffer. For more information, please see:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/1d0b3a1b-8792-469c-b0d1-f2fbb9e9ff20/dump-oracle-ref-cursor-into-ms-sql-staging-table-using-ssis
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/fcdaa97e-8415-4c3e-8ffd-1ad45b590d57/executing-an-oracle-stored-procedure-from-ssis?forum=sqlintegrationservices 
    http://msdn.microsoft.com/en-us/library/system.data.oracleclient.oracledatareader(VS.90).aspx 
    Regards,
    Mike Yin
    TechNet Community Support

  • Extract data from Oracle in excel file

    Hi,
    I have a requirement where in I need to extract data from Oracle in excel file and the excel worksheet name should be "Data".
    for eg. excel file name "AR Data_DDMMYY" and excel worksheet name "Data"
    I have used the UTL_FILE API to extract the tab delimited data which can be opened in excel but it is not exactly an excel file as the worksheet name is same as the file name.
    I tried using utl_file.fcopy and frename.
    Is there any way to do this using PLSQL?
    select * from v$version;
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    "CORE     10.2.0.5.0     Production"
    TNS for HPUX: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - ProductionSample Code:
    declare
    cursor c is
    select * from scott.emp;
    v varchar2(100);
    f utl_file.file_type;
    file_name varchar2(100) := 'AR Data.xls';
    dir varchar2(50) := 'CESDIR191710';
    --select * from dba_directories
    begin
    f := utl_file.fopen(dir, file_name, 'W');
    v := 'EMPNO'||chr(9)||'ENAME'||chr(9)||'JOB'||chr(9)||'SAL'||chr(9)||'HIREDATE'||chr(9)||'DEPTNO';
    utl_file.put_line(f, v);
    for i in c
    loop
    v := i.empno||chr(9)||i.ename||chr(9)||i.job||chr(9)||i.sal||chr(9)||i.hiredate||chr(9)||i.deptno;
    utl_file.put_line(f, v);
    end loop;
    utl_file.fclose(f);
    --utl_file.frename(dir, file_name, dir, replace(file_name, '.xls', '_')||to_char(sysdate, 'MMDDYY')||'.xls', false);
    utl_file.fcopy(dir, file_name, dir, replace(file_name, '.xls', '_')||to_char(sysdate, 'MMDDYY')||'.xls');
    end;Thanks
    Imran

    Imran Soudagar wrote:
    Hi,
    I was able to generate the excel 2007 file with the data using the package from below link;
    http://technology.amis.nl/2011/02/19/create-an-excel-file-with-plsql/
    but the requirement is to generate excel 2003 file.
    I tried changing the .xlsx to .xls and it gives a note while opening the file "The file you are trying to open, abc.xls, is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do you want to open the file now?"Then you have three options:
    1) stop using anton's package and find another one that supports the old and deprecated version of Excel 2003
    2) write your own package to produce an Excel file.
    3) Upgrade your version of Excel to a recent version
    I tried the programs from other links on the forum but I am still getting this message. The client does not want this message to be displayed as the excel file works as an input to another system.
    Can anyone help me with the issue?
    Also, is it true that the programatically generated excel file is actually an xml file which is renamed to .xls and hence it shows the message while opening such files?Yes, Excel supports several different formats for it's files. By default, if you save an XLS files from Excel, it writes it out in a Microsoft proprietary binary format, which you would be hard pushed to replicate easily from PL/SQL. Excel also has the ability to save it's files as XML format, which is more readable and easier to produce programatically, whilst still allowing you to have multiple sheets, formulas and formatting included in it. That's the format that most people who need formatting and multiple sheets opt for when programatically generating their data as excel workbooks. (There's also an SLYK format that people used to use before that, but it's not as flexible)
    If you want to write your own, the easiest thing to do is to start with a blank workbook in Excel, and put in your basic requirements e.g. a couple of named sheets, and some data in different formats (number, date, text etc.) and different formatting options etc. Save that file in XML format from Excel and then open up the file using notepad/wordpad to look at the structure. There'll be a whole load of redundant rubbish Microsoft put in there, but you should be able to figure out the basic structure of XML required to give you what you want.

  • Error in Excel converter

    Hi All,
    I am having issues while using export to excel functionality in Query designer and in portal.
    I have a query where I have 3 key figures of date format ( 2 of type date - DATs YYYYMMDD  and 1 of date type - DEC Counter or amount field with commas - standard SAP key figure).
    When I remove the date key figures from the query, I am able to successfully download the report from portal to excel. But with these in the query, I get the following error:
    Exception in BI runtime
    Initial cause
    Message:
    No message was provided.
    Stack trace:
    java.lang.NullPointerException
    Message:
    Error in Excel converter
    Stack trace:
    com.sap.ip.bi.webapplications.runtime.controller.MessageException: Error in Excel converter
    The report runs fine in BEx analyzer with these key figures. Also other reports that have these key figures, can be downloaded to excel.
    Any ideas why we are facing this issue?
    Any help appreciated.
    Thanks,
    Payal.

    Tom SAVU,
    This was a known issue with the Report Generation Toolkit version 1.0.1 that was fixed in version 1.1. All that needs to be done to fix this is to left click on each item of the unbundle by name with the operate tool and select the correct element.
    I have included a picture of the correct wiring.
    Keep up to date on the latest PXI news at twitter.com/pxi
    Attachments:
    excel_insert_correct.bmp ‏84 KB

  • Excel converts numeric values to date

    Hi,
    I have a JSP page which is sending data to excel.
    response.setContentType("application/vnd.ms-excel");
    response.addHeader("Content-Disposition", "attachment;filename=\"a.xls\"");
    I am using codes above. But excel converts numeric values to date. for example I send "18.5" but excel convert it to "18.May". But when I add " " before the value there is no problem. But I dont want to use this
    how can I fix it. Thanks in advance.

    hi,
    the problem is not with your jsp encoding but with excel settings
    enter the mathe-statistics block in your excel program change setting from date to numbers
    that is all

  • Pdf to Excel convertion

    I tried to convert a pdf into an Excel document. The only thing I got were empty cells of different sizes.
    What am I doing wrong?

    hi
    No it is originally a pdf and there was no error message, just an empty excel-file after the convertion...
    regards,
    Manuel
    Urspr�ngliche Nachricht----
    Von : [email protected]
    Datum : 07/04/2014 - 21:13 (GMT)
    An : [email protected]
    Betreff : pdf to Excel convertion
        Re: pdf to Excel convertion
        created by StacySison in Adobe ExportPDF - View the full discussion
    Hi Manuel,
    Was your PDF an excel doc prior to being converted to a PDF?
    Are you receiving a specific error message?
    Have you tried this? OCR
    Looking forward to hearing back from you.
    Kind regards, Stacy
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6278915#6278915
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6278915#6278915
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6278915#6278915. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe ExportPDF at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Oracle to Excel

    What options are available for getting data from Oracle to Excel ?
    I can think of two, but I'm sure there must be alternatives using XML etc ?
    1) MS Query is a tool within Excel, that pulls the data across using ODBC via
    a query that you construct from Excel.
    2) Use utl_file to write to a CSV file, then load the CSV file.
    Whichever solution I use I'd like to automate it.
    null

    Use Oracle Transparent Gateway for ODBC, see
    here for more info, http://technet.oracle.com/doc/gateways/tg4odbc/ch3.htm#167
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Chris Freville:
    What options are available for getting data from Oracle to Excel ?
    I can think of two, but I'm sure there must be alternatives using XML etc ?
    1) MS Query is a tool within Excel, that pulls the data across using ODBC via
    a query that you construct from Excel.
    2) Use utl_file to write to a CSV file, then load the CSV file.
    Whichever solution I use I'd like to automate it.
    <HR></BLOCKQUOTE>
    null

  • Data from Oracle to Excel

    Hi,
    I want to know how can data be spooled from Oracle table to MS Excel.Is this done with MS Query if so how can that be done?Any other solutions are appreciated.
    Thanks,
    Venkata

    You will be much better off writing an excel spreadsheet that queries the data directly.
    First of all you need to create an ODBC connection to the database using ODBC admin.
    Then
    (1) fire up a new excel worksheet.
    (2) Choose Data->Get External Data->New Query
    (3) Connect using ODBC
    (4) choose any table, columns, etc - it doesn't matter.
    (5) at the end pane tick the MS query button. to edit the query press the SQL button.
    Easy. Be aware that (i) your query resides in the cell you started with, usually A1, and (ii) if you want to format the columns in the spreadsheet you need to uncheck the formatting boxes in MS Query

  • Data from oracle to excel very urgent

    hi all,
    im using servlets for fetching the data from oracle , i want to display the data which i get from orcle in excel sheet. A code snippet regarding this is highly appreciated...
    Thanks in advance

    Just visit Jakarta's POI API. It is simple. You can create workbooks, cells etc. You can apply styles, insert charts. And its very simple

  • PDFMaker from Excel converts Helvetica to Arial against my will

    Hi all -
    I'm on Windows XP, running Excel 2007 and Acrobat/Distiller/PDFMaker 9 (all updates current).
    I have several Excel files that are formatted with Helvetica for the font. I have an Adobe PDF Setting called "Excel to PDF" which is set to Acrobat 5 compatibility, no image downsampling, Embed all Fonts, Subset less than 100%, many "font location" folders available that include the Helvetica family, color set to North America Prepress 2, etc.
    I have the Acrobat PDFMaker ribbon available in Excel. Preferences set to use the "Excel to PDF" setting. When I click the Create PDF button, I get a PDF with no error messages but the resulting PDF has converted all of my Helvetica text to ArialMT. If I use the TouchUp tool in Acrobat to select some text, it shows "Original Font" = ArialMT and "Editing Font" = ArialMT.
    I don't want ArialMT. I want my Helvetica!!
    Interestingly, if I choose Print to Adobe PDF Converter, using same "Excel to PDF" settings file, then my Helvetica fonts stay. When I use the TouchUp tool in Acrobat, "Original Font" is now Helvetica. BUT... Helvetica is "not available" for editing and the "Editing Font" stays ArialMT.
    I don't care if I can't edit the resulting PDF. But why would Distiller embed Helvetica correctly and PDFMaker would not?
    This is driving me crazy! Any ideas?
    Thanks!!
    -Jessie

    As I mentioned in my post, both PDFMaker and the Print to PDF options are using the same Job Options file I created called "Excel to PDF." This is set to Embed all Fonts, with subsetting below 100%.
    There are onscreen display differences between the Helvetica version of the file and the Arial version, which is why I want the Helvetica version to stick.
    Also, while it's not overly cumbersome to Print to PDF versus using the PDFMaker ribbon button - the ribbon button is faster and so I'd like to use that long-term if possible.

  • Oracle 11gR2 RAC (convert single instance to RAC)

    Hi,
    Using Metalink Doc [ID 747457.1] I have converted single instance database running on 11gR2 to RAC (2 node) database 11gR2 with ASM. Its running fine, I am able to see the instances running on both nodes. But I am unable to login to the instance. It is connecting to ideal instance., but the instance is already running
    oracle@hublhp1:/home/oracle$ export ORACLE_SID=cadtest1
    oracle@hublhp1:/home/oracle$ sqlplus "/as sysdba"
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Nov 2 11:23:43 2010
    Copyright (c) 1982, 2009, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL>
    oracle@hublhp1:/home/oracle$ srvctl status database -d cadtest
    Instance cadtest1 is not running on node hublhp1
    Instance cadtest2 is not running on node hublhp3
    oracle@hublhp1:/home/oracle$ ps -ef | grep pmon
    oracle 2407 1 0 15:28:21 ? 0:27 asm_pmon_+ASM1
    oracle 4125 1 0 15:51:18 ? 0:36 ora_pmon_cadtest1
    oracle 4973 3295 0 14:31:13 pts/1 0:00 grep pmon
    oracle@hublhp1:/home/oracle$
    I am able to stop/start the database using SRVCTL but I am not able to login to this instance. Can anyone please help me to find the issue or where & what to look at.
    - Mano

    Thank you so much, I did the following, but I still have the same issue, the instance is running on both nodes, but I am unable to stop/start the database using SRVCTL and I am unable to login using SQLPLUS.
    oracle@hublhp1:/home/oracle$ *srvctl modify database -d cadtest -n cadtest -o $ORACLE_HOME -p +asmcdb01/cadtest/spfilecadtest.ora -a ASMCDB01,ASMCFR01*
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$ srvctl config database -d cadtest -a
    Database unique name: cadtest
    Database name: cadtest
    Oracle home: /app/oracle/rdbms/product/11.2.0
    Oracle user: oracle
    Spfile: +asmcdb01/cadtest/spfilecadtest.ora
    Domain:
    Start options: open
    Stop options: immediate
    Database role: PRIMARY
    Management policy: AUTOMATIC
    Server pools: cadtest
    Database instances: cadtest1,cadtest2
    Disk Groups: ASMCDB01,ASMCFR01
    Services:
    Database is enabled
    Database is administrator managed
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$ srvctl stop database -d cadtest
    PRCC-1016 : cadtest was already stopped
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$ srvctl status database -d cadtest
    Instance cadtest1 is not running on node hublhp1
    Instance cadtest2 is not running on node hublhp3
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$ echo $ORACLE_SID
    cadtest1
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$ sqlplus "/as sysdba"
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Nov 2 15:31:55 2010
    Copyright (c) 1982, 2009, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> exit
    Disconnected
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$
    oracle@hublhp1:/home/oracle$

  • Transfer Data from Oracle to EXCEL

    Hello,
    I would like to transfer data from an oracle table into an EXCEL-Spreadsheet -
    while doing it, I got the error message
    "-1002 : 37000 : java.sql.SQLException:[Microsoft][ODBC Excel Driver]'C$_0Output is not a valid name..."
    I think I have correctly defined a logical + physical schema for the excel-file (test works and counts rows), and as knowledg-modules I use:
    LKM: SQL to SQL and
    IKM: SQL Control Append
    Does anybody have an idea how to avoid this error-message and to make the transfer working?
    Edited by: user10874105 on Jan 30, 2009 7:19 AM

    Hi Ramesh,
    yes, this points to the right solution -
    The only issue that remains is that by default ODBC-Setting for EXCEL is limitted to 255 Chars.
    Otherwise it works perfect!

Maybe you are looking for