XE client needs improvement (for the next version of the XE)

I discovered that the XE client is very limited, the bin directory contains only the following:

/usr/lib/Oracle/XE/app/Oracle/product/10.2.0/client/bin
Rafael < zmyaccount > ls

NLS_LANG.sh* oracle_env.csh* oracle_env.sh* ott * sqlplus * unzip * postal *.

It does not even include the sqlldr (Sql Loader)

As a solution, we are mounting the XE as the ORACLE_HOME Server installation for our client/server environment when XE is the target DB, instead of using the installation of client of XE - what is useless to us, as our client/server application requires sqlldr.

XE client must be improved and include other binary useful such as sqlldr tnsping, imp, exp, etc for the next version of the XE (rumor, will be available in 2011). If only sqlplus is / will be available, then someone can use the Instant Client instead of the XE client and he didn't need a separate XE client.

sqlplus is available, if the only instant customer should be sufficient.

Tags: Database

Similar Questions

  • I need help for the upgrade of my current system.

    I need help for the upgrade of my current system.

    I have SBS 2008 with (Exch 2007, SQL 2005, Sharepoint, backupexec 2010 for sbs) licenses.

    I want to make the larger environment using the following:

    (1) apply Virtualization

    (2) apply to the failover process (clustering)

    "(3) the environment must support adding server terminal server, ERP server, exchange server, domain controller, backup manager.

    Storage 4) that supports Raid (1 and 5)

    UTM excellent 6) that supports (SSL VPN, VPN Global)

    suitable backup solution 7)

    (8) good antivirus for clients

    my questions:

    (1) can you provide me with a good design for this environment

    (2) should I choose what operating system:

    Microsoft datacenter or company

    I know datacenter provide us the unlimited VM but needs per processor license

    so if I have two Grouped servers I want to buy 4 licenses

    and just 4 VMs per company license... to say that we have two servers and maintain 8 vms so wat happened if 1 goes down... How can I migrate the 4 virtual machines on the server failed to another server group... ? should I buy enterprise license?

    (3) if I get the SAN storage for data... How can I save this storage... should I get another SAN?

    (4) how can I upgrade SBS stad single server (windows standrad) without losing the licenses as Exch 2007, SQL 2005, sharepoint.is it a must to buy an edition full std server or there is a way to upgrade (license wise, I mean)?

    (5) what about win2k8 license for VM:

    lets say we have physical that has windows license so that enough to have windows for VM or should I buy windows for VM licenses?

    (6) can I use backExec license for SBS with windows 2008 standard

    (7) who better to virtualization AMD or INTEL

    (8) hyper V or VMware?

    (9) what of Microsoft data protection Manager... is this good?

    (10) what virtual machine manager? What are the benefites keys

    Thanks in advance

    Hello AnasAI,

    You can find the Server forums on TechNet support, please create a new post at the following link:

    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • need drivers for the following!

    need driver for the following equipment. in fact, it shows as unknown device in my Hp probook g1 450 4th generation i5.

    ACPI\HPQ6007
    * HPQ6007

    I would be happy if you please give me the link of the drivers.

    You need HP 3D DriveGuard on your list of pilot. Choose which operating system you are running and you will pass to the right page:

    http://h20566.www2.HP.com/portal/site/hpsc/public/PSI/swdHome/?cc=us&lang=en&sp4ts.Oid=5405426&AC.admitted=1412400073783.876444892.199480143

  • Need drivers for the Sidewinder Precision Pro X 03-57540

    I NEED DRIVERS FOR THE SIDEWINDER PRECISION PRO XO3-57540 JOY STICK.

    Hi LARRYPEDEN,

    Visit the following link to download the driver:

    http://www.Microsoft.com/hardware/en-us/d/SideWinder-X3-mouse

    You can also follow this step to do the same thing:

    a. double-click the type of device you want to update or change.

    b. right click on the device driver specific, you want to update or change.

    c. click put to update driver to open the Hardware Update Wizard. Follow the instructions in the wizard.

    More information on:

    How to manage devices in Windows XP

  • Guard application launch at the start of the appliance, also need advice for the implementation of network methods

    Hi all

    I'm new to the development of Blackberry and I'm writing a relatively simple application to run on 7.1.

    So far the development was interesting, I managed to create my user interface using resources online (mainly this forum), but today I tried to implement some of the network classes that I need and now I just met constant problems.

    I use Eclipse SDK 3.7.2 (the one that comes with the plugin RIM)

    First question:

    I'm not sure what I changed, but today I noticed that whenever I start the Simulator (by sim 9360) my application is started during the initial startup process. I don't think he did this before, but to be honest, I wasn't paying much attention. I think it starts at the start of the device is because I put a breakpoint in the constructor for my class from the main screen, which is hit before the Simulator happens even to the point where it is ready for user interaction. In addition, once it is ready, if I press the BB button, I see my registered application.

    I don't have it set to automatic start in .xml descriptior enforcement.

    I started this application on the HelloBlackBerry sample, here is my main method for the entry of the application:

    public static void main( String[] args ) {
            appSettings = AppSettings.fetch();
            // Create a new instance of the application and make the currently
            // running thread the application's event dispatch thread.
            HelloBlackBerry theApp = new HelloBlackBerry();
            theApp.enterEventDispatcher();
            //openConnection();
    
        }
    
    
    

    As far as I know, this is the only entry point for the application.

    More code

        public HelloBlackBerry() {
            // Push a screen onto the UI stack for rendering.
            mainScreen = new ScreenHelloBlackBerry();
            pushScreen( mainScreen );
        }
    

    Here is the method of. my class AppSettings fetch()

        // Retrieves a copy of the effective properties set from storage.
        public static AppSettings fetch()
        {
            AppSettings savedSettings = (AppSettings) _store.getContents();
            return new AppSettings(savedSettings);
        }
    

    Some of this code that I wrote myself, the persistence store cause the launch of my car?

    I tried to reset the Simulator to the factory settings, no change.

    All applications initialized during the startup of the device and then closed shortly after?

    Part 2: Need advice for the implementation of functions of network in the application

    I need to implement some methods that will retrieve data from a web service, and I also need to send data to this service. What I've read, the ConnectionFactory is the way to go. I want my application to make a request when the application is open and can check on a set interval. I didn't know exactly how to go about adding another thread for networking, I understand that network connections should not be created on the thread main event, so I tried to do this:

    The constructor of my class that implements screen (ScreenHelloBlackBerry), I use the following to create a modal dialog box to prompt the user for a username, I also try networking wire in the same segment of spawning:

            public ScreenHelloBlackBerry(){...initialize fields and managers, add it all together...then near the end
    
    //This will open the confirm dialog when the application is launched
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                  public void run() {
                      openConfirmDialog();
                    //start connection - Possibly broken
                      ConnectionThread ct = new ConnectionThread();
                      ct.start();
                  }
            });
    

    I don't know if it's somehow OK to do, but it seems to work for what I need. I want a user who launches the application at the prompt, and if a user switch applications, when they come back they wondered again (unless they close the app and reopen it).

    Here is my ConnectionThread:

    public class ConnectionThread extends Thread
    {
    
        public void run()
        {
    
              ConnectionFactory connFact = new ConnectionFactory();
              ConnectionDescriptor connDesc;
              connDesc = connFact.getConnection("http://www.google.com");
              if (connDesc != null)
              {
                  HttpConnection httpConn;
                  httpConn = (HttpConnection)connDesc.getConnection();
                  try
                  {
                      final int iResponseCode = httpConn.getResponseCode();
                      UiApplication.getUiApplication().invokeLater(new Runnable()
                      {
                          public void run()
                          {
                              Dialog.alert("Response code: " +
                                            Integer.toString(iResponseCode));
    
                          }
                       });
                      httpConn.close();
    
                   }
                   catch (IOException e)
                   {
                     System.err.println("Caught IOException: "
                          + e.getMessage());
                   }
              }
        }
    }
    

    At the moment it has basically unmodified code from a sample that I found, I'll be retooling to meet my needs whenever I can make it work. I HAD this work to the point where, after the closed user confirm this dialog, a few moments later a an alert dialog appears with the 302 response code. I don't know what changed, but now it doesn't work at all, and if I try to scroll with the debugger, I can't past the httpCon.getResponseCode (). I've seen some mistakes earlier on "no record of service was set up", and I also had once a timeout exception.

    I'm sure I'm doing this wrong, but at the same time as I said WAS working, and now it is not. If someone has done this far, thank you very much for your time and advice are much appreciated.

    Also, should I try to start the thread of the network of the UIApplication class instead of the screen? There is currently very little happening in the class that extends UIApplication, do I spend most of my business logic out of the class of the screen and in the UIApplication class?

    Thanks in advance!

    Hi all

    Just to conclude this topic for those who are interested, I found an excellent guide to the implementation of networks in applications of BB, click here for a link.

    About my application being started at the start of the simulator of the device, I found that on a device real this behavior is not complied with, and in addition, the behaviour seems to have stopped after uninstallation and reinstallation of my Simulator.

    See you soon,.

  • Need drivers for the SATA hard/controller on the dv7-6c95dx disc.

    Need drivers for the SATA hard/controller on the dv7-6c95dx disc.

    We load Windows 7 Enterprise on these newly purchased laptops, but do it have not the required appropriate drivers detect the hard drive on them. Impossible to find on the HP website.

    You can refer to a completely different question here, Marty. I was installing to a flash drive and it turns out that my install media has been connected to ports USB 3.0 on the left rather than right 2.0 ports. Moving to the ancient ports of 2.0 has solved my problem. Good luck.

  • I need images for the animation of the interactive book for words from A to Z.

    Hello

    I'm creating interactive children's book so I need images for the animation of anyone have idea where I can take the pictures than words from A to Z or any suggestion?

    Best thing to do is to simply do a search for 'Illustrations of Stock', like Google

    All the best.

  • HP Elitebook 2570p: need driver for the device system of Base and BMC20702A0 on HP Elitebook 2570p (Windows 7 Pro 64-bit)

    Hi-

    I just installed Windows 7 Professional on my HP Elitebook 2570p, and Device Manager, I'm missing the drivers for the device Base and BMC20702A0 system.

    I went to download HP driver and downloaded page 3 recommended for chipset drivers, but that has not helped.

    Here is the list of the categories of driver for my HP model from the HP Web site.  Where should I go next door to download the drivers?

    Thank you!

    Hello:

    You need these drivers for these two devices:

    The media JMicron card reader driver allows the card slot multimedia integrated in the laptop models running a supported operating system.

    File name: sp63637.exe

    This package contains the Broadcom Bluetooth driver and software for models supported that are running a supported operating system. Broadcom Bluetooth 4.0 driver is required to enable the Broadcom Bluetooth 4.0 devices and is compatible with Broadcom Bluetooth 3.0 and earlier versions.

    File name: sp66402.exe

  • Tecra R840 - need driver for the button control / stop Touchpad

    Which driver supports the switch for the touchpad?

    Hello

    If you ask a software / driver, then you should also publish information on your installed system.
    I assume that you have already installed the touchpad driver, in order to use the function keys, you need to install the VAP (value added package) as published by Liam

  • Portege R200: Need keycodes for the mapping of the keys

    Hello

    There are many great mapping software keycodes GNU/Linux (like the quick access keys or fnfxd) but we need keycodes to use.
    I would like to know what are the codes that are bound to

    (1) TOSHIBA Assist button
    Presentation button 2) TOSHIBA

    for the key FN + codes see the/etc/fnfxd/keymap file (in GNU/Linux with installed of course fnfxd ;))

    Thanks in advacnce

    Sorry Kamil, but I don t think that someone here in the forum will be able to ask your advice.
    You ask keycodes. I think that these information are known only to a few programmers tools Toshiba who design and create such applications.

    But maybe you are a lucky man and someone will help you

    Good luck

  • Need drivers for the controller ethernet and network on Tecra M2

    I formatted and reinstalled Xp Pro SP2 on my Tecra m2.
    I installed and found all other drivers, but can't seem to find the correct drivers for the network and ethernet devices controllers.

    I downloaded a few different drivers that are compliant with the Tecra M2 but still have yellow question marks.
    If someone could help it would be much appreciated
    Thank you

    Hello

    I guess you need a Wlan card and LAN driver card.
    I a little surprised at your comment, because the WLan and LAN drivers are available on the page of the Toshiba m driver.

    There are 2 Intel Lan and 4 Wlan drivers for different wireless cards. You must choose the right! ;)
    Check the bottom of the unit. There must be a label with a few s Lan and Wlan card information.
    Select the correct drivers and install it.

  • Need adapter for the Turkey

    I'm going to Turkey for several months and I wonder if I can buy a peg now or should I wait until I'm going to Turkey and buy the accessory it.
    Is there anything else I should buy until I leave.

    Thank you
    cokdeli

    Hello

    As far as I know laptops are equipped with the universal power adapter.
    The voltage is 100-240 v, you don't need a special adapter.

    But I have no idea of what cards are needed for the Turkey
    But in my opinion, you should be able to buy the compatible plug in Turkey as well

  • Need driver for the DVD-ROM in my Satellite A100-812

    Who can help me with the driver for the DVD-ROM in my notebook? It's a rug * a UJ-850 s. These days he asks that whenever you load a disc (CD or DVD) if I want it to be formatted. All that s what it does. I tried to find the driver for peut-t, but I find on the Web. Can someone help me solve this problem?
    Thank you

    Hendrik

    There is no such thing as a pilot for ODD (optical disc drive). It uses the standard Microsoft driver. Try please remove the disc from the Device Manager, then restart the laptop. After reboot the ODD will be detected and installed it again. Check please if the problem persists.

    If yes I recommend you to install the driver for DVD-RAM (DVDForm Utility). You can find it on the download page of Toshiba. I use the 3.0.9.0a version. and it works perfectly.

  • Satellite A200 (PSAE6) - need drivers for the functional keys FN

    Please give me a link to this driver.j have windows 7 x 32 bits on my computer laptop a20 psae6... a device reinstal sistem and to reinstall driver and doesn t work... my sensor does not work...

    Hello

    You must download the VAP (value added package) and Flash memory card Support utility.
    These two tools are needed to get the keys FN working in Windows 7!
    I have A210. It s a similar series of laptop and I ve chosen drivers that are released for Satellite L500 series.

    These two tools worked for my A210

  • Satellite L40 - need driver for the modem on high definition audio bus device

    Hey there!

    I have a little problem with my Satellite L40-143 (Modell Nr.: PSL40E-04E00LGR).
    I changed from Windows Vista to Windows XP Professional and found that all need drivers, except a "device on high definition audio bus modem.
    The drivers I found on the Toshiba page don't work anymore.

    I would be very grateful for all the good ideas.

    Thank you ^ ^

    Sayo

    Laughing out loud. Hey Buddy what s the problem
    You have no sound on your laptop or you cannot burn a CD with your CD/DVD drive?

    The fact is that DON T need all the drivers for the CD/DVD drive. The operating system uses Microsoft own driver!
    If you want to burn media, you must install a burning like Nero for example software!

    Good bye

Maybe you are looking for

  • If I update Firefox, password for LastPass my program to save are saved?

    Apparently, Firefox updated can accelerate as it has been recently quite slow loading. I need to be sure of my manager program password to LastPass will not be affected if I do?

  • Tecra A50-A-12F - how to set the new SSD to be recognized correctly?

    Greetings, I installed a new SSD in my laptop, the operating system starts normally.I bought a caddy for the old drive. Before editing deleted the partition and all connected with it. After all mounted when I start the system can not find because it

  • iPhone more guaranteed 6s

    I bought the iPhone 6 s over the United States with APP (AppleCare +) can I claim warranty in India for this. AppleCare + international warranty include?

  • system files and command prompt does not work

    For the last two weeks, I'm having a nightmare. I disabled system restore and when I turned it on again every thing had stoped working (microsoft word and works procedssor), the user account micxrosoft help and support). I tried using command prompt,

  • laptop HP pavilion 15-n236TU: blue screen

    Dear Sir. My pc restarts while working to im. Suddenly, a blue screen appears & says that your pc has run in to a problem he had to restart the pc. And futher said Driver IRQL not less or equal. (tcpip.sys). is very grateful for your kind attention.