Output required in MS Excel from Reports Oracle 10g error with built in pac

Hi All,
Our requirement is to get matrix report output in MS Excel. For that i found a report online. However, im having issues with Built-in Package OLE2.obj_type.
Below is the report log file:
******* Custom: Version : UNKNOWN
Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
XX_MATRIX_REPORT module: XX_MATRIX_REPORT
Current system time is 10-AUG-2012 17:23:17
+-----------------------------
| Starting concurrent program execution...
+-----------------------------
APPLLCSP Environment Variable set to :
Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
American_America.UTF8
Enter Password:
REP-0736: There exist uncompiled program unit(s).
REP-0736: There exist uncompiled program unit(s).
REP-1247: Report contains uncompiled PL/SQL.
REP-0069: Internal error
REP-57054: In-process job terminated:Terminated with error:
REP-1247: There exist uncompiled program unit(s).
REP-1247: Report contains uncompiled PL/SQL.
Report Builder: Release 10.1.2.3.0 - Production on Fri Aug 10 17:23:19 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Start of log messages from FND_FILE
End of log messages from FND_FILE
Program exited with status 1
Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 11242010.
Review your concurrent request log and/or report output file for more detailed information.
Executing request completion options...
Output file size:
0
Finished executing request completion options.
Concurrent request completed
Current system time is 10-AUG-2012 17:23:20
Please Help!!!

