Oracle 10 g / 11g: Some advise needed  please?

I started to learn oracle a month ago in 10 g edition and I found no problems working with it, besides, I really loved the sqlplusw.exe that came with that edition.. Afterwards I tried to upgrade to 11g edition to keep up to date, but after I installed 11g I didn't find isqlplus and found that sqlplus is run on DOS mode..
So I'm sure that 11g includes new features, but since it misses those 2 important components which can improve a beginner's command line skills, is it advised for a newbie like me to migrate to 11g or is it better that I stick with 10g until I gain more coding skills?

Hi,
It is not supported in Oracle 11g and it is updated in Installation Guide for Windows:
http://download.oracle.com/docs/cd/B28359_01/install.111/b32006/whatsnew.htm#BGGBABGJ
Oracle started to de-support in order to migrate to SQL Developer which comes along with that.
- Pavan Kumar N
Oracle 9i/10g - OCP
http://oracleinternals.blogspot.com/

Similar Messages

  • Oracle forms installation - some help need

    I am trying to install Oracle forms - but get the follwing message:
    Checking swap space: 576 MB available, 1535 MB required. Failed <<<<
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,at which time they will be rechecked.
    Continue? (y/n) [n]
    actually - I have no choice to choose y and try what's going on - so - is this means that I shoul add some 1.5 GB of RAM to my computer? (I have already 700MB, only 300 of them are used)? I am using WinXP, free HD is above 3.5 GB, 2.4GHz processor.
    Can I try to find some workaround - e.g. simply try to copy jar's from 'stage' (direcotry in installation disk) in Oracle application server's lib directory (where it is in Oracle_Home directory?)?
    Any experience with installing Oracle forms?
    This was trying to run setup.exe, but when I am trying to run wsf.exe - I get:
    SEVERE: Unable to locate the MDAC Update Status registry key value, probably because the installation was aborted.
    MDAC possibly stands for Microsoft Data Access Components? If so - where is problem - I can run a lot of DB servers, including Oracle server itself normally?
    BTW - is there any free service available for Oracle Forms skills development (e.g. as for Oracle SQL the Intel test drive is available?)
    user454720

    OK - now I increased the max limit of my page file and now I achieved this:
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5.0, 5.1 or 5.2 . Actual 5.1
    Passed
    Checking monitor: must be configured to display at least 256 colors . Actual
    4294967296 Passed
    Checking swap space: must be greater than 1535 MB . Actual 1600MB Passed
    Checking Temp space: must be greater than 150 MB . Actual 1942 MB Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from C:\DOCUME~1\ADMINI~1\LOCALS
    ~1\Temp\OraInstall2006-03-18_01-57-43PM. Please wait ...
    however - after this I receive the standard messgae:
    'setup.exe has encountered a problem and need to close. we are sorry for the inconvenience..... Please tell Microsoft about thsi problem'
    actually - I have little ideas what to do further - maybe I should look for other Oracle Installer version? I am using:
    Oracle Universal Installer version: 10.1.0.2.0
    and I am trying to install
    Oracle Deveoper Suite: 10.1.2.0.2 (so - a bit higher)
    I can run OUI without any problems, my Default JRE is 1.5_1 - so - all seems to be OK?
    Please - if any idea - help me :))
    Thanks in advance!

  • J2ee profiling; Some advise needed ?

    Hi All,
    Iam having an J2EE application (running on Webshere application server) that i need to profile. Can somebody please advise some good profiling tools please ?
    I need to know this profiling tool running on LINUX O.S.
    Please advise.
    Thanks,

    Hi,
    Optimizeit by Borland can be used on Linux and with Websphere.
    Kaj

  • Discoverer Scheduling Workbook failed.... advise needed please

    when I try to schedule workbooks on Discoverer 10.1
    Database Error - ORA-04068: existing state of packages has been discarded
    ORA-04063: package body "TKDBA.EULL_BATCH_USER" has errors ORA-06508: PL/SQL: could not find program unit being called ORA-06512 at line 2
    System: XP Pro SP2
    Desktop Client 10.1.2456c
    End User layer Library - 10.1.2.45.46c
    End User Layer - 5.1.1.0.0.0
    Edited by: ControlV on May 22, 2009 6:07 AM

    Hi
    Thanks for this. A couple of things come to mind. First, it looks like you may have done more than one installation of the Discoverer 10g Admin / Desktop Install and it also looks as though you have an older Discoverer sitting out there, presumably a Discoverer 4 version. How did I spot this?
    Firstly, the name you are using for you 10g installation is BIToolsHome_2. This tells me that you either have 2 or you had a failed install number 1. If you happen to be calling the executable from the first install with the PATH set to the second install this will cause a problem.
    Secondly, Discoverer 4 always installs using the ORANT folder.
    I am not sure what you have inside d:\oracle\bin or even in c:\oracle\discoverer\bin. These could definitely be causing problems elsewhere but probably not impacting Discoverer 10.
    10g Discoverer Admin / Desktop needs these 4 entries in the path and these are there, albeit againt BIToolsHome_2 and not 1:
    C:\oracle\BIToolsHome_1\bin;
    C:\oracle\BIToolsHome_1\jlib;
    C:\oracle\BIToolsHome_1\jre\1.4.2\bin\client;
    C:\oracle\BIToolsHome_1\jre\1.4.2\bin;
    First things first, we need to verify that you don't have an old version 1 hanging around.
    Right-click on the icon to start Admin. In your case it should look like this: C:\Oracle\BIToolsHome_2\bin\dis51adm.exe
    Right-click on the icon to start Desktop. It should look like this: C:\Oracle\BIToolsHome_2\bin\dis51usr.exe
    Please verify the above and let me know if everything looks right.
    Best wishes
    Michael

  • Some help needed please........

    You can run your program on the command line by starting a command window, changing the current folder to that folder containing your program, and typing the following:
    java Week1GraphicsQ6
    You could change your program so that the user can set the number of rows and columns by typing them after the name of the program, e.g.
    java Week1GraphicsQ6 20 30
    The '20' and '30' are input into your program through the args array, in the main method. In this case, args[0] would store '20' and args[1] would store '30'. But these are still strings - you could turn them into integers using the Integer.parseInt method. Then, the standard way to get them into your class, would be to make a parameterised constructor, that sets the number of rows and columns according to the two integers passed into the constructor. (Currently you only have a default constructor that does not take any parameters).
    Can you please explain to me what I have to do to be able to get my program to do this. Frankly speaking, I don't really understand the question. Below is my current working code:
    import java.awt.*;
    import java.awt.geom.*;
    import javax.swing.*;
    public class Week1GraphicsQ9 extends JFrame
         int numRows = 5;
         int numCols = 10;
         public static void main(String[] args)
              new Week1GraphicsQ9();
         public Week1GraphicsQ9()
              setTitle("Solution to week 1");
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setSize(500,220);
              setLocation(300,300);
              getContentPane().setBackground(Color.white);
              setVisible(true);
         public Rectangle getRect(int thisRow, int thisCol)
              Rectangle myRect = null;
              if (thisCol < 0 || thisRow < 0 )
                   return null;
              if (thisCol >= numCols || thisRow >= numRows )
                   return null;
              int width = getWidth() / numCols;
              int height = getHeight() / numRows - 7;
              int x = thisCol * width;
              int y = thisRow * height + 31;
              myRect = new Rectangle (x, y, width, height);
              return myRect;
         public void paint(Graphics g)
              Graphics2D g2 = (Graphics2D)g;
              super.paint(g2);
              for (int i = 0; i < numRows; i++)
                   for (int j = 0; j < numCols; j++)
                        g2.setStroke(new BasicStroke(3.0f));
                             g2.draw(getRect(i, j));
                g2.setColor(Color.red);
                Rectangle r;
                r = getRect(0, 0);
                g2.fillOval(r.x, r.y, r.width, r.height);
                r = getRect(3, 2);
                g2.fillOval(r.x, r.y, r.width, r.height);
                g2.setColor(Color.blue);
                r = getRect(0, 4);
                g2.fillOval(r.x, r.y, r.width, r.height);
                r = getRect(4, 6);
                g2.fillOval(r.x, r.y, r.width, r.height);
    }Thank you

    Can you please explain to me what I have to do to be able to get my program to do this. Frankly speaking, I don't really understand the question. Below is my current working code:You will need to be abit more specific to what part your not understanding, because it is not our job to do all your homework for you.
    The '20' and '30' are input into your program through the args array, in the main method. Below is how i extract Integer values from a String value stored in a String array called args.
    public static void main(String[] args){
      int val 1;
      int val 2;
      if(args.length == 2){
        try{
          val 1 = Integer.parseInt(args[0]);
          val 2 = Integer.parseInt(args[1]);
        catch(NumberFormatException e){
          System.err.println(e);
          return;
    }Mel

  • Some advice needed Please Quicksilver 800MHZ

    I have a Quicksilver PowerMac 800MHz.
    Due to ram problems I need to replace the ram in this machine. I am running Tiger 10.4.11 and it is working fine at the moment.
    I have read that if I cam running Tiger I can put 2 Gig of ram in this machine but before I spend money I need to know for sure how much ram I am able to put in. I am not sure if my Quicksilver is an older one or newer one Machine (CK132HANKSD). Can someone please help on this as at the moment I have only two 128 in place PC133 333 to keep me going.

    You only have 3 RAM slots. The max RAM per slot is 512MB.
     Cheers, Tom

  • Dock advise needed please

    Hi - I'm in the UK and require a dock for my 2G Touch that will charge and present good quality audio line out to input into an amplifier. My preference would be for the dock to be mains powered, rather than requiring a USB.
    Any ideas? There's a Belkin model available in the US that ticks the right boxes, but I can't get that in the UK.
    I've looked at Apple products but technical support are so vague in clarifying that what they suggest will actually do what I want........... I'm not interested in a solution that syncs, just that charges my Touch and will provide decent quality line level outputs into some high end hifi kit.
    Any suggestions would be very welcome..............cheers............S

    There is only one dock now that works with the iPod Touch, (iPT) and that is the Apple Universal Dock. Don't confuse this with the older iPod Universal Dock made in 2004. The only difference in the name is one uses "APPLE" and the other one uses "Ipod", (at the beginning of the name.)
    The correct part number from Apple for the "APPLE UNIVERSAL DOCK" is: MB125G/A
    This dock has a security chip in it, that allows video to pass through, when connecting an AV cable, (component or composite) to the dock and your TV. The AV cables also have the same security chip in them as well. All other third party docks and connectors will not allow passage of video currently, from the iPT and many will not charge the iPT.
    The iPT checks for this chip, when it is connected via the dock and if not found, stops video from leaving the iPT.
    This dock is also powered via a USB cable connected to a power supply or computer. It is also powered by the AV cables, (which come with a power supply as part of the AV cable purchase.)
    You can tell the difference between the older iPod Universal Dock and the Apple Universal Dock by checking for an S-Video connector. The older iPod Universal Dock has one, the new Apple Universal Dock does not!

  • Some advice needed please for X-fi elite

    Hello i just recently purchased a sound blaster X-fi elite pro i am going to build a computer around it, is there anyone out there who could advise me on what type of motherboard would be suitable ? thank you

    You only have 3 RAM slots. The max RAM per slot is 512MB.
     Cheers, Tom

  • Some advice needed please

    Hi,
    I am currently staying with my folks, and have downloaded itunes on their pc. I have signed in and have authorised the computer. It is recognising my ipod touch and i have run diagnostic tests and everything comes back as working successully...
    However! I have imported cd's to the library but they are not syncing onto my ipod. I have also purchased a tv programme from the store, and again, this is not syncing onto my ipod.
    Does anyone have any idea as to how i can resolve this?
    Thanks in advance.
    L

    You need to update manually...
    Transfer music manually
    Backup your music though, as if anything happens to your iPod, you may loose your music.
    btabz

  • EJB, DAO, DTO Advise need please

    Hello all,
    This is for java j2ee experts. I have been reading lots of books with regard to java patterns. I understand how DAO but not completely understand how DTO�s are works. It seems we use DTO�s to transfer data between business object to DAO and business object to client. As my understand DTO�s should have all the get and set method so client can directly manipulate the local data.
    My confusion is if DTO� has all the get and set methods and clients can directly minupulate it; what else left there to put as business methods into EJB other than insert, update, and delete?
    For example,
    Let assume I have DTO call SalesOrderDTO, which has complete record of sales order and all the get and set methods to access it properties. My SalesOrderEJB (session bean) create the DTO, SalesOrderDAO creates the SalesOrderDTO and passed to the Bean, based on client request and pass the SalesOrder DTO to requesting client. And client uses get and set method to manipulate SalesOrderDTO and send it back to SalesOrderEJB to update, insert or delete it. So in this case what else I should put into SalesOrderEJB? Most books only talk about delete(), insert(), get(), get data from database, update() as business methods. I thought business methods should be more than inset(), get(), update() like data validation, and data conditions. In this case it is safe to allow client manipulate the DTO?
    Can someone expand this example and explain little bit more about business methods? I appreciate any explanations from experts.
    Thanks
    AP

    You are mixing up the Entity bean and session bean layers.
    Entity beans primarily act as an interface against a datasource. Thats why they have only those methods such as update(), insert(), delete()...And unless you have serious enough reason not to do so stick with it.
    Session beans is the layer where you would have your business methods..
    I cant think of a reasonable scenario for your SalesOrder, but in other cases such as making a money transfer from a bank account, several transactions or business operations have to be perfomed. This is usually done in the sesion bean layer.

  • I'm getting this problem when trying to update my iphone 3gs it says that the iphone software could not be contacted and I went on youtube got some advise to go into my hard drive to fix the error I have nothing in my host file please help me if you can

    I'm getting this problem when trying to update my iphone 3gs it says that the iphone software could not be contacted and I went on youtube got some advise to go into my hard drive to fix the error I have nothing in my host file please help me if you can this is all new to me.

    Read this: iOS 4: Updating your device to iOS 5 or later
    ... oh I think it is a 3gs or a 3
    This makes a difference. What does it say in Settings > General > About?

  • I lost my password and i could get into my phone, i tried but it said connect to itune. i did, but i did not get any result. please give me some advises how do i get my password back or reset with a new one?

    Ipjone6, silver, 64GB
    I lost my password and i could get into my phone, i tried but it said connect to itune. i did, but i did not get any result. please give me some advises how do i get my password back or reset with a new one?

    how to reset password:
    https://iforgot.apple.com/password/verify/appleid

  • I don't know what i need. I'am a mac user but i need to run quick books premier. This is the only software i need in windows 7. Could i have some advise in  what is better for me, Bootcamp or parallels

    I don't know what i need. I'am a mac user but i need to run quick books premier. This is the only software i need in windows . Could i have some advise in  what is better for me, Bootcamp or Parallels

    The Intuit rep said they don't "support" QuickbooksPremier on a "virtual machine." Do you know what I risk by using it, anyway? thanks for the advice about Boot Camp vs Parallels, BTW!
    I use QuickBooks Pro for Mac, so I haven't had need to try any of the Windows versions in a VM. But I can't think why it wouldn't work. From within the VM, QuickBooks Premier would believe it is operating on PC hardware within Windows.
    I would guess they mean that the multiple user support wouldn't work from within the VM. But I would think that would also work. Windows can see the Internet from within the VM, which means it can see your network. So if Windows can see the network, then QB Premier should be able to, too.
    I know you can get Parallels as a demo, and maybe you could get QB Premier as trial software. So if you already have a retail copy of Windows to load into a VM, it would only cost you time to test what's possible.

  • 1Z0-117: Oracle Database 11g Release 2: SQL Tuning Need Materia and Dumps

    Hi all,
    We are preparing for 1Z0-117: Oracle Database 11g Release 2: SQL Tuning, There is shortage of material available on net.
    Can anybody please provide books or Sample question answers and share more idea about the exan.
    mail id XXXXXXXXXXXXX
    Thanks in Advance
    Sandeep
    Edited by: 1005555 on 13 May, 2013 4:54 AM+
    Mod: email deleted, don't draw discussion away from the forum.
    Edited by: PhHein on 13.05.2013 14:16
    Edited by: 1005555 on 13 May, 2013 10:16 PM

    We are preparing for 1Z0-117: Oracle Database 11g Release 2: SQL Tuning, There is shortage of material available on net.There are actually a fair number of articles about the material covered on 117 on the net, but yes, the test is new enough that cheaters have not had much of a chance to email around illegal material such as dumps yet.
    Can anybody please provide books or Dumps and share more idea about the exan.There is a significant amount of legitimate material you can use to study for the exam here:
    http://www.oraclecertificationprep.com/apex/f?p=OCPSG:EXAM_DETAILS:0::NO::P2_EXAM:1Z0-117
    As for ideas about the exam -- it's probably the hardest Oracle certification exam I have ever taken:
    http://ocprep.blogspot.com/2013/03/1z0-117-this-exam-is-rough.html

  • Discoverer 11g need oracle database 11g?

    Hi,
    I have discoverer 11g. i try to open EUL of 10g discoverer. normally it will ask to upgrade the EUL. But it throws TNS error.
    Can anybody tell, Does discoverer 11g version need oracle Database 11g or it will work on 10g Database?
    Thanks,
    chelladurai

    chelladurai wrote:
    I have discoverer 11g. i try to open EUL of 10g discoverer. Are you talking about the Discoverer EUL (schema) or the hosting database server?
    In the past Discoverer tools/clients and EUL had to be of the same version, and I expect this to be the same for "11g".
    You can probably have the Discoverer 11g EUL in a 10.x Database, but not Discoverer Admin/Plus 11g working with a previous EUL version (except, perhaps, for upgrading the schema objects to correct version of EUL).
    Check the documentation!

Maybe you are looking for