Oracle does not provide correct patches!!!!

I have installed 9iAS 1.0.2.2.0 and tried to run the Discoverer patch to upgrade to 4.1.4.2 only to find out that the version Discoverer installed with 1.0.2.2.0 is 4.1.3.3 and that the patch requires Discoverer 4.1.3.7 The problem is that you can not find a patch on Metalink that upgrades from 4.1.3.3 to 4.1.3.7 so that you will be able to upgrade to 4.1.4.2
Is there anybody that can mail me this patch or let me know where I can download it please. The operating system is on Suse Linux Enterprise server.

I have to apologise. I found patch 1949194 which fixes this problem. After you have applied this patch you can apply the upgrade patch which will allow you to upgrade to 4.1.42

Similar Messages

  • REPORT DOES NOT RUN CORRECTLY , URGENT PLEASE HELP

    Hi,
    I am trying to run a report from visul basic screen, but it does not run correctly. Here is how I am running the report. There is a screen developed in VB This screen prompts the user for user id and password. Once it gets that, it connects to the oracle database and pulls out a column from a table. And passes that value as a parameter to the report. Now I am calling the the report for each individual value . There are 21 value being pulled out of the database and it invokes the report 21 times. So there are 21 report engines gets started. Is there a better way to do that ? Secondly when I pass the parameter , some parameters does not pass correctly I guess , because its not generating any out put . Like out of 21 may be 10 or 11 reports gets generated correctly but rest of the reports are blank. I debug the screen i saw that the parameter value is correct, everything seems good. But still the reports are comming blank. Any Idea why it is so ? The command line that i am using in VB screen is
    Shell "C:\progra~1\ora95_2\bin\rwrun60.exe P:\Business_Analysis_&_Reporting_Tool\Test_REPORT_Templates\STORE_TYPES\Baby_Distribution_Report.Rdf USERID=" & UID & "/" & PWD & "@cposp201 DESFORMAT=PDF DESTYPE=FILE DESNAME=" & txtPath.Text & Replace(strName, " ", "_") & ".PDF BRND='" & adoRecBrand!Brand & "' PRINTJOB=NO PARAMFORM=NO"
    In the above command " adoRecBrand!Brand " is the parameter thats being passed. This is actually a recordset and brand is the column in it. When I debug the screen , I see the value also there. But the report comes out blank. Please help. This is urgent.
    Thanks
    Feroz

    The way you call reports is not scalable. If you have 100 records come back from database, you would end up launch 100 engines at the same times, which probably will blow up your machine. You should use oracle reports server to do that. You can either use rwcli60 to submit the job to reports server, or invoke rwcgi60 from URL.
    I am afraid some of reports engine failed to start and you get nothing back in your case.
    After switch to use reports server achitecture, if you still see some report is blank in your application, then you can run that report with that special set of parameters manually and see if any problem with the report itself.
    Hope this helps.
    Thanks,
    -Shaun

  • [svn:bz-trunk] 17920: Fix for WebLogic: WebLogic does not provide File IO on the deployed artifacts hence using getResourceAsStream .

    Revision: 17920
    Revision: 17920
    Author:   [email protected]
    Date:     2010-09-29 05:56:06 -0700 (Wed, 29 Sep 2010)
    Log Message:
    Fix for WebLogic: WebLogic does not provide File IO on the deployed artifacts hence using getResourceAsStream.
    Modified Paths:
        blazeds/trunk/apps/samples/WEB-INF/src/flex/samples/marketdata/Portfolio.java

    check the server log;
    /app/oracle/product/fwm11g/user_projects/domains/fwm_domain/servers/AdminServer/logs/AdminServer.log
    you can launch the console and see if it is running; http://<server>:<port>/console

  • PrintWriter does not send correct text over HTTP

    Hello All,
    I need information to resolve a problem I am having with PrintWriter and sending text using HTTP.
    I am developing a client/server system. A client will be used to connect to a Tini (a Dallas Semiconductor designed embedded system). Currently, to understand HTTP operation, I wrote a server that resides on the tini that listens for a connection attempt and when one is made prints the HTTP message in Dallas' JavaKit application window. The resultant Tini display includes some hardcoded tini text (italics only in (b) and (c) below) along with that received from the client app (italic bold in (b) and (c) below).
    I have also written some test client side code (see (a) below) in Sun's Java Studio Creator that sends a couple of lines of text so that I could see what my client app would actually send. I tried a few different ways of creating a PrintWriter object as shown in the code at (a) below just to see if it was a character set problem.
    The problem is that I get two different results under the following conditions:
    [Condition 1]: Entering "HTTP://tini" in the browser and pressing Enter. See result (b) below. This is correct and shows what the browser sends to the tini. The tini outputs the text immediately after pressing Enter.
    [Condition 2]: Running my client code in the browser. See result (c) below. This is incorrect and sends just a bunch of "y"s with umlauts as the message. The tini immediately outputs text up to the "cnt=0" line and then can take up to a couple of minutes to complete the message.
    1. Can anyone tell me why the client sends those "�" instead of the strings I encoded for all character sets?
    2. Why does the client code takes so long to complete after the initial transmission?
    3. Can anyone provide me with links to information that explains this behavior? I searched Sun and the forum but found nothing.
    (a) Here is the current test client side code that sends a couple of strings to the tini:
        public String button3_action() {
            // TODO This should send the tini a request for its IP address
            String protocol = "HTTP";
            String host = "tini";
            try{
                 URL tiniURL = new URL("http://tini");
                 URLConnection tiniConnection = tiniURL.openConnection();
                 tiniConnection.setDoOutput(true);
         //     Comment out one then the other to see if there is a difference in result (there is not!)
         //        PrintWriter tiniout =  new PrintWriter(new OutputStreamWriter(tiniConnection.getOutputStream(), "UTF-16"));
         //        PrintWriter tiniout =  new PrintWriter(new OutputStreamWriter(tiniConnection.getOutputStream(), "UTF-8"));
         //        PrintWriter tiniout =  new PrintWriter(new OutputStreamWriter(tiniConnection.getOutputStream(), "ISO-8859-1"));
         //        PrintWriter tiniout =  new PrintWriter(tiniConnection.getOutputStream());
                 PrintWriter tiniout =  new PrintWriter(new OutputStreamWriter(tiniConnection.getOutputStream()));
                 tiniout.println("GET / HTTP / 1.1\r\n");
                 tiniout.flush();
                 tiniout.println("IPaddress?");
                 tiniout.flush();
                 tiniout.close();
            catch(MalformedURLException e){
                e.printStackTrace();
            catch(IOException e){
                e.printStackTrace();
            return null;
    (b) Result displayed in JavaKit from Condition 1:
    just starting
    Waiting for a connection attempt
    Start thread
    Thread's run() method entered!
    Try to create a new StringBuffer
    StringBuffer created
    Read the buffer in this loop cnt =0
    Read the buffer in this loop cnt =1
    Read the buffer in this loop cnt =394
    Read the buffer in this loop cnt =395
    Out of loop.
    Now print HTTP message.
    GET / HTTP/1.1
    Host: tini
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax)
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8 ,image/png,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    "v"is at position390
    "e"is at position391
    "is at position392
    ""is at position393 "
    "is at position394
    java.lang.StringIndexOutOfBoundsException: String index out of range: 395
    No other stack trace info available.
    (c) Result displayed in JavaKit from Condition 2:
    just starting
    Waiting for a connection attempt
    Start thread
    Thread's run() method entered!
    Try to create a new StringBuffer
    StringBuffer created
    Read the buffer in this loop cnt =0
    Read the buffer in this loop cnt =1
    Out of loop.
    Now print HTTP message.
    ���������������������������������������������������������������������������� �������������������������������������������������������������������������������� �������������������������������������������������������������������������������� �������������������������������������������������������������������������������� �������������������������������������������������������������������������������
    "�"is at position390
    "�"is at position391
    "�"is at position392
    "�"is at position393
    "�"is at position394
    java.lang.StringIndexOutOfBoundsException: String index out of range: 395
    No other stack trace info available

    This is to anyone that is having trouble sending data via a stream using a browser client. I found the answer after many different searches on the Sun site in a bug report: Bug ID: 4192018.
    The problem arises from the way the API actually uses outputstreams. It appears that you must add an InputStreamReader to actually flush the OutputStreamWriter buffer. After reading this bug report I added
    (tiniConnection.getOutputStream(), "ISO-8859-1"));
            OutputStreamWriter tiniout =  new OutputStreamWriter(tiniConnection.getOutputStream(), "ISO-8859-1");
            InputStreamReader tiniIn =  new InputStreamReader(tiniConnection.getInputStream(), "ISO-8859-1");
            tiniout.write("GET/HTTP/1.1\r\n");
            tiniout.flush();
            //This is necessary to actually send data.
            tiniIn.read();
            tiniout.write("IPaddress?");
            tiniout.flush();
            //This is necessary to actually send data.
            tiniIn.read();
            tiniout.close();
            catch (MalformedURLException e){
                e.printStackTrace();
            catch (IOException e){
                e.printStackTrace();
            }NOTE: The preliminary program still does not perform correctly but it does send data that is displayed in tini's JavaKit window. At least I can continue to verify how the browser sends data.
    I hope this helps someone.

  • Canon 5D MK II white balance set as K does not import correctly

    With a 5D II and the Kelvin white balance set in the camera the WB does not import correctly for RAW files and LR 2.4. For example when set to a specified white balance as a Kelvin setting, for example 5200, and then import the raw files with "As Shot" specified or subsequently WB to "As Shot" in Develop module the white balance is set to 4850 +1 (in the example of 5200). The pre set WB options provided inthe camera do work correctly.
    Does anyone know if there is a way to set this up to work correctly? Has anyone else experienced this issue?
    Thank you.

    Does anyone know if there is a way to set this up to work correctly? Has anyone else experienced this issue?
    Lightroom does work correctly. The numbers are different, but the appearance ot the colour temperature matches. The way I understand it, cameras don't actually store Kelvin numbers, but store colour space co-ordinates instead. LR and your Canon are interpreting the RAW values into different colour spaces, so the kelvin values and tint numbers will differ.
    Hal

  • PS does not Provide WSDL for RTNGTYPE Synchronous Non Blocking

    Hi,
    This particular field has 5 Translate values. Of which PS does not provide an example/entry for RTNGTYPE Synchronous Non Blocking Routing in either FSCM or CRM Demo Database.
    Would like to know, if some one has created a Routing Type of Synchronous Non Blocking and implemented that.
    The reason being, that for Service Ops with the RTNGTYPE as Synchronous Non Blocking, PS does not allow us to generate WSDLs...Also, Not sure how to create a Sync Non Blocking Routing for a Sv Op in PS...
    Any help is appreciated...
    Thanks
    Prashant

    Are you sure you have uploaded everything in the gallery folder to the correct location. It can't find the index.html page.

  • Map app is Dangerous- It does not provide Voice Direction.  I almost made an ACCIDENT! You can't expect to drive while looking at the screen

    Map app is dangerous
    it does not provide any voice direction. I almost made an ACCIDENT.  You Cannot expect anyone to drive while looking at the screen.

    Correct the Map app does not give audible turn by turn navigation. It does not advertise as doing so. There are many GPS applications which are avaialble that do.
    Like any device use of common sence is in order. From the Important Product Information Guide, one of which can be found here.
    Driving and Riding Safely Use of iPhone while driving a vehicle or riding a bicycle may be distracting. If you find using iPhone disruptive or distracting while driving or riding, pull off the road and park before making or answering a call. Use of iPhone alone or with headphones (even if used only in one ear) while driving or riding is not recommended and is illegal in some areas. Consider using a compatible hands-free device with iPhone. Use of a hands-free device may be required in some areas. Check and obey the laws and regulations regarding the use of mobile devices like iPhone in the areas where you drive or ride. Navigating Safely Do not rely on iPhone applications that provide maps, digital compass headings, orientation information, traffic information, directions, or location-based navigation to determine precise locations, proximity, orientation, distance, traffic conditions or direction. These applications should only be used for basic navigation assistance. Maps, directions, and location-based applications depend on data services. These data services are subject to change and may not be available in all areas, resulting in maps, digital compass headings, directions, traffic conditions or location-based information that may be unavailable, inaccurate, or incomplete. iPhone contains an internal digital compass located in the upper-right corner of iPhone. The accuracy of digital compass headings may be negatively affected by magnetic or other environmental interference, including interference caused by the close proximity of the magnetscontained in the iPhone earbuds. Never rely solely on the digital compass for determining direction. Compare the information provided on iPhone to your surroundings and defer to posted signs to resolve any discrepancies.
    Do not use location-based applications while performing activities that require your full attention. Always comply with posted signs and the laws and regulations in the areas where you are using iPhone.

  • One song does not synch correctly

    I purchased a song from iTunes on my Mac. I added it to two different playlists and synched those playlists to my iPhone 4. When I play the song on my iPhone, it does not start at the beginning of the song (the first 10 or 15 seconds seem to be missing). The song plays correctly on my Mac.
    I tried deleting the song from my playlists, syncing, copying the song again to the playlists, and re-synching. The song still does not play correctly on my phone.
    Does anyone have ideas for how to resolve this?

    Hello Michael,
    Thank you for providing the details of the issue you are experiencing with the song purchased from the iTunes Store.  I recommend following the following article, specfically the section titled "Authorize using the correct account name," for the issue you described
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    http://support.apple.com/kb/ts1389
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Why resource cost in Oracle does not equal the total on the routing of Usage.

    why resource cost in Oracle does not equal the total on the routing of Usage.

    Hi Judy,
    I could not reproduce your issue. Is your Project Server patched with the latest SP and CU?
    Also can you reproduce this unexpected behavior with another project?
    Can you split your screen from the resource usage view, display the resource form and click right on the grey part selecting "schedule"? Then you'll have the scheduled start and finish dates for the resource's assignments. This is to be sure that
    you are not missing any parts of the assignments due to a wrong zoom in the timephased grid.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Animated Gif Image does not render correctly on screen

    I have added animated gif image to the scene it does not render correctely.it shakes on the screen. plz give me any suggestion
    i use following code
    Image logo= new Image(getClass().getResourceAsStream("images/image.gif"));
    logoLabel.setGraphic(new ImageView(logo));

    Hello user,
    I think gif are rendered smoothly.
    Are you sure you are not making many object of same images everytime?
    Thanks.
    Narayan

  • Page does NOT load correctly in FIREFOX

    My HOME page does not RELOAD correctly in FIREFOX when when
    the link is clicked on from another page in my little "2 page"
    site.
    BUT if I click on the BACK button it loads CORRECTLY
    It works correctly in IE
    Here is the Home page:
    http://www.quicksubmitbrokerswholesale.com/
    Here is page 2 where clicking on the link in FIREFOX loads
    incorrectly:
    http://www.quicksubmitbrokerswholesale.com/submitforpricing.html
    What do I need to TWEAK to make it work OK in FIREFOX?
    Thanks in advance

    Here is the crux of all your problems:
    <!-- Fireworks 4.0 Dreamweaver 4.0 target.
    You built the site in Fireworks, and a very old version at
    that, and then
    imported the site into DW. Graphics apps like Fireworks and
    Photoshop
    produce bloated, convoluted code and fragile structures. If
    you want a
    worthwhile site you will have to start over. Create only your
    graphics in FW
    and build the entire site in DW. Be cautioned though such an
    old version of
    DW won't produce a site consistent with today's standards.
    You really should
    upgrade if you want to deliver value to your client.
    Walt
    "electro-dud" <[email protected]> wrote in
    message
    news:gb2k07$9v4$[email protected]..
    > My HOME page does not RELOAD correctly in FIREFOX when
    when the link is
    > clicked
    > on from another page in my little "2 page" site.
    > BUT if I click on the BACK button it loads CORRECTLY
    >
    > It works correctly in IE
    >
    > Here is the Home page:
    >
    http://www.quicksubmitbrokerswholesale.com/
    >
    > Here is page 2 where clicking on the link in FIREFOX
    loads incorrectly:
    >
    http://www.quicksubmitbrokerswholesale.com/submitforpricing.html
    >
    > What do I need to TWEAK to make it work OK in FIREFOX?
    >
    > Thanks in advance
    >
    >

  • Webi does not pick correct Data

    Hi Guys,
    I have a webi. The Universe for the Webi is based on  Bex Query. I see correct Data in Bex Query but when I create a webi report it does not pick correct data.
    I have checked following points already:-
    1] No Resstriction at Query Level
    2] No restriction at Universe Level
    3] No Filters/ Restriction at Webi Level.
    Can anyone suggest whats happening?
    Regards

    Hi Ray,
    It happens sometimes that data gets aggregated over all the dimension objects present in the 'Available Objects' section in webi.
    Try to pull only the characteristics present in the row section of the bex query say 'X' and measure in the column section of bex query say 'Y' into the results pane in the edit query window in webi.Then run the report and check.
    This will give you the idea about aggregation.
    Regards
    Vineeta

  • OWM says "The directory OH /owm/wallets/oracle" does not exist

    Hello, RHEL 6, x86-64
    Oracle 11.2.0.4 Ent Edition
    I just upgraded the database from 11.2.0.3 to 11.2.0.4.  User reports "ORA-28365: wallet is not open" while trying to access tables in a certain schema.
    I have little experience with Wallet so I find out that I can "open" the wallet using OWM.  I start OWM and follow the instructions in section 9.4.3 of http://docs.oracle.com/cd/B28359_01/network.111/b28530/asowalet.htm#i1006711, and after step 2 which is to select a directory for the wallet, it tells me, ""The directory <OH>/owm/wallets/oracle" does not exist".  Ahh!  (By the way, this was when I was pointed to the ORIGINAL oracle home (11.2.0.3) because I wanted to see if the wallet existed there.
    Now I am moderately panicked.  What do I try next?  I gotta get the wallet open!
    Thank you in advance for taking the time.
    Humbly,

    Hi,
    If you have TDE encrypted objects, one must open the wallet from the sqlplus.
    1) make sure the sqlnet.ora from your $ORACLE_HOME/network/admin has ENCRYPTION_WALLET_LOCATION parameter set, example:
    ENCRYPTION_WALLET_LOCATION =
    (SOURCE =
      (METHOD = FILE)
      (METHOD_DATA =
      (DIRECTORY = /home/oracle/wallet)
    2) connect as sysdba and run:
       alter system set encryption wallet open identified by "wallet_password";
    3) select wallet status and path from : select * from v$encryption_wallet;
    4) select again from the encrypted objects

  • Build Issue(package weblogic.jdbc.vendor.oracle does not exist) weblogic10

    Hi All,
    I am getting below build error. I am migrating weblogic 10. Which jar file contains this interface: weblogic.jdbc.vendor.oracle.OracleThinClob?
    Error:
    package weblogic.jdbc.vendor.oracle does not exist [javac] if (theClob instanceof weblogic.jdbc.vendor.oracle.OracleThinClob)
    I already got weblogic.jar file from weblogic 10.
    Thanks,
    Srinivas

    Srinivas U wrote:
    Hi All,
    I am getting below build error. I am migrating weblogic 10. Which jar file contains this interface: weblogic.jdbc.vendor.oracle.OracleThinClob?
    Error:
    package weblogic.jdbc.vendor.oracle does not exist [javac] if (theClob instanceof weblogic.jdbc.vendor.oracle.OracleThinClob)
    I already got weblogic.jar file from weblogic 10.
    Thanks,
    SrinivasIt's in the datasource module/jar: modules/com.bea.core.datasource_1.0.0.0.jar

  • Devanagari font in layed out in Indesign (using IndicPlus) does not export correctly to a PDF.

    Namaste InDesign gurus,
          I have a problem at hand. Wondering if anyone has encoutered similar problem before? Any help is greatly appreciated. And if you're in San Francisco bay area - I can buy you a lunch :-)
    Short description: Devanagari font in layed out in Indesign (using IndicPlus) does not export correctly to a PDF. All the ligatures are assembled and displayed in the PDF.
    Adobe Indesign Version: InDesign CS5 Design Premium - regular U.S. version (not ME).
    Steps I took:
              I purchased CS5 Design Premium and also purchased the IndicPlus plugin to author sanskrit documents in InDesign. I create Sanskrit text using either of the following methods.
    1) Itranslator
    2) Paste the devanagari from the Itranslator directly into InDesign or paste it first into MSWord and then copy from MSWord and paste it to Indesign.
    It doesn't matter how I paste it. After I apply the IndicPlus character/paragraph style so that the sanskrit looks good in InDesign, when I try to export it to a PDF. The PDF does not display the ligatures currectly. It just lists all the characters in order without assembling.
    I've spent a lot of money buying CS5, IndicPlus and then I can't even create a simple PDF document from InDesign. It is very frustrating.
    Has anyone been able to successfully export a sanscrit document from InDesign PDF ?
    (Please let me know if my problem description needs more fleshing out).
    I could create the PDF from MSWord directly but I'm trying to use indesign to layout my book. If InDesign cannot export to PDF I'll just have to use MSWord for my book layout. I've spend probably scores of hours trying to learn InDeisn and formatting my book content - seems like it is all going to be waste.
    Is MSWord the best choice or only choice for laying out books that have sanskrit text in them?
    -Ravi

    Has anyone been able to successfully export a sanscrit document from InDesign PDF ?
    Not Sanskrit, no, but plenty of Hindi, Nepali, Marathi, and other languages written in Devanagari script - so it should be possible. I don't even use IndicPlus, which by most accounts makes working with Indic text much easier.
    1) Itranslator
    I've never seen this, but a quick Google led me to the homepage of ITranslator for Windows, where I saw this:
    Itranslator 99 (Build 1.3.0.86)  & New Beta Version
    uses 8-bit true type fonts and is compatible
    with Windows 95/98/ME/NT/2000/XP.
    For more information, click here.
    Itranslator 2003 (Build 2.0.0.38) & New Beta Version
    uses 16-bit Unicode-compatible fonts and is working
    only on Windows 2000 / XP / Server 2003.
    For more information, click here.
    So, if you're using ITranslator 99, there's the problem - those "8-bit true type fonts" won't work in InDesign. Can you post a sample of the text you're trying to paste into InDesign? Name the font(s) you are using, both in Word and in Indesign, and if possible make a small sample of the text available for us to test. It's also possible that InDesign is using a substituted font, which could cause this problem. So, if the font name in InDesign has brackets around it, you know that InDesign doesn't actually have that font installed and is auto-substituting. Also, if you go to View -> Screen Mode -> Normal and the text is highlighted pink, you know that the font has dropped. (Unless the highlighting for dropped fonts was turned off - check in Edit -> Preferences -> Composition and make sure that "Substituted Fonts" is checked.
    Also, for what it's worth, is there any way you could Place your text instead of copying and pasting? This may be cause of your problem - but even though it probably isn't, it's still worth a try.
    Lastly - no, I've found InDesign to be superior for typesetting for almost all languages, but the learning curve is pretty steep, and many of the problems faced by people working in non-English languages are not easy to research when you have a problem.

Maybe you are looking for

  • USE of CF 6004 with HP IPAQ 5550

    Hello Could someone tell whether we could use CF-6004 with HP IPAQ 5550 PDA? as it looks that the size of the card is a bit larger to fit in the memory card slot. thanks Sam 

  • XML in SOAP response

    Hi, I wrote my own SOAP web service and so far it is working like a charm. I am trying now to use it in my own iPhone app but I keep getting the SOAP response as HTML entities (< become <) and I can not parse the XML like that. I think the reason for

  • Having problem opening iMovie 7... with Panasonic PV-GS500.

    Hi there, I just bought iMac 4Gb. I am tried to conect my Panasonic Digital comcoder PV-GS500 into iMAC. Camcoder inserts using Firewire and USD port for Mac. When I inserting, it does read my SD card on the camcoder, but iMovie should opeb automatic

  • 2 * 4260 Sensors connected to Active/standby FWSM in 6500

    4260 Sensors connected to Active/ Active firewalls I have the following scenario: We  have two edge firewalls with Active/ standbye setup connected directly to  two core switches5600. New two IPS sensor s4260 are required to be  connected inline betw

  • My macbook pro is stuck on the log in page and is showing a gray folder what do i do ?

    my macbook pro is stuck on the log in page and is showing a gray folder where the log in icon should be. what do i do??