Reports On Ref Cursor - Patch download and Installation issue

I have made a dummy report based on ref cursor.
Code
DB
==
create or replace PACKAGE my_cursors IS
type emp_rc_strong is ref cursor return emp%rowtype;
type emp_rc_weak is ref cursor;
function fn_RefCur(p_deptno number) return my_cursors.emp_rc_strong;
END;
create or replace PACKAGE body my_cursors IS
function fn_RefCur(p_deptno number) return my_cursors.emp_rc_strong is
emp_data_strong my_cursors.emp_rc_strong;
emp_data_weak my_cursors.emp_rc_weak;
begin
open emp_data_weak for 'select * from emp where deptno = :1' using p_deptno;
emp_data_strong := emp_data_weak;
return emp_data_strong;
end;
Report Builder
=========
Inside ref_cursor query object
function QR_1RefCurDS return my_cursors.emp_rc_strong is
emp_data_weak my_cursors.emp_rc_weak;
begin
emp_data_strong := my_cursors.fn_RefCur(:p_deptno);
return emp_data_strong;
end;
While running it's giving following error
REP-0065: Virtual Memory System Error
REP-0200: Cannot allocate enough memory cavaa 22
So, when I searched on net, I found
Cause
This is a known Oracle Reports bug for MS Windows Platform.
Bug 5584001 DYNAMIC REF CURSORS DON'T WORK IN VERSION 10.1.2.0.2 REPORTS BUILDER
Solution
To implement the solution, two one-off patches should be applied to
Oracle Reports %ORACLE_HOME% Please execute the following steps:
1. Download the following two one-off patches from Metalink:
One-off Patch 4505133
One-off Patch 5634746
But since I am a home user, so how I can download these patches and test.

You can't without metalink access.

