oracle - -bash: sqlplus: command not found -


i wanted in sqlplus run sqlfiles,i ran these lines , when give sqlplus enetr in sqlplus, err, have not downloded , installed anythng otherthan running these commands, 1 plese me??

[root@localhost instances]# export  oracle_home=/u01/app/oracle/product/11.2.0/xe [root@localhost instances]#  export oracle_sid=xe [root@localhost instances]# export nls_lang=$oracle_home/bin/nls_lang.sh [root@localhost instances]# export path=$oracle_home/bin:$path [root@localhost instances]# sqlplus  -bash: sqlplus: command not found 

export nls_lang=$oracle_home/bin/nls_lang.sh seems wrong. nls_lang string of format language_territory.charset, see nls_lang faq

in case $oracle_home/bin/nls_lang.sh provides nls_lang value dynamically should

export nls_lang=`$oracle_home/bin/nls_lang.sh` 

Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -