Tagged Questions
SQL*Plus is a command-line interface for the Oracle RDBMS product. SQL*Plus questions should probably be also tagged with **oracle**
18
votes
15answers
5k views
Is there a good alternative to SQL*PLUS for Oracle?
I am not a fan of using SQL*PLUS as an interface to Oracle. I usually use yasql, but it hasn't been updated since 2005 and can do with some improvements. A quick Google search shows yasql and ...
17
votes
6answers
6k views
Favorite SQLPLUS tips and tricks
So many times I just need a quick connection to an Oracle DB, where SQLPLUS handles the job.
I imagine when people start using Oracle, the first thing they are told to do is to install Toad or ...
16
votes
7answers
3k views
Webrick Very Slow When Accessing Applications From Remote Desktop
I have a rails application that I'm running on my server. When I go to a remote desktop and attempt to load the application, the server takes a good 3-4 minutes to respond with a simple html page. ...
14
votes
3answers
19k views
How do I ignore ampersands in a SQL script running from SQL Plus?
I have a SQL script that creates a package with a comment containing an ampersand (&). When I run the script from SQL Plus, I am prompted to enter a substitute value for the string starting with ...
9
votes
7answers
66k views
How do I spool to a CSV formatted file using SQLPLUS?
I want to extract some queries to a CSV output format. Unfortunately, I can't use any fancy SQL client or any language to do it. I must use SQLPLUS.
How do I do it?
8
votes
4answers
3k views
Using oracle db through ssh tunnel. Error “ORA-12541: TNS:no listener”
Hello I've got a problem accessing Oracle DB from our datacenter through a tunnel.
We've got a pretty standard datacenter with one machine being accessible from the outside
(I put it's IP in the ...
8
votes
1answer
511 views
How do I get SQL*Plus to create views / tables with a blank line in the middle of the create statement?
I wish to create some views using SQL*Plus via script, but seem to hit a problem if a developer has placed a blank line mid statement.
The following statement works fine in TOAD / PL/SQL developer ...
7
votes
3answers
4k views
SQLPlus settings to generate tab-separated data file
Anyone have a good set of sqlplus configuration directives to help transform a given sql query into nicely tab separated output for pulling into a spreadsheet or further processing?
6
votes
1answer
41 views
SQL*plus does not tokenize its command-line arguments properly when the program path contains spaces
I am using SQL*Plus with the following command line:
sqlplus user/pw@TNS @test.sql foo
The contents of test.sql follow:
SET VERIFY ON
DEFINE argone='&&1'
SELECT '&argone' FROM dual;
...
6
votes
1answer
2k views
Display Dynamic EXECUTE Output Within pl/sql From sqlplus
How to get the dynamic select results of EXECUTE within pl/sql from Oracle sqlplus?
I'm writing a simple sqlplus script to collect the sum of all NUMBER columns of a given table --
SET SERVEROUTPUT ...
6
votes
1answer
4k views
How do I Suppress “PL/SQL procedure successfully completed” message in sqlplus?
Is there a way that you can have SERVEROUTPUT set to ON in sqlplus but somehow repress the message "PL/SQL procedure successfully completed" that is automatically generated upon completed execution of ...
6
votes
11answers
9k views
How to insert a string which contains an “&”
How can I write an insert statement which includes the & character? For example, if I wanted to insert "J&J Construction" into a column in the database.
I'm not sure if it makes a ...
5
votes
4answers
83 views
I'm looking for a good explanation of a BLOB and a CLOB
I think the title says it all but I am looking for a real good explanation of a BLOB and CLOB data. I tried to google it and I get a few but I am looking for the great of that explains in plain ...
5
votes
3answers
122 views
Monitoring long-running PL/SQL block
I have a fairly time intensive PL/SQL block that builds fingerprints from molecular structures. I would like to print output to SQL*Plus console to provide feedback on how many structures have been ...
5
votes
2answers
413 views
Equivalent of MySQL's \G in Oracle's SQL*Plus
In Oracle's SQL*Plus, the results of a SELECT are displayed in a tabular manner. Is there a way to display a row in a key-value manner (like MySQL's \G option)?
The database I am working on (the ...
5
votes
3answers
467 views
oracle query - ORA-01652: unable to extend temp segment but only in some versions of sql*plus
This one has me rather confused. I've written a query which runs fine from my development client but fails on the production client with error "ORA-01652: unable to extend temp segment by....". In ...
5
votes
7answers
2k views
Why does SQL*Plus commit on exit?
Surely this should be the same as a termination of a session and cause a rollback? It seems to me to be the most un-Oracle thing possible. I was actually shocked when I found out that it did this
...
4
votes
7answers
67 views
SQL where restrictions
Below is my output, I want to display only those names that repeat. Each name is a pilot and the number is the type of airplane the pilot fly's. I want to display the names of pilots who fly more than ...
4
votes
3answers
445 views
Why does SQLPLUS show empty and null CLOBs as null?
It seems SQLPLUS shows nulls and empty strings for CLOBs in a way that I wasn't expecting.
Try the following in SQLPLUS (I'm using Oracle 10g Server). Create a table with a CLOB, and insert null, ...
4
votes
5answers
349 views
How can I execute only selective statements from a SQL file?
I have a .sql file that has a sequence of create table statements, like this:
crtab.sql
define ll='&1';
define ul='&2';
create table TAB1 (...);
create table TAB2 (...);
create table ...
4
votes
3answers
1k views
Max column width in Oracle spool to file
I have a script like this:
SET ECHO OFF
SET FEEDBACK OFF
SET VERIFY OFF
SET HEADING OFF
SET TERMOUT OFF
SET TRIMOUT ON
SET TRIMSPOOL ON
SET WRAP OFF
SET LINESIZE 32000
SET LONG 32000
SET ...
4
votes
3answers
736 views
Dump the body of a function or procedure in sqlplus
How can I dump out the body of a function or a procedure when using sqlplus to connect to an oracle database?
4
votes
5answers
3k views
problem with oracle sqlplus with whitespace in the path of the @ command
I'm running Oracle 11g on Linux and I'm trying to run a script which will create my database. This script runs fine on windows, but when I test it on Linux, I get the following error:
SP2-0556: ...
4
votes
1answer
600 views
Differences between SQL Plus and “regular” SQL?
I'm new to the Oracle Platform (having primarily used MySQL, with a little Postgres and SQL Server as well). I recently discovered the following statment
DESC TABLE_NAME;
will only work in the ...
4
votes
5answers
8k views
Preventing sqlplus truncation of column names, without individual column formatting
By default sqlplus truncates column names to the length of the underlying data type. Many of the column names in our database are prefixed by the table name, and therefore look identical when ...
4
votes
1answer
457 views
In SQL*Plus, how do I change the prompt to show the connected user and database?
To show, for example....
USER@SID >
I thought this was potentially helpful to a few people so I'm going to answer it too!
4
votes
9answers
20k views
How can I kill all sessions connecting to my oracle database?
I need an sqlplus script to quickly kill off all external sessions connecting to my oracle database without the supervision of and administrator.
3
votes
2answers
63 views
What is this Oracle Syntax: “||''”?
I've come across some odd-looking Oracle syntax in one of our legacy apps and I'm intrigued...
The Query
(names have been altered to protect the innocent)
SELECT COUNT(1) AS WEEKLYCOUNT
FROM ...
3
votes
1answer
38 views
How to execute SP with arguments 'table of foo'?
Using sqlplus how can I execute a stored procedure which has arguments which are 'table of foo' ?
So for instance in the following package how can I execute 'Get_AnnotationsForEmp' ?
create or ...
3
votes
3answers
200 views
sqlplus session read only
In sqlplus I can create a readonly transaction.
set transaction read only;
Is it possible to create a readonly session?
I want to connect to the Oracle DB, execute some tests with UPDATEs and ...
3
votes
3answers
887 views
executing a function in sql plus
I created a function in oracle that inserts records in specific tables and return an output according to what occurs within the function. e.g (ins_rec return number)
how do i call this function and ...
3
votes
1answer
742 views
Detect sqlplus error in dos batch script?
We have the following batch script:
(
echo @release.sql
echo exit
) | sqlplus x/y@orcl
if %errorlevel% gtr 1 goto dberror
Issue is - the statement if %errorlevel% gtr 1 never appears to be true ...
3
votes
3answers
546 views
Open a piped process (sqlplus) in perl and get information from the query?
Basically, I'd like to open a pipe to sqlplus using Perl, sending a query and then getting back the information from the query.
Current code:
open(PIPE, '-|', "sqlplus ...
3
votes
2answers
865 views
How to find out when a particular table was created in Oracle?
In Oracle, is there a way to find out when a particular table was created?
Similarly, is there a way to find out when a particular row was inserted/last updated?
3
votes
1answer
160 views
Why is sql plus not including all of the data from my column with spool
I am using SQLPLUS to spool data out to a file, but not all of the data is being returned? I am using the dbms_metadata.get_ddl function and it is only returning part of the table definition to the ...
3
votes
1answer
442 views
Possible to run oracle package from sql plus without compiling it into a database?
I have a certain oracle package file (pbk with pks). I want to execute one of the methods in the package from sqlplus. I want to do so without compiling the package into the oracle database.
Is this ...
3
votes
4answers
123 views
Backing up SQL Plus environment during script
Some scripts I have inherited will blindly call SET FEEDBACK OFF or SET ECHO OFF at the beginning of the script, then set them to ON or OFF at the end of the script. I would like to modify these ...
3
votes
3answers
942 views
Set “Start With” value for Oracle sequence dynamically
I'm trying to create a release script that can be deployed on multiple databases, but where the data can be merged back together at a later date. The obvious way to handle this is to set the sequence ...
3
votes
2answers
992 views
Problem running oracle script from command line using sqlplus
I'm having a problem trying to run my sql script into oracle using sqlplus. The script just populates some dummy data:
DECLARE
role1Id NUMBER;
user1Id NUMBER;
role2Id NUMBER;
user2Id NUMBER;
...
3
votes
4answers
278 views
Oracle SQL CMD Line
Whenever I perform select statements in the command line tool it doesn't use all of the space.
I've modified buffer size and window size and it just doesn't work.
Here is the screenshot:
3
votes
3answers
377 views
Condition in SQL script
I've got an SQL-script executed by SQL*Plus, that needs to run with Oracle 10g and Oracle 11g.
That script gives grants on a package that does not exist before 11g:
GRANT EXECUTE ON ...
3
votes
4answers
416 views
select only first letters of words from a varchar field
I was asked in an interview,a question from oracle sql.this seemed to be a simple question but i had no clue to answer.could anybody help?
if there is string like "newyork is a beautiful city" in a ...
3
votes
6answers
2k views
How to create a menu in SQLPlus or PL/SQL
I have several scripts that I would like to start from a menu presented to the SQLPlus user. Something like:
Please make a selection:
1: Do script a
2: Do script b
3: Do script c
I just need a point ...
3
votes
4answers
2k views
SQL*Plus inside Perl script
I am having a prior knowledge of shell scripting.
I am trying to connect to a table using SQL*Plus and fetch the data in a Perl script and store that output in a Perl variable.
Normally in a shell ...
3
votes
3answers
2k views
sqlplus statement from command line
Is it possible to do something like this?
$ sqlplus -s user/pass "select 1 from dual"
or
$ echo "select 1 from dual" | sqlplus -s user/pass
I know I can put select 1 from dual in a file and do this:
...
3
votes
3answers
764 views
Importing 3954275 Insert statements into Oracle 10g
How do i import a script with 3954275 Lines of Insert Statements into a Oracle 10g. I can do it with sqlplus user/pass @ script.sql but this is dam slow (even worse the commit is at the end of this ...
3
votes
2answers
2k views
Is there a .Net interface to Oracle SQLPLUS?
I'm developing some automation to control the execution of SQL scripts. The scripts are run through SQLPLUS and contain PL/SQL calls in them (hence I can't run them through ODP.NET).
I was wondering ...
3
votes
5answers
16k views
SQL Plus change current directory
How does one change the current directory in SQL Plus under windows.
I am trying to write a script with several "@ filename" commands.
I know that one can open a script with the File --> Open ...
3
votes
2answers
7k views
How do I display the full content of LOB column in Oracle SQL*Plus?
When I try to display the contents of a LOB (large object) column in SQL*Plus, it is truncated. How do I display the whole thing?
2
votes
1answer
61 views
How can I copy from Oracle to Sybase using SQL*Plus?
I have an application that stores data in an Oracle database. I want to copy selected rows from a table in this database to a table in a Sybase database (archiving records). Can I do this directly ...