Mediatracker is not working in browser

I want to load 2 JEPGs and show them in an applet. Therefore I'm using mediatracker to wait till all Images are loaded like in the following code. When I use the appletviewer everything is working fine, but when I upload the applet and view it with a browser it doesn't get through the waitForAll()... And so they don't appear on the screen at all...
Why is that ? Does anyone know where the error is ?
Thx
Feleex
Image backgr1,backgr2;
backgr1 = getToolkit().getImage("SHHlinear.jpg");
backgr2 = getToolkit().getImage("SHHcycle.jpg");
MediaTracker mt = new MediaTracker(this);
mt.addImage(backgr1, 0);
mt.addImage(backgr2, 0);
try {
mt.waitForAll();
} catch (InterruptedException e) {}

You can't use toolkit in applets. Use just getImage() instead of getToolkit().getImage()

Similar Messages

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • E72 - Ctrl+C and Ctrl+V not working in browser

    yesterday i updated my nokia e72 mobile to latest firmware 31 , after that Ctrl+C and Ctrl+V and Ctrl+A shortcut keys are not working in browser. which have made me feel as bad as typing the same text again and again (usfel in blogging or web messaging).
    ALthough these shortcut keys are working in notes and sms application, but not in browser and Quick office applications (word, ecxel etc).
    Can some one tell , how to fix it. or do i need to wait for next firware update. firmware 31 was released on 31 of march 2010. and today is 26th of May. almost two months have passed, and nokia has not yet released patch for this bug ....
    Nokia, how long i need to wait ?, for this bug fix release.

    (Had to edit because didn't read previous post clearly.)
    I originally thought this was a problem of Quick office 6.2.217 Nokia_S603.2. I think it is a Nokia firmware problem as the previous post had stated.

  • Applet with Image not working in Browser, works fine in Appletviewer

    Hi,
    I encountered a problem , running my Applet in a browser. (IE and Firefox, ame problem).
    When I use an ImageIcon, it doesnot work. in a browser.(When I remove the icon, it's oke)
    In Appletviewer it works fine. In the browser I first got a security-exception.
    I dealed with that by signing the jar (with the test certificate).
    Now the browser's java console is not showin any faults, but the applet is showing no picture at all.
    Only the text of the label is shown.
    Can someone help me?
    I downgraded the class to a very simple form, shown underneath. This runs fine in Appletviewer, but not in a Browser.
    Best Regards
    Remco

    I have recently had the same problem, after lots of searching, I found that only Java 1.1 is supported by browsers, leaving out everything else including swing. So if you cant play the applet through your browser you need to download the appropriate patch i think about 5mbs.
    You should find one at java.sun.com/getjava/download.html
    Mine worked fine afterwards

  • Java session is not working in browser sometimes

    Hi,
    In some PC, sometimes session is not working properly in browser.
    In JSP, I am creating the session like below
         session = request.getSession(true);
         session.putValue("loginid",login);
    But in next page, it is showing null value.
    I have checked the browser setting... cookies are enabled... everything is ok in browser setting..
    In our company, this issue is coming in some of PC not all in all the PC
    If we format the harddisk & again reinstall the OS, it starts working.
    Anyone can pls help me on this?. This is very urgent.
    Regards
    Selva

    As of Version 2.2 putValue(java.lang.String name,
    java.lang.Object value) has been deprecated.
    Use session.setAttribute("loginid",login) instead of putValue()

  • Applet work well in appletviewer but do not work within browser

    hi, i created an applet that works well in appletviewer,but it does not work within a firefox browser, it issue a message: java.security.AccessControlException: access denied (java.io.FilePermission imgDir/vsam.jpg read). What can i do to solve this issue please ?

    sign the applet, use doprivileged and trust the applet when you open it.
    Use htmlconverter in jdk/bin folder to convert you applet so it uses
    object tag instead of applet so IE won't try to run it with msjvm.
    Signing applets:
    http://forum.java.sun.com/thread.jsp?forum=63&thread=524815
    second post and reply 18 for the java class file using doprivileged
    Still problems?
    A Full trace might help us out:
    http://forum.java.sun.com/thread.jspa?threadID=656028

  • Acrobat Pro 8, Highlight not working in browser

    The company I work for has a specific audience that requires functionality in Acrobat Pro. This audience accesses these PDF document on our intranet using IE6 and uses some of Pro functionality (highlight, stick notes) and saves the annotation files locally. All that worked well with Acrobat Pro 6.0, but we recently upgraded to Acrobat Pro 8 and all these users are seeing is basic functionality, similar to what is in Reader. NO more annotation features.
    I have verified and Reader is not installed on these workstation, a clean install of Acrobat Pro 8 is installed. If I open a PDF outside of IE6, Pro opens and all the functionality is there, but in IE6 it is limited (Reader Like). I have attempted to add the tools to tool bar but after selecting tools, they do not appear. Browser just refreshes without tools, as if they are being prevented from loading.
    Has Adobe changed the functionality of Adobe Pro to only allow in browser viewing of documents with something like Adobe reader? I have searched the web and have seen nothing about this. Please help.

    I am not sure if VISTA has the same problem as Win7 or not. For Win7, the AcroTray application that is used for PDF creation (both when printing to the Adobe PDF printer and with PDF Maker in AA6) will likely not work correctly. This may also be the case with VISTA. To get around this problem you have to print-to-file (you can change the PDF Port to FILE in the printer properties). After the file is create, you can open it in Distiller to complete the PDF creation. It may be possible to create watched folders to automate this process, but is not as ideal. In any case, you will likely have to use a work around. Also, update your AA6 (currently at 6.0.6). I have been able to do this with AA5 on Win7 as a test and it did indeed work. There may still be other issues for AA5 on Win7, but that was the major one.
    All of these changes came from the rewrite that Adobe had to do to be compatible with the new OSs, not a trivial task. Do you want to blame Adobe or MS or both? Take your pick, but the end result is that it is time to upgrade. Unfortunately, AA6 can not be upgraded to AAX. You have to buy AAX at full cost at this point. To get the upgrade you would have to have at least AA7.

  • Calculations not working in browser window.

    I have a .PDF form with several points of of user data input, with other fields in the form doing the math for the user. My issue is that when the user downloads the form, it usually automatically downloads in a browser window and while they can view it and tab through it, none of the calculations are performed.   The only way I can have users use it the way intended is to ask them to open it Reader...or use Acrobat.   Is there a setting or something that would help it perform correctly in the browser window?  Thanks very muchad Here's the copy http://www.villageweaver.com/warp_calc_worksheet.pdf

    It works in a browser for me. Do the users who this is not working for have Reader or Acrobat instead of Preview? If they have Reader or Acrobat do they have javascript enabled within Reader/Acrobat?

  • Some browser links not working - any browser, but just on my mac

    I have a strange issue. Over the last while certain page links on browser pages (which seem to be Java script links) won't work in any of my 5 browsers. If I put the same page in to any of my laptop's or my wife's browsers, the links work fine.
    For example, I just tried to order some stuff via Staples, and whenever I tried to go to the next screen via a button, nothing happened. Even if I switched User Agents in Safari or Firefox, the "next" button didn't work. Same in Chrome, Camino, Flock and Opera on the same pages. I have noticed lots of drop down menus are not working properly either on many sites.
    I figure some bit of OS code must be either blocking or misreading the instruction, but what?
    Any ideas? Any input would be greatly appreciated!!

    errmm... i'm not sure why you are fiddling with java and system extensions...
    java has nothing to do with javascript despite the name (you can blame sun for that) the javascript engine is an integral part of the browser not a separate extension.
    Java on the other hand is an entirely separate entity and language that is independent of any one browser and is installed on the OS.
    Javascript is commonly used in webpages (all most all these days) where as java is hardly used at all and is usually confined to little "applets" that run separately from the rest of the page.
    If you suspect that it is something to do with your settings/preferences in your library then the easiest way to find out is by creating a new User account (go to system preferences> users> and add a user.) Then log into that account and try the browsers in there.
    If you really think that it has something to do with system extensions then you can disable them by moving them out of the extensions directory (/System/Library/Extensions/) However i must stress that unless you know what you are doing and know what the extension does that you are moving to not do so... you can easily render your system unbootable if you move the wrong extension... unless you have installed a 3rd party system extension there shouldn't be anything in that directory that isn't meant to be there (this is a very different system from OS 9).
    However there are internet plugins that may be interfering with your browsers, you can find these in /Library/Internet Plugins/ you can disable these by moving them also... the defaults are various flash, java, shockwave, quartz and quicktime files.
    Message was edited by: Thomas Brierley

  • Infopath form load rule not working in browser forms but works on Client

    Hi
    I am working on an Infopath form and there are rules on form load. The form load checks for a value in a list, if the username() matches the one in the list, then the form would change its view.
    It works when I open it on client, but on the browser it fails.
    Have anyone encountered such an issue.

    Check below:
    http://stackoverflow.com/questions/16222681/infopath-rule-is-not-running-when-checking-sharepoint-list-field-value
    Ensure that "Include data for the active form only" was checked (I had to separate this field into another data connection because that box could not be checked for another field I was using), and
    Ensure that in the rule I was selecting from the "dataFields" folder under the data connection instead of "queryFields"
    http://sharepoint.stackexchange.com/questions/28554/infopath-form-load-rules-not-working
    if I edit the Infopath form on Infopath 2007, it seems that the rules for the load form will be visible if created.
    This look like a bug. Here are the steps below that will lead you to the bug:
    Step 1: Open the infopath form in Infopath 2010 and create 6 rules for Form Load and Save it as a file.
    Step 2: Open that infopath form that you created in Step 1 in InfoPath 2010 and go to the
    Form Load section. You will only see the first 5 rules. The 6th rules that you created for Step 1 will just "vanish". Now, close that infopath form.
    Step 3: Open that infopath form that you created in step 1 in InfoPath 2007 and select Tools > Form Option. In the
    Open and Save category, click the Rules button and add a new rule in it and save it.
    Step 4: Open that infopath form that you modify as describe in Step 3 in InfoPath 2010. That 6th rule will be visible.
    Therefore, there might be a bug in InfoPath 2010 that restrict Rules to a max of 5 in Form Load and thus if anyone open that form in SharePoint, only the first 5 rules will be executed.
    If this helped you resolve your issue, please mark it Answered

  • Quicktime Controls Not Working in Browser

    The Quicktime controls, play button, scrub bar, etc., do not work when I play a video in a browser. The controls display and react to clicks, but do not affect the playback of the video. I'm running 10.4.11 with QT plugin version 7.4 in Firefox 2.0.0.11.
    It seems like this mostly occurs with Oreilly's Safari training videos. Other videos like Apple QT trailers play okay.
    Firefox does play the video correctly sometimes which seems like its the first time during a day that I play it near as I can figure. Restarting Firefox doesn't help.
    In Safari 3.0.4, the controls work with errors such as the play button rewinding the video.

    Maybe this will give somebody else some clues. I'm trying to display .TIFF files within IE7 or Firefox using the appropritate plugin for each. I'm on Vista32. Have installed latest ITunes and QT. Seems to be a problem with file associations with QT. Vista associations show FF as default player for .TIFF (same thing if I switch to IE7). QT MIME settings agree that FF or IE7 are default app for .TIFF. In both FF and IE7, "opening" a .TIFF file with either IE7 or FF causes QT to get control of the browser window and does not display the .TIFF file (as it used to for both FF and IE7). The .TIFF file is opening correctly with other apps, only having a problem with browser plugins. Not sure how to fix this, so will probably give up on .TIFF files in browsers for a while and see if somthing in QT gets fixed. I'm using QT Player v7.6.4 (518.35)and FF v3.5.2 and IE7 with all maint. Evidence says QT is getting control even though it should not be and is getting in the way of valid plugins.
    I can however, start IE7 and manually point to a .MOV file and QT uses the QT plugin and plays the .MOV file ok. The same thing happens with FF. Open FF and manually point to a .MOV file and QT plays it ok. The problem for me is QT getting in the way of .TIFF file displays. The QT troubleshooting page shows QT installed and running ok.

  • Why mouse wheel not working on browser ( Mac OS X) ?

    at mac system, mouse wheel can't work on browser (
    Safari、Firefox ), but it can work on single flash player.
    it's mean the mac version flash player is support mouse
    wheel, but can't work on browser.
    somebody can tell me why? and how to fix this problem.

    very thanks for LuigiL.
    i know this way, but it's not a good way. i must do
    "addEventListener( MouseEvent.MOUSE_WHEEL" for all components if i
    need use wheel...
    i think single flash player can support, why browser can't ?
    the problem is browser or OS ? can adobe contact apple to fix this
    problem? or next version flash player can fix?

  • Scrolling not working on browser(s)

    Ever since a the mavericks update i've been having problems with scrolling on chrome, safari and firefox. 2 hand scrolling function would not work on the browsers at time, and I would have to quit the browsers and open it again. Sometimes it still persists after i quit the applications and is happening on a consistent basis. A few times per day.
    This is not a hardware issue as I have tried scrolling with a usb mouse and scrolling still failed to work.
    Any quick solution?
    Thanks

    So what doesn't work, specifically?  Two-fingered scrolling on a trackpad?
    I've been using this with Mavericks since the first beta and it's always worked great.  If scrolling isn't working for you, by chance do you have any extensions that my be trying to grab the gesture?  Have you looked in your trackpad gestures to see that scrolling isn't enabled?
    I don't think this is a problem with the OS; it's either a probem with software you have installed, or something else.

  • Interactive pdf video not working on browser?

    Dear Sir,
    How we can embed the video inside pdf. I have done it from Multimedia/flash tool/ place video/ advance options/ It is working on my computer only but when i upload it on Issuu website for the client, it is not working???

    Make shure that the client views this PDF with Adobe Reader and Acrobat only, all other viewers and plugins will not support it.
    Make sure that your client has Reader 9 or X, and Acrobat 9 or X installed, with all other versions it will not work. If your client has version XI installed he will need Adobe Flash Player installed without it will not work. With Acrobat/Reader 8 or older he is out of luck.

  • Index.html - SWF file not working in browser

    The navigation button on my Flash/SWF intro page (www.benscarrillustration.com) isn't working in web browsers. What am not doing correctly.
    I have the following 3 files in my cPanel File Manager....
    1. index.html
    2. Ben Scarr Illustration.swf
    3. Ben Scarr illustration.html
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <link rel="shortcut icon" href="/avatar.ico" type="image/x-icon">
            <title>Ben Scarr Illustration</title>
            <style type="text/css" media="screen">
            html, body { height:100%; background-color: #ffffff;}
            body { margin:0; padding:0; overflow:hidden; }
            #flashContent { width:1214px; height:100%; margin:auto;}
            </style>
        </head>
        <body>
            <div id="flashContent">
                <object type="application/x-shockwave-flash" data="Ben Scarr Illustration.swf" width="1214" height="717" id="Ben Scarr Illustration" style="float: none; vertical-align:middle">
                    <param name="movie" value="Ben Scarr Illustration.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#ffffff" />
                    <param name="play" value="true" />
                    <param name="loop" value="true" />
                    <param name="wmode" value="window" />
                    <param name="scale" value="showall" />
                    <param name="menu" value="true" />
                    <param name="devicefont" value="false" />
                    <param name="salign" value="" />
                    <param name="allowScriptAccess" value="sameDomain" />
                    <a href="http://www.adobe.com/go/getflash">
                        <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                    </a>
                </object>
            </div>
        </body>
    </html>

    Thanks for the information about Flash no longer being the best or contemporary way to design web sites. This shows me how long I've been away from designing them.
    I will redesign my web site in Dreamweaver very soon, as I would like it to play on iOS devices.
    But at the moment I would just like to see my Flash page working in a browser.
    I have inserted my Flash page in to Dreamweaver, and new code has been automatically added. But still the navigation button doesn't work.
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <link rel="shortcut icon" href="/avatar.ico" type="image/x-icon">
            <title>Ben Scarr Illustration</title>
            <style type="text/css" media="screen">
            html, body { height:100%; background-color: #ffffff;}
            body { margin:0; padding:0; overflow:hidden; }
            #flashContent { width:1214px; height:100%; margin:auto;}
            </style>
        <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
        </head>
        <body>
            <div id="flashContent">
                <object type="application/x-shockwave-flash" data="benscarrillustration.swf" width="1214" height="717" id="benscarrillustration" style="float: none; vertical-align:middle">
                    <param name="movie" value="benscarrillustration.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#ffffff" />
                    <param name="play" value="true" />
                    <param name="loop" value="true" />
                    <param name="wmode" value="window" />
                    <param name="scale" value="showall" />
                    <param name="menu" value="true" />
                    <param name="devicefont" value="false" />
                    <param name="salign" value="" />
                    <param name="allowScriptAccess" value="sameDomain" />
                    <embed src="benscarrillustration.html" width="1214" height="717" quality="high" bgcolor="#ffffff" play="true" loop="true" wmode="window" scale="showall" menu="true" devicefont="false" salign="" allowscriptaccess="sameDomain"><noembed><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></noembed></embed>
                    <a href="http://www.adobe.com/go/getflash">
                    </a>
                </object>
                <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1214" height="717" id="FlashID" title="benscarrillustration.swf">
                  <param name="movie" value="benscarrillustration.swf" />
                  <param name="quality" value="high" />
                  <param name="wmode" value="opaque" />
                  <param name="swfversion" value="6.0.65.0" />
                  <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
                  <param name="expressinstall" value="Scripts/expressInstall.swf" />
                  <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
                  <!--[if !IE]>-->
                  <object type="application/x-shockwave-flash" data="benscarrillustration.swf" width="1214" height="717">
                    <!--<![endif]-->
                    <param name="quality" value="high" />
                    <param name="wmode" value="opaque" />
                    <param name="swfversion" value="6.0.65.0" />
                    <param name="expressinstall" value="Scripts/expressInstall.swf" />
                    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
                    <div>
                      <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                      <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
                    </div>
                    <!--[if !IE]>-->
                  </object>
                  <!--<![endif]-->
              </object>
            </div>
        <script type="text/javascript">
    swfobject.registerObject("FlashID");
            </script>
        </body>
    </html>

Maybe you are looking for

  • Adding Data into text and graphic frames - PLEASE CAN SOMEONE HELP?

    Hello Script buddies, Here is my script and I want to place data into the frames which I set up already in the inDesign template which loads correctly but unable to place the data into the frames, please refer to comments and if anyone can help me I

  • Goods Movement type

    hi friends, i am developing the report which displays stock overview at particular date. when we consider the MBBS( its based on table EBEW ) transaction it displays current stock overview. i am taking the data from MSEG table for current date. i cal

  • Cisco WLC5508 Dynamic VLAN assignment error

    Hi All, We have a HA (SSO) WLC controller pair in two DC's with the Management Interface managing the AP's. The AP's are located in the Campus LAN and the Campus and DC networks are seperated by a L3 boundary. The plan is for one of the WLAN's to pro

  • HP Photosmart C4488 all-in-one custom paper size issue.

    Hello, I just bought a new HP photosmart C4488 from the store. Not exactly just, few days back. I need prints on custom paper sizes. Heres my problem I have a paper, plain paper, of dimensions 11.2x19.1 cms (measured by normal drawing scale). I desig

  • Database version to select

    Hi, We are going to have a database that will need to handle 10 TB of data. Please suggest whether to choose Oracle 11g standard or enterprise edition. We would of course choose the enterprise edition but we have limited budget and I learned that ent