Similar Messages

  • New resources for download and installation issues

    See this new FAQ entry for links to some handy resources for issues with downloading and installation:
    http://forums.adobe.com/thread/957944
    Most pertinent is the first link, to the improved access to Adobe Customer Service.

    I had the same message but it went on to say "can't retrieve essential parameters" and didn't download at all.

  • Download and Installation issues with Adobe Reader 9

    I am having problems downloading and installing Adobe Reader 9. When I ask it to download I get an error message saying "URL not allowed! (15219.305.68)". Sometimes it will continue to download after clicking OK and other times it will not download at all.
    Once I get it to download and install I then can't use it.
    A few seconds after opening Adobe Reader 9 I get the following error message:
    b Microsoft Visual C++ Runtime Library
    b Program: C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe
    b This application has requested the runtime to terminate it in an unusual way. Please contact the application's support team for more information.
    I have tried this on two of our computer both running Windows XP Professional.
    Has anyone experienced the same/similar problem?
    Lucy Dunlop

    I had the same message but it went on to say "can't retrieve essential parameters" and didn't download at all.

  • Report using ref cursor or dynamic Sql

    Hi,
    I never create a report using a ref cursor or a dynamic sql. Could any one help me to solve the below issue.
    I have 2 tables.
    1. Student_Record
    2. Student_csv_help
    Student_Record the main table where the data is stored.
    Student_csv_help will contain the all the column names of the Student_record.
    CREATE TABLE Student_CSV_HELP
    ENTRY_ID NUMBER,
    RAW_NAME VARCHAR2(40 BYTE),
    DESC_NAME VARCHAR2(1000 BYTE),
    IN_OUTPUT_LIST VARCHAR2(1 BYTE)
    SET DEFINE OFF;
    Insert into TOA_CSV_HELP
    (ENTRY_ID, RAW_NAME, DESC_NAME, IN_OUTPUT_LIST)
    Values
    (1, 'S_ID', 'Student ID', 'Y');
    Insert into TOA_CSV_HELP
    (ENTRY_ID, RAW_NAME, DESC_NAME, IN_OUTPUT_LIST)
    Values
    (2, 'S_Name', 'Student Name', 'Y');
    Insert into TOA_CSV_HELP
    (ENTRY_ID, RAW_NAME, DESC_NAME, IN_OUTPUT_LIST)
    Values
    (3, 'S_Join_date', 'Joining Date', 'Y');
    Insert into TOA_CSV_HELP
    (ENTRY_ID, RAW_NAME, DESC_NAME, IN_OUTPUT_LIST)
    Values
    (4, 'S_Address', 'Address', 'Y');
    Insert into TOA_CSV_HELP
    (ENTRY_ID, RAW_NAME, DESC_NAME, IN_OUTPUT_LIST)
    Values
    (5, 'S_Fee', 'Tution Fee', 'N');
    commit;
    CREATE TABLE Student_record
    S_ID NUMBER,
    S_Name VARCHAR2(100 BYTE),
    S_Join_date date,
    S_Address VARCHAR2(360 BYTE),
    S_Fee Number
    Insert into Student_record
    (S_ID, S_Name, S_Join_date, S_Address,S_Fee)
    Values
    (101, 'john', TO_DATE('12/17/2009 08:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'CA-94777', 2000);
    Insert into Student_record
    (S_ID, S_Name, S_Join_date, S_Address,S_Fee)
    Values
    (102, 'arif', TO_DATE('12/18/2009 08:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'CA-94444', 3000);
    Insert into Student_record
    (S_ID, S_Name, S_Join_date, S_Address,S_Fee)
    Values
    (103, 'raj', TO_DATE('12/19/2009 08:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'CA-94555', 2500);
    Insert into Student_record
    (S_ID, S_Name, S_Join_date, S_Address,S_Fee)
    Values
    (104, 'singh', TO_DATE('12/20/2009 08:00:00', 'MM/DD/YYYY HH24:MI:SS'), 'CA-94666', 2000);
    Commit;
    Now my requirement is:
    I have a form with Student_record data block. When i Click on print Button on this form. It will open another window which has Student_CSV_HELP.DESC_NAME and a check box before this.
    The window look like as below:
    check_box       DESC_NAME+
    X                   S_ID+
    --                   S_Name+
    X                   S_Join_date+
    X                   S_Address+
    --                  S_Fee+
    X  means check box checked.+
    --  means check box Unchecked.+
    After i selected these check boxes i will send 2 parameters to the report server
    1. a string parameter to the report server which has the value 'S_ID,S_Join_date,S_Address' (p_column_name := 'S_ID,S_Join_date,S_Address');
    2. the s_id value from the student_record block (p_S_id := '101');
    Now my requirement is when i click on run. I need a report like as below:
    Student ID : 101+
    Joining Date : 12/17/2009 08:00:00+
    Address : CA-94777+
    This is nothing but the ref cursor should run like as below:
    Select S_id from student_record block S_id = :p_S_id;
    Select S_Join_date from student_record block S_id = :p_S_id;
    Select S_Address from student_record block S_id = :p_S_id;
    So, according to my understanding i have to select the columns at the run time. I dont have much knowledge in creating reports using ref cursor or dynamic sql.
    So please help me to solve this issue.
    Thanks in advance.

    Plain sql should satisfy your need. Try ....
    Select S_id, S_Join_date, S_Address
    from student_record
    where S_id = :p_S_id

  • I'm having problems upgrading from 10.6.8 to Yosemite.  My computer locks up after the download and installation process.  Does anyone know how I can overcome this problem?

    I'm having problems upgrading from 10.6.8 to Yosemite. My computer locks up after the download and installation process. Does anyone know how I can overcome this problem?

    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.

  • After download and installation of PS PE12 I have problems starting the programm. After selecting video and new project nothing happens, only the colorbar below new project is showing

    New computer.
    After download and installation of PS PE12
    I have problems starting the programm, double clicking on the icon.
    After selecting video and new project nothing happens, only the colorbar below new project is showing, nothing happens.
    (expected was to activate the program and the sarting the PE12)
    PSE12 runs fine
    System:
    WIN8.1 / i7 /16GB RAM

    New computer.
    After download and installation of PS PE12
    I have problems starting the programm, double clicking on the icon.
    After selecting video and new project nothing happens, only the colorbar below new project is showing, nothing happens.
    (expected was to activate the program and the sarting the PE12)
    PSE12 runs fine
    System:
    WIN8.1 / i7 /16GB RAM

  • Logic Pro x - additional content downloads and installs but it won't show up in my Logic Pro X. Where is the add'l content downloaded and how do I activate on Logic Pro X?

    The additional content downloads and installs, but it won't show up in my Logic Pro X. I cannot find the "Library" folder where this additional content is  downloaded to and can't seem to activate the new loops and instruments in my Logic Pro X (i.e. loops are still greyed out). Any solutions?

    similar problem that I'm hoping revives this thread. Took over 24hrs to dload additional content (after another full day for the actual problem) due to a bad dload rate. so quitted, and relocated closer to my wifi router. Restart, open logic x, Menu bar:  Logic Pro/ Download Additional content ...Tells me i have no internet connection.... Ahh... I do, I'm using it right now! Tried restarting and relaunching. same thing every time.
    Any clues?
    This whole apple upgrade has been so disappointing! All i wanted to do was reinstall logic 9! $2500 later and I'm still struggling. ***!

  • Just completed the redemption process.  Where's the download and installation files?

    Just completed the redemption process.  Where's the download and installation files?

    Go to App Store > Purchases to check the OS X download progress. The installer is stored in Applications folder

  • TS1398 tonight i have upgraded my Ipad2 to ios 6 by it's own wifi,after compete downloading and installation the wifi password is not accepted by ipad2,i have tested so many times and i entered password correctly.please help

    tonight i have upgraded my Ipad2 to ios 6 by it's own wifi,after compete downloading and installation the wifi password is not accepted by ipad2,i have tested so many times and i entered password correctly.please help

    are other things still connecting to the wifi without a problem?
    Have you tried resetting network settings, then unplugging modem and router from power for 40 seconds then plugging back in letting the lights stabilize and Then recconecting with the ipod>?

  • Cant download and installation failed.

    Dear expert im in troubles with my nokia 6600 s60v2 phone.The phones settings is from 02 mobile uk.Presently using in Bangladesh after having Bangladeshi sim and Gprs connection.The voice call is running well.When i goto download any jar,jad or sis file an error display as content type doesnt support,unable to install or service failed to perform operation.Finding this problem i formatted the phone.It is to be mentioned here that after formating the phone,the factory setting comes with 02 mobile uks settings.The firmware of phone is v 3.42.1 16.10.3 NHL 10.Bangladeshi sim and setting working but problem is with download and installation.Kindly help me as how can i make the phone like any setting less or asia specific.Upgrade of firmware can solve the problem or not.An early help is solicited.Regards,malaker

    Any one please help me

  • SanDisk Clip Jam Firmware 1.03 Download and Installation Instructions

    Firmware is the software code that powers your Clip Jam. You can think of it as the operating system.  SanDisk actively and periodically updates the capabilities, functionality, and reliability of the Firmware.  For an optimal experience with your Clip Jam, SanDisk recommends that you update your Firmware with each new release.  It’s fast, easy, and free!
    SanDisk has released firmware version 1.03 for the SanDisk Clip Jam. Download links and the release notes are available below.
    SanDisk Clip Jam Firmware 1.03 Download and Installation instructions
    Manual Firmware Update (All Regions) - Click here to download
    All languages are now in one firmware version. After firmware update you will need to select your Language and Region preference.
    • Remove any external card from the Clip Jam before performing firmware update
    • Ensure your battery is > 50% full.
    • Plug in your SanDisk Clip Jam to your computer.
    • Download and save the upgrade.hex file linked above to a folder on your computer.
    • Drag the file to the root directory of your SanDisk Clip Jam
    • Disconnect the SanDisk Clip Jam and let the firmware update begin.
    • Once it finishes doing its update, it will turn itself off.
    • Turn the Clip Jam on, Select your language and region preference
    • Once it is back to the main menu, head to "Settings" >"System Settings"> "Info", and verify the "Version" is now 1.03".

    this is the first shipping FW. there are no release notes for changes because this is the first release. 

  • Facetime app download and installation keeps restarting

    Facetime app download and installation keeps restarting

    He mate
    You have to go to setting - iTunes and app store - turn off iTunes Store and App Store on both devices
    Cheers mate :)
    <Edited By Host>

  • After download and installation, InDesign, Flash, Dreamweaver and Premiere Pro all won't fully launch.

    After download and installation, InDesign, Flash, Dreamweaver and Premiere Pro all won't fully launch. From the Windows icon pane, I click on the program, it opens the Sign In Required pane, I sign in, it opens the Thank You pane and reverts back to Sign In pane or never opens the program.
    Acrobat also keeps giving me a popup to sign in, each time I look at a .pdf file.
    I have tried uninstalling Acrobat and then redownloading. It didn't work.
    Anyone else find a fix?

    Sign Out When Sign In http://forums.adobe.com/thread/1450581?tstart=0 may help
    -and http://helpx.adobe.com/creative-cloud/kb/unable-login-creative-cloud-248.html

  • FAQ: Where can I get help with downloading and installation?

    See this page for options for contacting Adobe regarding problems with downloading and installation:
    "Contact support - download and installation"
    You can ask questions and search for answers on the Adobe user-to-user forum dedicated to downloading, installation, and setup.
    You can also check the Customer Service FAQ lists for issues with downloading and installation.
    You can order Premiere Pro CS6 here ... or try it free for 30 days.

    Hello,
    This kind of question is best asked in the Windows Forums, however I've had some succession with a similar issue myself.
    Non-Genuine Windows means that it can't authenticate your copy of Windows.
    It's not a problem, all your need is a genuine product key code. Provided you don't have different version of Windows 7 installed to the one you are buying (for example windows 7 Home Premium and Windows 7 business) Then you can use the new key code.
    Click on the Start Button and type: CMD (into the 'Search programs and files' field in the Start Menu)
    The Start Menu will show 'CMD.exe', 
    Right-click the CMD.exe file and select Run As Administrator.
    In the CMD window, type: slmgr.vbs -ipk <type your product key here>
    To activate windows after changing the key, type: slmgr.vbs -ato
    It should now accept the new key code and you will need to be connected to the Internet to authenticate.
    If by chance the windows 7 types are different (One is Home premium say and the other is Business) then you will need to uninstall that copy of Windows 7 and install the new one. If your using BootCamp then you will need to go into BootCamp under system preferences and remove that copy of Windows (delete it)
    Then create a new setup with your new Windows 7 disk.
    For me I had the same type of windows, changing the product code worked. Saved me the bother of having to reinstall Windows again and it was all genuine.
    Best of luck

  • Does Roaming data syncs for the first time when app data are in download and installation process?

    Hi,
    I will store user Id in "HighPriority" Roaming data. When user will install app in another computer (with the same Microsoft Account), app will get user Id from Roaming data. Then I can implement all data sync over my cloud service.
    There are 2 scenarios:
    1. User downloads and installs app in another computer, but roaming data syncs/downloads for the first time only after several minutes -
    It's bad for my app :(
    2. User downloads and installs app in another computer and roaming data syncs/downloads at the same time (then I can get user Id immediately)
    - Its great for my app :)
    Which scenario is real in practice?
    Does Roaming data syncs for the first time when app data are in download and installation process?

    Umm no not that i remember. It just randomly started happening. I reformatted the hard drive for mac (journaled) but it was working fine since i did it until now

Maybe you are looking for