How To Start SQLPlus From The Linux Command Line
Share
Run the following commands from the Linux command line to start SQLPlus:
export ORACLE_HOME=/path/to/install/dir export PATH=$PATH:$ORACLE_HOME/bin sqlplus
Author
Stewart Schatz
Average Rating
One thought on “How To Start SQLPlus From The Linux Command Line”
Leave a Reply Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
More Stories
VirtualBox Fails After Windows 11 Upgrade (NtCreateFile failed)
After upgrading from Windows 10 to Windows 11, VirtualBox fails to start your Virtual Machine. You receive this error: NtCreateFile...
Quick Tip: WebLogic NodeManager Fails To Start As Windows Service
If your Oracle WebLogic NodeManager starts without issue when using startNodeManager.cmd but when configuring the WebLogic NodeManager as a Windows Service, it fails to start. The nodemanager.log file has the following entry: Native version is enabled but NodeManager native library could not be loaded
Acronyms Seriously Suck – Elon Musk
In May of 2010, Elon Musk sent out an e-mail to the entire SpaceX company: Acronyms Seriously Suck: There is...
How To Change The WebLogic Admin Password Using WLST
Follow the steps below to change the WebLogic Administrator's password using WLST: /u01/Oracle/Middleware/Oracle_Home/oracle_common/common/bin/wlst.sh connect('weblogic','welcome1','t3://SERVER_NAME:7001') cd('/SecurityConfiguration/DOMAIN/Realms/myrealm/AuthenticationProviders/DefaultAuthenticator') cmo.resetUserPassword('weblogic','welcome2') exit() You should now...
The Easiest Way To Truncate the Oracle Database listener.log On A Linux Server
On Linux, locate the listener.log file of the Oracle Database. Then, use the following procedure to zip & truncate the...
Create a Backup of a Table in an Oracle Database
Create a Backup of a Table in an Oracle Database
Thank you!
it’s helpful.