Sqlplus installation in ubuntu linux

Hi,
I have installed Oracle Expression Edition on my system running Ubuntu. I want to run sqlplus from the bash shell. Please let me how can I run it ? Do I need to install any other tool?
Thanks & Regards,
Babu

You don't need to install any other tool but you need to apply the following steps: http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm#BABDGCHH

Similar Messages

  • OWB Installation In Ubuntu Linux

    Hello,
    I have installed Linux flavor Ubuntu(9.1) version.
    Could it be possible to install OWB 10g R2 on Ubuntu?
    If not which are the supported Linux flavors?
    Regards

    Yes, it'ts possible. I just installed OWB 11gR2 on Ubuntu 9.1. Follow the installation instructions in the oracale manual.
    Regards,
    Detlef

  • Need Firefox 4.0 installer for Ubuntu (linux) 10.04

    I can't install the new Firefox 4.0 or 4.0.1 in my netbook, 'couse it only supports Ubuntu 10.04 and I want the installer with the ".deb" extention.

    Ok I tested a bunch of different Firefoxes on my pos linux box.
    '''''Worked with xmodmap:'''''
    Vanilla 16.0.2,
    Vanilla 16.0B6,
    Ubuntu Firefox 16.0.2 (16.0.2+build1-0ubuntu0.10.04.1)
    '''''Did Not Work with xmodmap:'''''
    Vanilla 17.0.1,
    Ubuntu Firefox 17.0.1 (17.0+build2-0ubuntu0.10.04.1)
    I have an old Dell Dimension 2400 I plan to use as a replacement for the Sony Vaio when it pops. I've held out as long as possible because it lacks a pci or usb wifi and I really didn't want to run 50 feet of cat5 up a flight of stairs to it. [as i type this i think i remember where a linksys stick for it might be]. Yes I guess it's about time I just do that.
    Don't laugh but the reason I held off adding a simple usb keyboard was just lack of space in my tiny bedroom. My setup is on two tray tables side-by-side. Sony Vaio is on left one, my lcd monitor and mouse are on the other. I barely have room to put a cup of coffee on the one with monitor and mouse let alone a full size usb keyboard lol.
    Anyway thank you again for all your help.

  • Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto

    h2. Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Version: B
    Author: Dude, 24. May 2011
    The following are step by step instructions how to install Oracle 11gR2 Express Edition (Beta) under Linux Ubuntu 11.04, 64-bit.
    Access to the Internet is required.
    The instructions cover the following additional topics:
    - Converting Red Hat based Oracle XE installer to Ubuntu.
    - Work-around for missing /sbin/chkconfig tool.
    - Install Oracle XE into a different directory or disk volume.
    - Relocate and configure the Oracle user and default login directory.
    - Uninstall, reconfigure and perform first database backup.
    - Notes and web links.
    - Troubleshooting
    h3. A) System Setup and Prerequisites
    h4. A.1. System Access
    You will need terminal command line, root and system console access to perform the setup tasks.
    To open a Terminal at the system console:
    Menu Applications > Accessories > TerminalThe following commands will enable remote ssh login with root access:
    sudo apt-get install openssh-server
    sudo passwd root
    Verify:
    ssh root@xe_server_host_nameh4. A.2. Software Prerequisites
    The following is required in order to install Oracle 11gR2 XE:
    sudo apt-get install alien libaio1 unixodbcThe following is not required, but it will fix backspace and arrow keys in case you prefer using the vi-editor:
    sudo apt-get install vimh4. A.3. System Swap space
    Minimum swap space required is 2 GB. You can increase swap space if necessary using a swap file:
    To analyze current swap space and memory configuration:
    sudo cat /proc/meminfo
    To install a 1 GB swapfile named swapfile in /, for example:
    sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
    (this may take a while)
    sudo mkswap /swapfile
    sudo swapon /swapfile
    sudo cp /etc/fstab /etc/fstab.orig
    sudo echo '/swapfile swap swap defaults 0 0' >> /etc/fstab
    Verify:
    sudo swapon -a
    sudo swapon -sh4. A.4. Kernel Parameters
    Oracle 11g XE requires the following additional kernel parameters:
    sudo nano /etc/sysctl.d/60-oracle.conf
    (Enter the following)
    # Oracle 11g XE kernel parameters
    fs.file-max=6815744
    net.ipv4.ip_local_port_range=9000 65000
    kernel.sem=250 32000 100 128
    kernel.shmmax=536870912
    (Save the file)
    Note: kernel.shmmax = max possible value, e.g. size of physical RAM.
    Verify: sudo cat /etc/sysctl.d/60-oracle.conf
    Load new kernel parameters:
    sudo service procps start
    Verify:
    sudo sysctl -q fs.file-max
    -> fs.file-max = 6815744h4. A.5. Oracle Installation Directory
    The current Oracle Installation Guide uses the same directory like in previous versions: /usr/lib/oracle/xe/app/oracle/product/11.2.0/server. However, the current Beta installation uses Oracle Flexible Architecture (OFA) and installs into /u01/app/oracle/product/11.2.0/xe. Due to size limitations of Oracle XE it may not be necessary to store the installation to a specific directory or separate volume, but it is possible:
    Install Oracle XE to separate disk volume:
    From the system console menu: System > Administration > Disk Utility
    Select "ext3" filesystem for Oracle compatibility and specify a Volume label, e.g. Oracle.
    Notice the device name e.g. /dev/sdb
    Get the drive UUID:
    sudo blkid
    e.g. /dev/sdb: UUID="d19a2d8f-da43-4802-8bdb-0703c855e23a"
    Modify /etc/fstab to automatically mount the volume at system startup:
    sudo cp /etc/fstab /etc/fstab.original
    sudo nano /etc/fstab
    (Add the following, using determined UUID, for exmple)
    UUID=d19a2d8f-da43-4802-8bdb-0703c855e23a /u01 ext3 defaults,errors=remount-ro 0 1
    (Save the file)
    Create the mount-point, mount the new volume and set ownership and privileges:
    sudo mkdir /u01
    sudo mount -a
    sudo chown root:root /u01
    sudo chmod 755 /u01
    Verify:
    df -h
    or restart the systemYou can also install Oracle XE into a specific directory:
    Create a symbolic link to store the installation into an existing directory, for instance:
    sudo mkdir /home/oracle-xe
    sudo ln -s /home/oracle-xe /u01h3. C) Oracle 11g XE Download and Installation
    h4. C.1. Download and convert the Installer from Red Hat to Ubuntu
    Please see section E.3. to download the Oracle 11gR2 XE installer.
    Select the version listed for Linux x64.
    sudo unzip linux.x64_11gR2_OracleXE.zip
    sudo alien --to-deb --scripts oracle-xe-11.2.0-0.5.x86_64.rpm
    (This may take a while)h4. C.2. Create a special chkconfig script
    The Red Hat based installer of Oracle XE 11gR2 beta relies on +/sbin/chkconfig+, which is not used in Ubuntu. The chkconfig package available for the current version of Ubuntu produces errors and my not be safe to use. Below is a simple trick to get around the problem and install Oracle XE successfully:
    Create /sbin/chconfig:
    sudo nano /sbin/chkconfig
    (Cut and paste the following)
    #!/bin/bash
    # Oracle 11gR2 XE installer chkconfig hack for Debian by Dude
    file=/etc/init.d/oracle-xe
    if [[ ! `tail -n1 $file | grep INIT` ]]; then
       echo >> $file
       echo '### BEGIN INIT INFO' >> $file
       echo '# Provides:             OracleXE' >> $file
       echo '# Required-Start:       $remote_fs $syslog' >> $file
       echo '# Required-Stop:        $remote_fs $syslog' >> $file
       echo '# Default-Start:        2 3 4 5' >> $file
       echo '# Default-Stop:         0 1 6' >> $file
       echo '# Short-Description:    Oracle 11g Express Edition' >> $file
       echo '### END INIT INFO' >> $file
    fi
    update-rc.d oracle-xe defaults 80 01
    (Save the file)
    Set appropriate execute privileges:
    chmod 755 /sbin/chkconfig
    Note: You should remove the /sbin/chkconfig file after successful installation of Oracle XE.
    h4. C.3. Install and configure Oracle XE
    sudo dpkg --install ./oracle-xe_11.2.0-1.5_amd64.deb
    /etc/init.d/oracle-xe configure
    (This will take a while)
    Remove the /sbin/chkconfig script, which is no longer needed.
    sudo rm /sbin/chkconfigh4. C.4. Relocate and Configure the Oracle user login
    The Oracle XE installer specifies /u01/app/oracle as the login directory for the Oracle user. Although not really necessary, the following will relocate the Oracle user $HOME to a standard location and create standard /etc/skel login files:
    Exit all Oracle user sessions:
    sudo /etc/init.d/oracle-xe stop
    sudo kill -9 `ps -ef | grep oracle | grep -v grep | awk '{print $2}'`
    sudo userdel oracle
    sudo useradd -s /bin/bash -G dba -g dba -m oracle
    sudo passwd oracle
    Verify:
    sudo id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba)h4. C.5. Setup Oracle environment variables
    In order to use sqlplus and other tools, the Oracle account requires certain environment variables. The following will set these variables automatically at every interactive Oracle login:
    sudo echo '. /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh' >> /home/oracle/.bashrch4. C.6. Oracle sudo root access
    It is not essential to allow the Oracle user to use sudo, but it is convenient:
    usermod -G admin oracle
    Verify:
    id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba),120(admin)
    sudo su -
    -> Enter Oracle account passwordh4. C.7. Oracle 11g XE Post-installation
    After you install Oracle Database XE, its graphical user interface is only available from the local server, but not remotely.
    The following will correct the problem if necessary:
    Login as user Oracle or use:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following command:
    EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
    exith3. D) Unintstall, Reconfigure and Troubleshooting
    h4. D.1. Uninstall Oracle 11g XE
    The following will completely uninstall and remove Oracle 11g XE:
    Login as user root:
    sudo su -
    /etc/init.d/oracle-xe stop
    dpkg --purge oracle-xe
    rm -r /u01/app
    rm /etc/default/oracle-xe
    update-rc.d -f oracle-xe removeh4. D.2. Reconfigure Oracle 11g XE
    Type the following in a terminal window:
    /etc/init.d/oracle-xe stop
    sudo rm /etc/default/oracle-xe
    /etc/init.d/oracle-xe configureh4. D.3. Enable Archivelog mode and perform a database backup
    Login as user Oracle:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following commands:
    shutdown immediate
    startup mount
    alter database archivelog;
    alter database open;
    exit
    Login to system console of the Oracle user account:
    Select Applications > Oracle Database 11g Express Edition > Backup Databaseh3. E) Notes
    h4. E.1. Oracle 11g XE limitiations overview
    - It will consume, at most, processing resources equivalent to one CPU.
    - Only one installation of Oracle Database XE can be performed on a single computer.
    - The maximum amount of user data in an Oracle Database XE database cannot exceed 11 GB.
    - The maximum amount of RAM that Oracle XE uses cannot exceed 1 GB, even if more is available.
    - HTTPS is not supported natively with the HTTP listener built into Oracle Database XE.
    h4. E.2. Documentation and Links
    Official documentation for Oracle 11gR2 XE can be found at:
    http://www.oracle.com/pls/xe112/homepage
    h4. E.3. Oracle 11g XE downloads
    The Installer is available from the Oracle Technology Network at:
    http://www.oracle.com/technology/products/database/xe
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    h4. E.4 APEX links and archives
    The APEX archives can be found at:
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/all-archives-099381.html
    The APEX download site is:
    http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html
    h3. F) Troubleshooting
    ... in progress
    Regards and best of luck!
    Edited by: Dude on May 25, Version B: various corrections. chkconfig package (A.2.) not required.

    even though I am admin user.Admin user is a MS Windows term, that does not apply to Linux or Unix in the same fashion.
    The configuration script tells you "You must be root user to run the configure script. Login as root user and
    then run the configure script."
    This is most likely correct because your account is not root and does not have UID 0. What you can do is to login as root e.g. sudo su -, as the message suggest, or use "sudo /etc/init.d/oracle-xe configure", provided your account is defined in the /etc/sudoers file to perform root/admin actions.
    Btw, do not modify /etc/passwd and /etc/group to give you admin privileges or try to create a another root account under a different name. That's not the way it works and usually leads to nasty problems.

  • Cannot complete installation on Ubuntu 8.04

    I have some experience installing Oracle Standard / SE One on Windows 2003 Server, and in general I have no problems.
    I am new to Ubuntu/Linux and I like it. I am also new to Oracle XE. I have made several trials to get Oracle running on Ubuntu and I just can't. Sometimes it installs and I even can log into SQL plus as SYS and run some selects. But the XE home page never displays. Last time when configuring Oracle it says port 8080 is invalid and doesn't accept any other port.
    As I don't know Linux very well, I'd like to know if it is necessary to create an Oracle user and then install Oracle as root, but within Oracle user, or is it the same if I create the user Francisco and install Oracle as root within Francisco user? Or what is the way? I cannot log in as root in Ubuntu desktop. Also, where do I have to save the .deb package in order to unpack it, and should I run it from the full path or reference it from outside (another directory)? I just got lost in linux directory structure.
    I have reinstalled Ubuntu completely to do an Oracle fresh install, and got no results.
    The installation steps in Oracle manuals are very clear, I'd like to have some advice on the PRE-installation requirements.
    Thanks,
    Francisco.

    >
    I am new to Ubuntu/Linux and I like it. I am also new to Oracle XE. I have made several trials to get Oracle running on Ubuntu and I just can't. Sometimes it installs and I even can log into SQL plus as SYS and run some selects. But the XE home page never displays. Last time when configuring Oracle it says port 8080 is invalid and doesn't accept any other port.
    >
    You may need to set the port through
    exec dbms_xdb.sethttpport(<port>);Then you should also check if the listener is up and running
    And make sure that you don't have any firewall settings that would prevent access
    >
    As I don't know Linux very well, I'd like to know if it is necessary to create an Oracle user and then install Oracle as root, but within Oracle user, or is it the same if I create the user Francisco and install Oracle as root within Francisco user? Or what is the way?
    >
    Last time I tried the debian package, the Oracle user was automatically created by that package. No need to add your own user, unless you want to.
    >
    I cannot log in as root in Ubuntu desktop.
    >
    You don't have to. If you want to have root access, try
    sudo -sif I remember correctly.
    >
    Also, where do I have to save the .deb package in order to unpack it, and should I run it from the full path or reference it from outside (another directory)? I just got lost in linux directory structure.
    >
    Just save it in the /tmp directory or any other download directory. Installation is done through the dkpg command, if I remember correctly.
    C.

  • What is the best client for ARD from ubuntu linux?

    I attempt to connect to my mac mini running osx 10.7 from ubuntu linux using the default vncviewer application and the tightvnc client and I get to the login display but am unable to click on any of the users nor log in.  I was successful from my windows7 laptop, but not from my windows xp HTPC--ultravnc gets to the login prompt, showed me the password field, but didn't allow me to change focus to that field, however, this isn't reproducable since I get a different behavior each time I try to remote in.

    Back up all data. Update all third-party software to the latest version and remove any you don't need. Download the Yosemite installer from the App Store. Run it.

  • How to install oracle on ubuntu linux 10.1

    hi i have been trying to install my oracle 11g in ubuntu 10.1 linux any one have direction for me where to go maybe manual
    Edited by: user603350 on 2011/08/03 12:45 PM

    None of the Oracle installation, Express or Enterprise Edition are really easy by today's standards. Both installation have their specific challenges. The following should answer your questions:
    Oracle 10g Express on Ubuntu 10.10 AMD 64-bit howto
    Oracle 10g Express on Ubuntu 10.10 AMD 64-bit howto
    Install Oracle 11gR2 on Ubuntu Linux 11.04 (64-bit) Howto
    Install Oracle 11gR2 on Ubuntu Linux 11.04 (64-bit) Howto
    Oracle 10g Express on Fedora 14 64-bit howto
    Oracle 10g Express on Fedora 14 64-bit howto
    Installing Oracle 11g R2 on Ubuntu 10 Howto
    Installing Oracle 11g R2 on Ubuntu 10 Howto
    Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    I think the installation of Oracle database under Oracle Linux is the least troublesome because you an install the "oracle-validated" package, which takes care of software prerequisites and system parameters. Enterprise Linux is however not suitable for Desktop and Laptop systems. For the purpose of development or evaluating Oracle products I suggest to use Virtualbox http://www.virtualbox.org. If your system is too old or not well equipped to support virtual systems, consider a hardware upgrade or try the howto's above.

  • How to install Oracle client on UBUNTU LInux

    Hi,
    I want to install oracle client on ubuntu linux. Which version of oracle client works on it and is there any other tool which i can install instead of oracle client?
    Regards,
    RJiv.

    RJiv wrote:
    Hi,
    I want to install oracle client on ubuntu linux. Which version of oracle client works on it All recent Oracle version support different Linux flavours
    The problem is Oracle usually don't provide direct Oracle Client download except for Windows. You need to download the Server installation file and install the client piece. The download files are rather large.
    and is there any other tool which i can install instead of oracle client?It depends on what you plan to do with Oracle client and why you need it.
    On alternative is instance client, it has direct download for all supported platform.
    http://www.oracle.com/technology/software/tech/oci/instantclient/index.html

  • Can anyone tell me how to update my bios in my Acer aspire 5610Z laptop. I installed Ubuntu Linux

    I installed Ubuntu Linux in my Acer Aspire 5610Z laptop and all was fine until the latest updates came in. I inquired about the problem and I was told that I needed the newer version of bios. My laptop uses Pheonix WinPhlash bios and I cannot make it work through Ubuntu. Iwould appreciate any help that anyone might be able to give me. The keyboard does not work correctly and the person at Ubuntu assured me that it was the bios causing the problem. My laptop originally came with a Windows Vista installation disk. Thanks in advance.Rich S.

    I had no problems with Ubuntu version 13. I started having problems with my keyboard after it upgraded to 14.04. I filed a bug / problem report with Ubuntu and I was told it was my out dated bios version 3.50. I went through hell trying to update it to bios version 3.60 but after many frustrating hours I finally ended up puting in Windows 2000 and updating WinPhlash through it. I had wiped my hard drive, reformatted it and it would no longer install Windows Vista. I can't figure that one out at all? After going through about two weeks of failure I finally got bios 3.60 installed. It did not change anything. The keyboard of the laptop worked just fine with Windows. When I put Ubuntu back it I had the same old ball game. I have to use a USB keyboard. I installed Ubuntu 15.04 (advice from my learned son) that produce no change either. Now, I had been going on the asumption that the fellow from Ubuntu knew what he was talking about since he assured me that it was a "buggy bios" version 3.50 causing the keyboard problem. I did a Google search only to find out that laptop keyboard problems are a very common thing with almost all versions of Ubuntu, especially version 14.04. I was told there is a Kernel 4.1 that may solve the problem but I do not understand Kernels very well and I fear I may mess things up and will have to start all over a again. I shall find out.

  • Ubuntu Linux for S12 with VIA Nano?

    Hi,
    I'm thinking about buying an S12 with VIA Nano, but would like to install UBUNTU Linux to double-boot with WinXP. Is this possible? Any potential problems of Ubuntu with the Via Nano CPU?
    Thanks,
    Tolga

    Hi and welcome , similar quest could help to find the answer..
    Kubuntu S12 Via
     if you dont want to have a desaster... i prefer to backup the whole harddrive before you install ... if something goes wrong while install...you have a rescue belt...
    or give WUBI a chance install Ubuntu as a deinstallable program inside XP
     http://wubi-installer.org/ 
    without fear to loose your recover part...
    sincerely KalvinKlein
    Want more ? For further information to get the most of your S-Class machine
    Lenovo Energymanagement 
    Backup
    Windows 7
    Clean XP Install
    XP Startup
    Small WebCam Guide
    Lenovo Easy Capture
    Thinkies 2x X200s/X301 8GB 256GB SSD @ Win 7 64
    Ideas Centre A520 ,Yoga 2 256GB SSD,Yoga 2 tablet @ Win 8.1

  • Problem with character set (ubuntu linux)

    hello everyone.
    I 'have already installed oracle-xe-universal_10.2.0.1-1.1_i386 in ubuntu.
    The problem is that greek characters from the db appear like ??????.
    How can i set the right nls_lang character set to solve the problem in ubuntu linux?
    Thank you in advance!

    Character code point translation is in the realm of the client, try setting NLS_LANG environment variable.
    If your client programs handle UTF8, as do many linux utilities, that is the best choice, set your <language>_<locale>.<characterset>, i.e.
    export NLS_LANG=AMERICAN_AMERICA.AL32UTF8
    Or french_france, or german_germany ... depends on the locale you want to use. Try a `putty` session to the host, the terminal can be set for many different character sets, i.e. ISO8859-<n> a.k.a. the WE8<n> or Western European, UTF, etc. under Window/Translation.
    Try a few select ... from dual; statements in sqlplus with a literal, and different unicode values- the unistr() and dump() functions can come in quite handy.
    select unistr('\ac20 euro' ) from dual;
    ... € euro ...
    select dump( unistr('\ac20 euro' ) ) from dual;
    ... <ascii codes for the character values> ...
    select dump( unistr('\ac20 euro' ),16 ) from dual; -- this one for hex dump

  • Thinkcentr​e m32 Ubuntu Linux

    I have a Thinkcentre M32 with  lenovo terminal ver. Ubuntu Linux. I want to know how to set up or install SNMP and SSH on this unit. Or at lest get in to a CLI to install or configure for SNMP and SSH. Can any One Help this this.

    Oracle 11g 11.2.0.2 is a full installation and not a patch set anymore.
    I have tested an Out-of-Place Upgrade of the existing 11.2.0.1 database to 11.2.0.2 on the above system without problems. Just select the "ignore all" button at the prerequisites check. It worked fine, including the Network Configuration and Database Upgrade Assistant. If you go straight to 11.2.0.2 you may not need to install any 32-bit libraries, but I didn't try it.
    I have updated the instructions.

  • To increase the screen size in ubuntu (Linux) Sap gui?

    Hi,
         I had installed sap gui in ubuntu(linux) version.But after installation, i m getting the screen as half size.I want to know how to increase the screen size (original size).
          Valuable suggestions will be rewarded.

    CLosing thread

  • Ubuntu Linux

    I can get to home page with Windows but not Linux

    Did you run:
    sudo /etc/init.d/oracle-xe -configure
    after the install?
    If you installed via a package file (ie. .deb) then you may not have finished the install. If you weren't prompted to chose port settings and a system user password then you didn't finish the install. Hence, the package is installed, but Oracle hasn't been configured to run yet.
    I had this problem on Ubuntu Linux 9.04 (Jaunty Jackalope) after installing via a .deb package installer. The configure command was hidden during the install process so I was unaware there was further configuring that needed to be done.

  • Ubuntu linux - ORA-01031: insufficient privileges

    hi all
    I have oracle xe running on ubuntu linux without any apparent problems until I try to connect like this
    sqlplus / as sysdba at which point I get the ORA-01031: insufficient privileges message.
    I have tried as root, as oracle (su oracle) and as a user who has membership in the dba group.
    I have even set all the privileges on the oracle directory (chmod -R 777 /usr/lib/oracle) but all without success.
    Would really appreciate some help on this as I am trying to configure the RMAN backup utility and need to set
    XE to operate in archivelog mode so I can do online backups.

    If you've switched to the oracle user (use $ su - oracle # to get a "brand new" environment, not the plain $ su oracle) and have the environment variables set, you shouldn't be seeing the ora-1031 unless something has gone astray with the passwd/group files for the local users.
    What's the ubuntu version, anything real recent? Something might be a bit different/newer with the OS user setups, not sure what that might be, but the oracle user should always be able to conn /as sysdba since that's the account that owns the software install.
    Verify the group membership, and a long list of the /usr/lib/oracle shows oracle dba for owner and group, and `id` and `groups`for the user shows the right info. If not in an oracle term session maybe a `newgrp dba` might be needed too.
    Or maybe something unusual in the sqlnet.ora (like SQLNET.AUTHENTICATION_SERVICES= (NTS), or (NONE) could break the OS authentication) ...

Maybe you are looking for

  • Installation problem CCM 4.0(1)

    I install ccm 4.0(1) on my pc with wins 2000 server plus sql 2000sp3a while install I got error about RPC connection fail duration installation cisco directory. please help and ref Thank in advance

  • Adobe Media Encoder CS4 (Mac) condenses .mov vertically

    Hi, folks QuickTime movie generated by Final Cut Pro 7, converted to same size .flv (720 x 480) results in video that is condensed vertically. No such problem when using Flash 8 Video Encoder. Would prefer to use more recent encoder since a document

  • Is it able to be used as a wifi hotspot?

    is it able to be used as a wifi hotspot? (The AirPort)

  • HT201441 Can't set up iPhone as old iCloud account is locked out even though device removed!!!

    My Mums iphone has been removed from its original iCloud account and a factory reset performed. I want to connect it to a new iCloud account (for my Dad), but when setting it up, it asks for the original iCloud account. When I enter the original acco

  • Park invoices

    Hi there, Some weird thing is happening when posting park invoices... Standard WF 00400004 has the triggering event CREATED from BO FIPP activated, and when I test it running SWUE, everything goes ok, and the WF starts. But when posting a park invoic