After Report:
function AfterReport return boolean is
begin
RPT2XLS.release_memory;
srw.user_exit('FND SRWEXIT');
srw.message(101,'After Report');
return (TRUE);
end;
RPT2XLS package body:
PACKAGE BODY RPT2XLS IS
     TYPE ExcelCell IS RECORD(RowNo binary_integer,
                                                                 ColNo binary_integer,
                                                                 Val varchar2(2000),
                                                                 FontName varchar2(20),
                                                                 FontSize binary_integer,
                                                                 FontStyle binary_integer,
                                                                 FontColor binary_integer,
                                                                 BgrColor binary_integer,
                                                                 Format varchar2(60),
                                                                 Align xlHAlign
     TYPE ExcelCells IS TABLE OF ExcelCell;
     Cell ExcelCells := ExcelCells();
     CurrentRow binary_integer := 1;
     PROCEDURE new_line IS
     BEGIN
          CurrentRow := CurrentRow + 1;
     END;
     PROCEDURE put_cell(ColNo binary_integer, CellValue in varchar2,
                                                  FontName in varchar2 DEFAULT null,
                                                  FontSize in binary_integer DEFAULT null,
                                                  FontStyle in binary_integer DEFAULT null,
                                                  FontColor in binary_integer DEFAULT null,
                                                  BgrColor in binary_integer DEFAULT null,
                                                  Format in varchar2 DEFAULT null,
                                                  Align in xlHAlign DEFAULT null
                                                  ) IS
     BEGIN
          Cell.Extend;
          Cell(Cell.Last).RowNo := CurrentRow;
          Cell(Cell.Last).ColNo := ColNo;
          Cell(Cell.Last).Val := CellValue;
          Cell(Cell.Last).FontName := FontName;
          Cell(Cell.Last).FontSize := FontSize;
          Cell(Cell.Last).FontStyle := FontStyle;
          Cell(Cell.Last).FontColor := FontColor;
          Cell(Cell.Last).BgrColor := BgrColor;
          Cell(Cell.Last).Format := Format;
          Cell(Cell.Last).Align := Align;
     END;
PROCEDURE run IS
          Application OLE2.OBJ_TYPE;
          Workbooks OLE2.OBJ_TYPE;
          Workbook OLE2.OBJ_TYPE;
          Worksheets OLE2.OBJ_TYPE;
          Worksheet OLE2.OBJ_TYPE;
          WorkCell OLE2.OBJ_TYPE;
          WorkColumn OLE2.OBJ_TYPE;
WorkFont OLE2.OBJ_TYPE;
WorkInterior OLE2.OBJ_TYPE;
          ArgList OLE2.LIST_TYPE;
     BEGIN
          Application := OLE2.create_obj('Excel.Application');
          OLE2.set_property(Application, 'Visible', 1);
          Workbooks := OLE2.get_obj_property(Application, 'Workbooks');
Workbook := OLE2.invoke_obj(WorkBooks, 'Add');
          Worksheets := OLE2.get_obj_property(Workbook, 'Worksheets');
          Worksheet := OLE2.get_obj_property(Application, 'ActiveSheet');
          for i in Cell.First .. Cell.Last
          loop
               if Cell(i).Val is not null then
                    ArgList := OLE2.create_arglist;
                    OLE2.add_arg(ArgList, Cell(i).RowNo);
                    ole2.add_arg(ArgList, Cell(i).ColNo);
                    WorkCell := OLE2.get_obj_property(Worksheet, 'Cells', ArgList);
                    ole2.destroy_arglist(ArgList);
                    ole2.set_property(WorkCell, 'Value', Cell(i).Val);
                    ole2.set_property(WorkCell, 'NumberFormat', Cell(i).Format);
                    if Cell(i).Align is not null then
                         ole2.set_property(WorkCell, 'HorizontalAlignment', Cell(i).Align);
                    end if;
                    WorkFont := OLE2.get_obj_property(WorkCell, 'Font');
                    WorkInterior := ole2.Get_Obj_Property(WorkCell, 'Interior');
                    if Cell(i).FontName is not null then
                         OLE2.set_property(WorkFont, 'Name', Cell(i).FontName);
                    end if;
                    if Cell(i).FontSize is not null then
                         OLE2.set_property(WorkFont, 'Size', Cell(i).FontSize);
                    end if;
                    if mod(Cell(i).FontStyle, 2) = 1 then
                         OLE2.set_property(WorkFont, 'Bold', 1);
                    end if;
                    if mod(Cell(i).FontStyle, 4) > 2 then
                         OLE2.set_property(WorkFont, 'Italic', 1);
                    end if;
                    if mod(Cell(i).FontStyle, 8) > 4 then
                         OLE2.set_property(WorkFont, 'Underline', 2);
                    end if;
                    if Cell(i).FontColor is not null then
                         OLE2.set_property(WorkFont, 'ColorIndex', Cell(i).FontColor);
                    end if;
                    if Cell(i).BgrColor is not null then
                         OLE2.set_property(WorkInterior, 'ColorIndex', Cell(i).BgrColor);
                    end if;
                    OLE2.release_obj(WorkInterior);
                    OLE2.release_obj(WorkFont);
                    OLE2.release_obj(WorkCell);
               end if;
          end loop;
          ArgList := ole2.create_arglist;
          ole2.add_arg(ArgList, 'A:Z');
          WorkColumn := ole2.Get_Obj_Property(WorkSheet, 'Columns', ArgList);
          ole2.destroy_arglist(ArgList);
          ole2.invoke(WorkColumn, 'AutoFit');
          OLE2.release_obj(WorkColumn);
          OLE2.release_obj(Worksheet);
          OLE2.release_obj(Worksheets);
          OLE2.release_obj(Workbook);
          OLE2.release_obj(Workbooks);
          OLE2.release_obj(Application);
     END;
     PROCEDURE release_memory IS
     BEGIN
          Cell := ExcelCells();
          SYS.DBMS_SESSION.free_unused_user_memory;
     END;
END;
We are getting the error in log file Report contains uncompiled PL/SQL.
due to ole2.obj_type...

Similar Messages

  • URGENT !!!!!!!!!How to pass parameters to Forms from Reports(Oracle 10g)

    Hai
    I can call a form named "ABC" from one Report, using "hyperlink" . The URL is
    http://....../forms90/f90servlet?form=c:/ABC&userid=a/a@a
    Now I want to pass 2 parameters (that are received in that report) to the form ABC.
    I am using Oracle 10g.
    What to do?
    Please reply soon.
    I am eagerly waiting for the solution.
    Please Help.
    Bye

    Hai
    Thank u for the reply.
    Is it possible to pass the variable instead of values.
    My report receives 2 parameters named p1 & p2. Actually I want to pass that parameters to the form from the report.
    I have tried as You said.
    //http/.........&otherparams=param1=:p1+param2=:p2
    Then the form receives the ":p1" as the value, it does not take the value of that variable p1.
    Please Reply Soon.
    Bye...

  • I need to invoke Excel from Reports 3.0.

    I need to invoke Excel from Reports 3.0. I need to insert into
    Excel Data which is output of a report. Can someone help me with
    a sample code of how we can invoke Excel and Get data.
    Thanks in Advance
    Ravi

    Ravi,
    The Forms Demos include an example of how to do this.
    It will be easy to adapt to Reports (the OLE2 built-ins are the
    same).
    Also, Reports 3.0 is quite old and not supported anymore.
    Hope this helps,
    Pedro
    [email protected]

  • Output to PDF in Unix from Reports 6i

    I am having some trouble getting pdf output in the unix environment from Reports 6i.
    If I kick off a defined report file (.rep) from the command line as follows:
    rwrun60 testreport.rep destype=file desformat=pdf desname=testreport.pdf userid=connection_details
    I get the following errors:
    REP-0004: Warning: Unable to open user preference file.
    REP-3300: Fatal error in toolkit.
    UI-9: This function call is out of context
    If I run the command without the file output options (rwrun60 testreport.rep userid=connection_details) then the report opens up on the screen correctly. From here, if I try to generate a pdf file, I get the following error:
    REP-1800: Formatter error.
    The report is defined as character type, and is a simple listing of approximately 50 records from a database table. There are no graphics or any pl/sql defined in the report.
    Has anyone had similar problems in trying to do this?
    Any help is greatly appreciated.
    Cheers
    Nick

    Dear Nick,
    Just ensure a printer is configured. This can be done by typing in echo $PRINTER at the $Prompt.
    If it returns null then configurea printer and i fell this should resolve your problem,
    Since it did resolve my problem.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Nick Mavrakis:
    I am having some trouble getting pdf output in the unix environment from Reports 6i.
    If I kick off a defined report file (.rep) from the command line as follows:
    rwrun60 testreport.rep destype=file desformat=pdf desname=testreport.pdf userid=connection_details
    I get the following errors:
    REP-0004: Warning: Unable to open user preference file.
    REP-3300: Fatal error in toolkit.
    UI-9: This function call is out of context
    If I run the command without the file output options (rwrun60 testreport.rep userid=connection_details) then the report opens up on the screen correctly. From here, if I try to generate a pdf file, I get the following error:
    REP-1800: Formatter error.
    The report is defined as character type, and is a simple listing of approximately 50 records from a database table. There are no graphics or any pl/sql defined in the report.
    Has anyone had similar problems in trying to do this?
    Any help is greatly appreciated.
    Cheers
    Nick<HR></BLOCKQUOTE>
    null

  • Does managing Oracle 10g RAC with ASM require full root access?

    We currently have three entirely separate support areas, Unix, Storage and DBA. We're now considering using Oracle 10g RAC with ASM and as part of the assessment trying to work out if we can still draw similar support boundaries. I know that installing RAC and configuring ASM requires root access but will DBA continue to need root access to manage & support RAC? If so, does anyone know if the commands they need can be RBAC'd or if we just need to share root access going forwards. I've had a look at a number of docs including http://download.oracle.com/docs/cd/B19306_01/rac.102/b14197/toc.htm. which is fairly informative but none of them seem to mention the requirement for root access on Solaris. I'm guessing they just assume that it's available, but that's not generally the case in our environment.
    All advice / info welcome!

    I would have thought that the only reason you would need root access once RAC and ASM had been set up would be to add more disks to the ASM configuration. This would be needed to change the ownership on the raw LUNs or to make additions to metasets (SVM/Oban) or diskgroups (VxVM/CVM). Beyond that, I can't imagine needing root access.
    I'm sure others will chime in if they can think of other reasons!
    Regards,
    Tim
    Edited by: Tim.Read on Jun 3, 2008 2:25 AM

  • Compliance of Oracle 10g R2 with Windows XP SP2

    Hello everybody
    I am representing my company for making a decision of deploying appropriate versions for Oracle and Windows.
    The vendor suggested Oracle 9 on Windows Server 2003, whereas we opted for deploying Oracle 10g R2 with Windows XP SP2.
    According to the vendor
    XP is not a true 'server' product and therefore does not provide many server functions and may have restrictions on numbers of users that can connect.
    If the vendor's notion is correct, would anyone explain the limitations/restrictions of our solution.

    One of the first problems that you will encounter, inbound connections limit in Windows XP:
    http://support.microsoft.com/kb/314882
    Memory allocations are handled differently between Windows 2003 and XP (paged pool, non-paged pool, file system caching, etc.):
    http://msdn2.microsoft.com/en-us/library/aa366778.aspx
    In some cases the memory allocation differences can cause XP to display errors indicating "unable to allocate memory from the paged pool" or the non-paged pool, when Windows 2003 would otherwise continue functioning without problem. Windows 2003 offers a registry change to work around this problem:
    http://support.microsoft.com/kb/312362
    Microsoft will stop making Windows XP available for resale in June 2008, except on extremely light-weight computers, and update support will end before update support ends for Windows 2003.
    There are typically differences in the hardware that ships with a computer loaded with Windows XP and one that ships with Windows 2003. You will have a hard time finding a computer with Windows XP that ships with redundant power supplies, dual backplanes, SCSI RAID 10 support, dual network interfaces, built-in system/diagnostics, etc.
    While Windows 2003 is the server equivalent of Windows XP, there are many features in Windows 2003 that are not available in Windows XP. XP is designed to be rebooted frequently (shut down every night, or reboot once a week or once a month) and is geared toward foreground application performance. Windows Server 2003 is designed to be rebooted infrequently (apply security updates, recover from rare system fatal bugs) and is geared toward providing good background application performance (the Oracle database instance would be a background application).
    If you are unfamilar with Windows Server 2003, take a look at the books "Microsoft Windows Server 2003 Administrator's Companion" by Microsoft Press and "Mastering Windows Server 2003" by Sybex. Compare what you find in those books with what you might find in Microsoft's Windows XP Resource Kit book.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Connect Oracle 10g Developer with Oracle 8i database

    Is it possible to connect Oracle 10g Developer with Oracle 8i database. If possible then plz guide how i can.

    with Oracle Developer 10g 9.0.4 is no problem to connect to Oracle 8i.
    with Oracle Developer 10g 10.1.2. you need the Patch 8.1.7.4 for 8i, i think.

  • Can anybody send me ebook for 'oracle 10g programming with pl/sql'

    Hi
    can any one send me ebook for oracle's 'oracle 10g programming with pl/sql', 'java'
    My mail id is: [email protected]
    Thanking in advance.

    I hope it can guide you to get ebooks for your request.
    http://www.oracle.com/technology/tech/pl_sql/index.html
    Cheers
    Vigneswaran

  • Is Oracle 10g compatible with windows 2008?

    Hi All,
    Is Oracle 10g compatible with windows 2008?
    What are the OS's oracle 10g compatible with? Is it compatible with VMware environment too?
    Regards
    Arun

    user12273523 wrote:
    Hi All,
    Is Oracle 10g compatible with windows 2008? Yes
    What are the OS's oracle 10g compatible with? Is it compatible with VMware environment too?please check
    http://www.oracle.com/technology/software/products/database/index.html
    Regards
    Rajesh

  • Out put to Excel from Reports

    hi all,
    Our current Reports version is Report Builder 6.0.8.22.0. We are having a report with 4 level grouping. When we generated Excel output, the data in excel is coming as follows :-
    The first 3 groups of data is coming in the first row and the 4th level data is coming in the second row. How to achieve every thing in the same line?
    For the report i created layout through Report Wizard and didn't disturb the arrangement of the fields.
    Can any one suggest a solution??
    Thanks.
    nivas.

    Its not possible to export data directly from 6i to excel but you can export in text file and then open it in excel it will open very easily but keep it in you mind first eliminate all report groups.
    and
    There is a trick to capture Oracle Reports output (text output) into a excel sheet.
    Basic Steps :
    1) Set the output format for the report to XML
    2) Run the report to generate output.
    3) Save the output file locally as a XML file.
    4) Open the file using MS Excel.
    5) To make it more beautiful, you may use a MS Excel Template
    and read below may be this will be helpful to u
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=853876
    Reports 6i Matrix Output in Excel Format

  • Help Required:How Upload Excel file Into Oracle Table Using PLSQL Procedure

    Please Help , Urgent Help Needed.
    Requirement is to Upload Excel file Into Oracle Table Using PLSQL Procedure/Package.
    Case's are :
    1. Excel File is On Users/ Client PC.
    2. Application is on Remote Server(Oracle Forms D2k).
    3. User Is Using Application Using Terminal Server LogIn.
    4. So If User Will Use to GET_FILE_NAME() function of D2K to Get Excel File , D2k Will Try to pick File from That Remote Server(Bcs User Logind from Terminal Server Option).
    5. Cannot Use Util_File Package Or Oracle Directory to Place That File on Server.
    6. we are Using Oracle 8.7
    So Need Some PL/SQL Package or Fuction/ Procedure to Upload Excel file on User's Pc to Oracle Table.
    Please Guide me wd some Code. or with Some Pl/SQL Package, or With SOme Hint. Or any Link ....
    Jus help to Sort This Issue ........
    you can also write me on :
    [email protected], [email protected]

    TEXT_IO is a PL/SQL package available only in Forms (you'll want to post in the Forms forum for more information). It is not available in a stored procedure in the database (where the equivalent package is UTL_FILE).
    If the Terminal Server machine and the database machine do not have access to the file system on the client machine, no application running on either machine will have access to the file. Barring exceptional setups (like the FTP server on the client machine), your applications are not going to have more access to the client machine than the operating system does.
    If you map the client drives from the Terminal Server box, there is the potential for your Forms application to access those files. If you want the files to be accessible to a stored procedure in the database, you'll need to move the files somewhere the database can access them.
    Justin

  • How to download output of program2 to excel from program1......

    Hi,
             i have program1 and program2. i am calling program2 from program1 through submit (PROGRAM2) and return to program1. program2 using REUSE_ALV_HIERSEQ_LIST_DISPLAY to display output.   What my requirement is , i need output of program2 in excel format and saved in my PC by calling program1 having input paramete , programname  that would be program2.
    plz try to solve it.
    thanks.....
    saurin shah

    PART -II
    FORM get_titles.
      CREATE DATA data_titles TYPE ty_titles.
      ASSIGN data_titles->* TO <fs_titles>.
      <fs_titles>-title = 'Customer Number 1'.
      <fs_titles>-field = 'KUNNR'.
      APPEND <fs_titles> TO t_titles.
      <fs_titles>-title = 'Country Key'.
      <fs_titles>-field = 'LAND1'.
      APPEND <fs_titles> TO t_titles.
      <fs_titles>-title = 'Name 1'.
      <fs_titles>-field = 'NAME1'.
      APPEND <fs_titles> TO t_titles.
      <fs_titles>-title = 'City'.
      <fs_titles>-field = 'ORT01'.
      APPEND <fs_titles> TO t_titles.
      <fs_titles>-title = 'Region'.
      <fs_titles>-field = 'REGIO'.
      APPEND <fs_titles> TO t_titles.
      <fs_titles>-title = 'Address'.
      <fs_titles>-field = 'ADRNR'.
      APPEND <fs_titles> TO t_titles.
    ENDFORM.                    "get_titles
    FORM get_data.
      SELECT KUNNR LAND1 NAME1 ORT01 REGIO ADRNR
      INTO TABLE t_spfli
      FROM KNA1
      WHERE LAND1 EQ 'IN'
      and KUNNR EQ '0000700008'.
    ENDFORM.                    " get_data
    FORM create_excel.
      w_line = 1.
      CREATE OBJECT e_appl 'EXCEL.APPLICATION'.
      SET PROPERTY OF e_appl 'VISIBLE' = 1.
      CALL METHOD OF e_appl 'WORKBOOKS' = e_work.
      CALL METHOD OF e_work 'Add' = e_work.
      GET PROPERTY OF e_appl 'ActiveSheet' = e_activesheet.
      SET PROPERTY OF e_activesheet 'Name' = 'Customer Details'.
      LOOP AT t_spfli ASSIGNING <fs_spfli>.
        w_tabix = sy-tabix.
        w_line = w_line + 1.
        LOOP AT t_titles ASSIGNING <fs_titles>.
          w_titles = sy-tabix.
          CALL METHOD OF e_appl 'Cells' = e_cell
            EXPORTING
              #1 = 1
              #2 = w_titles.
          SET PROPERTY OF e_cell 'Value' =  <fs_titles>-title.
          GET PROPERTY OF e_cell 'Interior' = e_color.
          SET PROPERTY OF e_color 'ColorIndex' = 35.
          GET PROPERTY OF e_cell 'Font' = e_bold.
          SET PROPERTY OF e_bold 'Bold' = 1.
          CALL METHOD OF e_appl 'Cells' = e_cell
            EXPORTING
              #1 = w_line
              #2 = w_titles.
          CONCATENATE '<fs_spfli>-' <fs_titles>-field
          INTO w_field.
          ASSIGN (w_field) TO <fs>.
          SET PROPERTY OF e_cell 'Value' = <fs>.
          GET PROPERTY OF e_cell 'Interior' = e_color.
          SET PROPERTY OF e_cell 'ColumnWidth' = 20.
          SET PROPERTY OF e_color 'ColorIndex' = 0.
          GET PROPERTY OF e_cell 'Font' = e_bold.
          SET PROPERTY OF e_bold 'Bold' = 0.
        ENDLOOP.
      ENDLOOP.

  • Reports Oracle 10G

    Hi all, i´m newly in this forum, but i can see much activity, thats good !
    Well, my main question is : How can i do reports from Oracle 10G
    Additional Info:
    The server is : Solaris 10 + Oracle 10G
    And i can access it through to a remote desk (Windows XP) where i have SQL Developer.
    The main idea is to generate queries furthermore I can generate related charts (Like Excel) and the whole report should be automatic every week.
    Could any of you give some ideas ??? is my first job with oracle and i´m very nervous
    Thanks in advance.

    Could any of you give some ideas ???SQL*Net allows remote Windows client to query DB server

  • Generating .pdf file from Reports Builder 10g

    Hi,
    I made a report in Reports Builder 10g and every label and field I set, but when I print the report throw reports builder field are displaced randomly, i.e. they are not where I set them in paper layout. In print preview everything is OK, but when I print it everything(fields) is in the mess. Please help.

    APEX doesn't output PDF natively, so you have to use an external report server for this. There's a link on apex.oracle.com entitled PDF Printing that discusses the options.
    Tyler Muth
    http://tylermuth.wordpress.com
    [Applied Oracle Security: Developing Secure Database and Middleware Environments|http://sn.im/aos.book]

  • Instant Client Connection Problem - Excel 2007 to Oracle 10g

    Dear users,
    I would some help to connect Excel to Oracle.
    I am using Excel 2007 (32-bit) on Windows Vista Enterprise 64-bit. I want to connect to an Oracle 10g database through our local network using ODBC. I need to fetch some data once into an excel sheet.
    There are no firewall issues or connection issues between my current machine , as I can connect from my machine, using SQL developer as a local client to the Oracle Database which is on another machine on the network.
    I tried to make an ODBC connection but Oracle is not listed as a driver.
    I beleive ODBC is the best way to do this, but please correct me if I am wrong.
    It is an Oracle 10G database.
    I downloaded instantclient-basiclite-windows.x64-11.2.0.2.0.zip a
    I also downloaded the extra ODBC components: *Instant Client Package - ODBC: Additional libraries for enabling ODBC applications.
    I unzipped both in a folder called C:\instantclient_11_2
    The system path included that. I checked after rebooting.
    I placed my tnsnames.ora (which I copied from the server) in that folder.
    I got ti from the server : D:\Oracle\Ora10gR2DB\network\admin\tnsnames.ora
    I ran the exe "odbc_install" and It told me the ODBC was intalled successfully.
    When I went the control panel, administrative tools, ODBC
    In the user dsn tab
    I added a new entry. I chose the Oracle driver (previously it was not in the list)
    Used the following values
    Data Source name: OracleL
    Description 123
    TNS Service NAme: I chose fro ma drop down menu our prod environment. (There are two entries with the production name, one in caps and the other in lowercase)
    Userid: my username
    I tried Test the connection and got this:
    Unable to Connect
    SQlState=S1000
    [Oracle][ODBC][Ora]ORA-12545: Connect failed because target host or object does not exist
    Any suggestions please.
    Thnaks in advance.
    A.
    Thanks for all your help, in advance.
    Akajohn.
    Edited by: user12282521 on May 19, 2011 1:47 PM

    user12282521 wrote:
    I would some help to connect Excel to Oracle.
    I am using Excel 2007 (32-bit)
    I downloaded instantclient-basiclite-windows.x64-11.2.0.2.0.zip aIf Excel is 32-bit (2007 is) and Oracle client libraries are 64-bit, it won't work. 32-bit needs 32-bit.
    You probably should remove current ic packages and get the 32-bit ones instead.
    Start over.
    When I went the control panel, administrative tools, ODBCOn Windows x64, to manage 32-bit ODBC DSNs/drivers one needs to run the tool from Windows\SysWoW64\odbcad32.exe.

Maybe you are looking for