SQL*Plus is a command-line interface for the Oracle RDBMS product. SQL*Plus questions should probably be also tagged with **oracle**

learn more… | top users | synonyms

0
votes
1answer
30 views

Failing to create and execute PL/SQL procedure from SQL*Plus

create or replace package XXX_MWA_LOV_TEST AS TYPE t_ref_csr IS REF CURSOR; PROCEDURE XXX_USERS_LOV (p_user_name IN VARCHAR2,x_users OUT NOCOPY t_ref_csr); end XXX_MWA_LOV_TEST; How to run ...
0
votes
0answers
53 views

Execute empty nested sql script

I have a SQL*Plus script that contains several nested scipts, following this schema: @Script1; @Script2; @Script3; My problem is some of the nested script could be empty,they exist but are blank ...
0
votes
1answer
11 views

Greatest values in a column for multiple categories — oracle11g

Here is the LOCATION1 table: Loc_id Loc_name Loc_state Loc_area 1 ABC IA 600 2 DEF FL 700 3 GHI FL ...
0
votes
1answer
17 views

How to rxecute an ad-hoc stored procudure in UNIX shell script? Also is it possible to have IF-ELSE/WHILE LOOPS in sql-plus?

I have a three part question which arises out of my following requirement. I have been asked to automate some stored procedures using shell scripts. Earlier the nature of the stored proc(not the ...
1
vote
3answers
44 views

SQL*Plus how to accept text variable from prompt?

Im very beginner in psql and i have a question. Here is the code: SET serveroutput ON ACCEPT myVariable PROMPT "Input value: "; BEGIN dbms_output.put_line('My input variable is: ...
0
votes
1answer
9 views

sqlplus export vis cmd

I'm trying to export some data to a CSV from sql plus via cmd line but keep getting this error: SP2-0042 unknown command " S" - rest of line ignored. I'm running it like this sqlplus ...
0
votes
0answers
23 views

Appending data from one program to the other using batch commands [migrated]

I have a database which sometimes crashes. I want to create a batch program that does this: Runs SQL*Plus. Makes SQL*Plus run a script from a plain text file. Gets the results back to the main batch ...
0
votes
1answer
23 views

Converting query using not exists

I came up with the following query using not in and in. I need to convert it to the one that uses not exists. SELECT T_DATE, T_DEPTIME FROM TOUR WHERE T_ID NOT IN ( SELECT T_ID FROM RESERVATION ...
0
votes
1answer
63 views

Using UPDATE cursor in PL/SQL

As far as I can see, I can make an UPDATE in PL/SQL without using a CURSOR. For example: CREATE OR REPLACE PROCEDURE update_my_table (id NUMBER) AS ... BEGIN ... UPDATE my_table SET ...
2
votes
1answer
24 views

Emacs: How can I get M-x sql-oracle to open a new buffer

I was using Emacs 21 and I occasionally needed an sql prompt for different oracle schema's. In Emacs I could pretty easy rename a buffer enter M-x sql-oracle and a new SQL buffer would pop up. Now ...
0
votes
1answer
60 views

Bash - Error ORA-01017: invalid username/password; logon denied with array

i have a shell with an array in wich there is a list of tables of a oracle db. This is the array: ListTabs="" ListTabs=$ListTabs"T_Tab1\n" ListTabs=$ListTabs"T_Tab2\n" ListTabs=$ListTabs"T_Tab3" ...
0
votes
1answer
36 views

SQL Plus/Shell Script: Extra newline printed

Below is my variable and the value is being fetched from the query. subsno=`sqlplus -s user/pass@DB << EOL set heading off; SET FEEDBACK OFF; select CFR_SUBSCRIBER_NO from csm_future_request ...
0
votes
4answers
80 views

Oracle: dynamically select script

How do I run a script in SQLPlus whose pathname is passed in a string. Something like the following (fails): SET SERVEROUTPUT ON; DECLARE path VARCHAR2(128); BEGIN path := ...
0
votes
0answers
15 views

Sqlplus Query with shell_exec(); PHP command

I need to run a PL/SQL Query from a distant oracle server in order to create spool files and send it to my own server, using a php script. I firstly created a SH script called myscript.sh : ...
-4
votes
1answer
37 views

Writing SQL query ---

Can somebody help to rewrite this query. I am not sure whether we can achieve this result by writing query or we have to write a procedure for this. I need result from this query in two separate ...
2
votes
3answers
88 views

pass sqlplus value to shell variable

the below picture shows what gets returned when I run sqlplus in shell but when I run this from the "run" command: powershell.exe -noexit c:\sqltriggers\voicetrigger2.ps1 with voicetrigger2.ps1 ...
-2
votes
0answers
114 views

schedule a powershell script via windows task scheduler to run every hour

I want to write a powershell script that looks at a simple sqlplus query and if the result is greater than 0, runs a BAT file problem is, I don't have ANY knowledge on powershell or cmd coding and ...
0
votes
2answers
36 views

sqlplus print running statement

Is there any way where sqlplus can print what statement it executed. I mean I have some .sql files that I run in a bash script. I need to know when I read the log file which statement sqlplus ran. ...
0
votes
1answer
61 views

variable was unexpected at this time

I'm not very familiar with BAT files but I have a file that runs a sqlplus query, returns the row count, and if it is greater than 0, run another bat file. I feel like I'm almost there but I keep ...
0
votes
1answer
66 views

open sqlplus connection only once in while loop

I have 100 records. When I am running the code below, the SQL*Plus connection is opening many times utilizing 100% of CPU. Is there any way in which I could open SQL*Plus connection only once, i. e. ...
0
votes
1answer
51 views

PL SQL trigger using raise_application_error thows error.

I have a few things of code I need help debugging but I feel that if I can get one of them running i'll be able to get the rest(oh how i hope). create or replace trigger minimumwage before insert or ...
1
vote
1answer
33 views

Can I make SQL*Plus exit with an error on function compilation failure?

I've been working on an Oracle function that will be deployed in an automated fashion via SQL*Plus. Sometimes I make a mistake, and Oracle says: Warning: Function created with compilation errors. ...
-2
votes
1answer
19 views

how to know that update statement in sqlplus updated the tabel or not(from shell script)

I need to update a table with some where conditon. If update fails then I need to insert the same. I am using here document from a shell script to run sqlplus, please help me to find the way so I can ...
0
votes
2answers
75 views

SQLPLUS command line with DOS batch file

I want to create a batch file which will open the SQLPLUS [CLI] and will execute some stored sql file and will also store the output to text file. So I've created this batch file [which does not ...
-1
votes
1answer
40 views

Oracle DB sqlplus issue

I have a Oracle Server DB 11g Release 11.2.0.1.0 installed on my local pc. When i try to run the command select * from idc_geraet with sqldeveloper i get the expected result, but if i run the same ...
0
votes
2answers
71 views

ORA-00904: “pass”: invalid identifier

I have a project named 'Online Recruitment System'. There is problem in database connectivity. First I made table 'registration' and 'clogindetails' without using quotes in sqlplus. Then all data ...
0
votes
1answer
23 views

function bindParam() on a non-object

Not sure what I am missing, and I couldn't find any answer on other forums or google. ._. What am I suppose to add in the query? $STH->bindParam(1, $name); $STH->bindParam(2, $comment); $STH = ...
0
votes
0answers
60 views

Oracle insert records from one table to another using select

I want to move some records from one table to another using simple sql like below using SQL Script For example, I created a table 'A' with one column 'B' VARCHAR2(2000) and executed the below sql. ...
0
votes
1answer
45 views

Linesize Issue Oracle 11g Express

Having an issue getting the SET LINESIZE to work correctly in Oracle 11g Express. I set the linesize to anything from 100 to the max limit of 37000 odd but it's still not appearing correctly in the ...
0
votes
0answers
66 views

PL/SQL Developer Command Window executes host command asynchronously (unwanted)

(PL/SQL Developer 9.0.6 & Oracle Server 11.2.0.3) From a Command Window when using host command to shell out and execute something, the script does not wait for the return of the shell as it ...
0
votes
1answer
62 views

Can't connect to oracle DB using SQLPLUS on Ubuntu with (Easy Connect)

I am trying to connect to a corporate db using this connect format sqlplus user/pass@url:1521/dbname And I'm getting ORA-12514: TNS:listener does not currently know of service requested in connect ...
0
votes
1answer
44 views

errors in SQL Queries:invalid character

I am developing a database application with JDBC, Java and Oracle. I am getting errors in two queries, 1) Error at line 1: Invalid character Here I am getting error in first line, I want to check for ...
0
votes
1answer
56 views

sqlplus connection to 11g DB

Oracle 11g2 64-bit Database installed on windows server 2008. Oracle 6i Form Developer installed on windows server 2003. There is DB connection problem from client PC. I add my DB SID(orcl2008) in ...
2
votes
2answers
78 views

How can I reduce the width of column in Oracle (SQL Plus) with TIMESTAMP datatype?

In SQL Plus output it is taking up much more space than it needs and I'd like to reduce it from say 50 chars to 20.
0
votes
1answer
58 views

Is there a way to stop SQL*Plus exiting on Control-C?

I'm using SQL*Plus on Windows, and keep accidentally hitting Ctrl-C, which causes SQL*Plus to exit. Is there any way to prevent this? The best workaround I've found so far is to prepend the command ...
0
votes
1answer
54 views

Copying from one table to another using sql (sql*plus)

This is something pretty simply and I see there are many posts on the website but I cannot get it to work for me. Heres what I am trying to do: Copy from data from table "student". Student contains ...
0
votes
1answer
109 views

SQLPLUS Select a Column and Count in the same SELECT statement

I have this simple library checkout table created with the following columns and values inserted into it: insert into CHECKOUT (MemID, Cat#, DateChkOut, DateDue, DateRet) values (4, 'T 430.98 ...
0
votes
1answer
30 views

How would one go about creating a trigger to delete corresponding tuples from a separate table?

For example, you delete a row in one table, and it links to entries in a corresponding table. This trigger should delete the tuples from this second table (assumingly where their foreign keys match) ...
2
votes
2answers
84 views

SQL*Plus user input exception handling

I have one simple question. I have declared two variables in my code: v_n NUMBER(3) := &sv_n; v_m NUMBER(3) := &sv_m; How could I prevent user to input not a digit simbol? And raise an ...
0
votes
1answer
66 views

Oracle SQL: Transferring tables from one user to another

So I created a new user called temp, with a password temp. I have another user called Scott that is identified by tiger. There are three tables in that profile that I'd like to copy onto temp. So i ...
0
votes
1answer
57 views

cmd script with sqlplus not returning any results

I a cmd script that looks like this right now: for /f "delims=" %%a in ('sqlplus user/pass@OMP1 @CheckRowCount.SQL') do set rowcount=%%a if %ROWCOUNT% GTR 0 ( ...
1
vote
2answers
127 views

Export sqlplus query result to CSV with Export-CSV

I am running some queries in SQLPLUS inside Powershell 2.0 I am wanting to output the content of a table to csv using Export-CSV. It looks something like this. $query = "set hea off`n" $date1 = ...
0
votes
1answer
52 views

simple sqlplus script doesn't seem to work

When I type in: C:\>sqlplus user/pass@OMP1 @CheckRowCount.sql it connects but I don't see any results, in the .sql file I have this: SELECT COUNT(*) as "rowcount" FROM ...
1
vote
2answers
257 views

bat file to run sqlplus and then execute command based on result?

Can I have a BAT file run a SQLPlus command, and then based on the result, execute a CMD command, and then another SQLPlus command? I think it would look something like this CheckRowCount.SQL file ...
1
vote
0answers
73 views

How to install SQLPLUS on a windows 2008 machine [closed]

I am googling on this subject for many hours but have not been able to resolve this simple question. I want to install ONLY the sqlplus and oci client on my windows machine. The oracle server is ...
0
votes
1answer
169 views

How to set user password_life_time for only one user?

This statement: ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME 180; changes the password_life_time value for all users in my profile. But what if I need to change this value for only one user? ...
0
votes
0answers
88 views

sqlplus command not working [closed]

I am trying to install Oracle Application Express on Windows 7, that is why I need SQL*plus . However SQL*Plus cannot be defined in cmd. I am new to Oracle. What can I do in order to run SQL*Plus ?
0
votes
3answers
69 views

SQL Expression missing error

I am trying to select from a table with the average of columns from other tables from other tables; The schema is as follows. Students (sid, firstname, lastname, status, gpa, email) Enrollments ...
-2
votes
1answer
51 views

SQL AVG function: [closed]

What does AVG do with columns with NULL values if we compute AVG over that column? Does it compute the average by considering NULL as zeroes or it computes average by excluding null values? I can do ...
0
votes
0answers
60 views

“ORA-01031: insufficient privileges” while trying to access SQLPlus from CMD

So I have been trying to access my database from cmd (I run it as an administrator). I get an error while trying to do so. This is how it looks like: C:\Windows\system32>set ORACLE_SID = orcl ...

1 2 3 4 5 16