sqlplus: command not found


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu sqlplus: command not found
# 15  
Old 04-13-2011
Doesn't Linux have services like in windows where we can go to services.msc and start the desired service we like?

Quote:

oracle@ubuntu:~/oracle$ /opt/oracle/oracle/product/10.2.0/db_2/bin/isqlplusctl start
iSQL*Plus 10.2.0.1.0
Copyright (c) 2003, 2005, Oracle. All rights reserved.
Starting iSQL*Plus ...
iSQL*Plus started.

Thanks for the replies
# 16  
Old 04-13-2011
Quote:
Originally Posted by sandy0594
Doesn't Linux have services like in windows where we can go to services.msc and start the desired service we like?
Yes, it has.
But you need to configure your services manually ...
# 17  
Old 04-13-2011
So,one should make a note of all the commands and run in the terminal every time we log in to our user.
by the way,i am not getting oracle in my applications menu..Any idea?
# 18  
Old 04-13-2011
Why do you think it should be there? At most you'll have a shortcut to dbconsole ...

---------- Post updated at 04:05 PM ---------- Previous update was at 04:05 PM ----------

By the way, I think you need the XE edition, which is free and user friendly Smilie
Give it a try!
# 19  
Old 04-13-2011
When i installed Oracle Xe i got it in the applications menu..now,i don't have any listing regarding Oracle,except that i have a user with oracle which is created during installation of oracle

---------- Post updated at 07:49 PM ---------- Previous update was at 07:37 PM ----------

The changes which i made in the above..will it be permanent?
Everyone are advising to update the environment variables in .bash_profile..But,unfortunately i couldn't find that

---------- Post updated at 09:08 PM ---------- Previous update was at 07:49 PM ----------

Hey,i rebooted my pc and i tried to connect sqlplus..It went well,thanks for ur kind replies..Just,starting the services is what annoying me..But,no issues may be i will get accustomed with that
# 20  
Old 04-21-2011
If you want you scripts ran on system up you can put them in /etc/rc.local
Think of it as something like your startup folder on your Windows machine. Smilie

rc.local is executed after all other startup processes have finished


Edit: So, I thought I would give Oracle XE a shot. Here's a great guide on the initial configuration after install. Hopefully it helps.
http://www.cyberciti.biz/faq/howto-i...ase-xe-server/

Last edited by jtollefson; 04-22-2011 at 12:01 AM.. Reason: Found information
# 21  
Old 04-22-2011
Thanks for the reply
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Problem on SQLplus command ""bash: sqlplus: command not found""

Hi all, i face an error related to my server ""it's running server"" when i use sqlplus command $ sqlplus bash: sqlplus: command not found the data base is up and running i just need to access the sqlplus to import the dump file as a daily backup. i already check the directory... (4 Replies)
Discussion started by: clerck
4 Replies

2. UNIX for Dummies Questions & Answers

Unable to configure Oracle sqlplus V12 properly. Need Help. Resources could'nt be found elsewhere .

I installed Oracle sqlplus on My Ubuntu 14.04 64bit version as per the instructions on: help.ubuntu page (Unable to post the URL as i'm new user here). I'm totally new to SQL and now i'm learning queries in my college. I installed 64bit version of sqplus and run it executing the command:... (14 Replies)
Discussion started by: arjunmayilvagan
14 Replies

3. Shell Programming and Scripting

Sqlplus error - sqlplus -s <login/password@dbname> : No such file or directory

i am using bash shell Whenever i declare an array, and then using sqlplus, i am getting sqlplus error and return code 127. IFS="," declare -a Arr=($Variable1); SQLPLUS=sqlplus -s "${DBUSER}"/"${DBPASS}"@"${DBASE} echo "set head off ; " > ${SQLCMD} echo "set PAGESIZE 0 ;" >> ${SQLCMD}... (6 Replies)
Discussion started by: arghadeep adity
6 Replies

4. Shell Programming and Scripting

Can any one explain this sqlplus command?

Hi , i am new to unix i need a small clarification regarding this sqlplus -s $USER_NAME/$PASSWD@$ORA_SID<< EOF >> SQL_CONN_LOG.log In the above command what is the meaning of <<EOF>> Thanks, krishna. (2 Replies)
Discussion started by: rams_krishna
2 Replies

5. UNIX for Dummies Questions & Answers

SQLPLUS not found

hi, I am new to unix and trying to connect to oracle from unix. I typed the below command and the error is sqlplus not found $ sqlplus -ksh: sqlplus: not found can someone please tell me what is missing? I see that oracle is available on this unix box in the path /opt/oracle as... (7 Replies)
Discussion started by: Vijay81
7 Replies

6. Shell Programming and Scripting

sqlplus: not found

Hi All , At the end I have to post my problem thinking I'll be able to get a clue. I have done a shell script to access a table in our database to extract some logs . Script is working when executed manually ,but when I set it up in cronjob it is not working. I know thins should be a... (2 Replies)
Discussion started by: Davinzy
2 Replies

7. Shell Programming and Scripting

sqlplus : not found

Hi, Below is my script: #!/bin/sh sqlplus uname/pwd@instance <<EOF set wrap off set feedback off set pagesize 0 set verify off set trimspool on set linesize 5000 spool /arboru02/FX/scripts/customer_profile_def.txt select... (1 Reply)
Discussion started by: ss_ss
1 Replies

8. HP-UX

sqlplus: command not found

hi, i need bash shell script run on the crontab(Unix tru64). i have write my shell. it's using sqlplus command and connect to oracle db. execute cron job when i have error messege: "sqlplus: command not found" have you any suggestion? (4 Replies)
Discussion started by: Tlg13team
4 Replies

9. Shell Programming and Scripting

how can i check in csh if command found or not found ?

hello all im trying to use in sun Solaris the information received from the top command now i several machines that dont have install the top program so when im running the script im geting error saying after im running this code : set MemoryInfo = `top | grep Memory` if (... (2 Replies)
Discussion started by: umen
2 Replies

10. Shell Programming and Scripting

Use sqlplus command

Can someone tell me how to execute sqlplus command. I`m Executing: sqlplus user/pasw @/report/output/new/PlatformOut_Cdrs.sql the error is: SQL*Plus: Release 9.2.0.5.0 - Production on Wed Aug 9 15:37:44 2006 Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. ERROR:... (3 Replies)
Discussion started by: Nel
3 Replies
Login or Register to Ask a Question