SQL command not properly ended. Cause: You tried to execute an SQL statement with an inappropriate clause.
16
votes
4answers
13k views
Oracle - Update statement with inner join
I have a query which works fine in MySQL, I'm trying to get it working on oracle but get the following error
SQL Error: ORA-00933: SQL command not properly ended
00933. 00000 - "SQL command not ...
3
votes
2answers
381 views
ORA-00933: SQL command not properly ended
i try to run the follow:
select *
from tax.tax_payer@reis tp
left outer join re_right@reis r on (tp.tin = r.tin or tp.tin = r.tin_a1 or tp.tin = r.tin_a2)
where (r.right_status = -1 or r.right_status ...
3
votes
3answers
3k views
Getting inserted ID after INSERT … SELECT on Oracle
This SQL statement works if I run it from my Oracle client (SQL Developer):
insert into Person (Name) select 'Bob' from dual
It also works if I issue it via Spring JDBC, without using a KeyHolder:
...
2
votes
1answer
79 views
Need help with error in Oracle SQL query
this is the query:
SELECT DISTINCT pprom.pk
FROM
(
SELECT
item_t0.SourcePK as pk
FROM
links item_t0
WHERE (? = item_t0.TargetPK AND item_t0.SourcePK in (?,?))
AND ...
2
votes
3answers
461 views
ORA-00933: SQL command not properly ended in subquery with join
It's been a while for me since the last time I did Oracle SQL, hope someone can tell me why I get a 933 on:
SELECT TRIM(A.ACCOUNTNUMBER) AS INDBDebnmbr
, TRIM(A.VOUCHER) AS INinvoicenmbr
, A.DATE_ ...
2
votes
3answers
359 views
Update SQL with two tables in Oracle
I have a sql like this
UPDATE A
SET A.TEMSILCI_KOD = 4
FROM S_MUSTERI A, S_TEKLIF B
WHERE A.TEMSILCI_KOD = 9
AND B.BAYI_KOD = 17
AND A.HESAP_NO = B.HESAP_NO
But i getting an error like this
Error ...
2
votes
1answer
178 views
Oracle insert from function
I am converting SQL Server stored procedures to Oracle. In SQL Server you can insert into a table from a function call.
Here is the SQL Server:
INSERT INTO t_tmpl( rel_class_code, rel_side, ...
2
votes
3answers
161 views
Update query runs in SQL Server but not in Oracle
I need this update query to run on both SQL Server and Oracle. Our Oracle version is 10.2 if that matters. When I run the query in Oracle I get "ERROR ORA-00933: SQL command not properly ended". What ...
2
votes
2answers
257 views
Oracle Synonyms issue
My Scenario:
Schema name: schema1
Package name: pkg_system
procedure name: proc1
Now I am trying to create a synonyms for my proc1 as below
CREATE PUBLIC SYNONYM call_proc FOR ...
1
vote
3answers
192 views
SQL Update a table based on join with anther table
I am trying to update a table by joining the values with another table.
Here's my query so far.
UPDATE LOGIN SET LOGIN.DISABLED_IND = 'N', LOGIN.DREASON = 'Test'
FROM CONTACT
...
1
vote
2answers
217 views
pl-sql how to perfom a simple max(Date) function
hello
i am new to oracle db , how can i simply ask for the max date?
FUNCTION get_max_date_rec(
i_value_date IN vat.value_date%TYPE := app_utilities_q.server_sys_date )
...
1
vote
3answers
184 views
Help with ORA-00933: SQL Command nor properly ended
If I run the following SQL using Oracle's SQL Developer.
select payee_id, to_char(check_date,'d') as DOW,
(cmcl_bank_cleared - check_date) as DateDiff from AP_Master
where (cmcl_bank_cleared is ...
1
vote
3answers
328 views
oracle trigger error
I have two tables, tableA and tableB. I want to set a trigger. Once an insert happens in tableA, it may trigger some events in tableB.
The two tables are as follows, for example,
tableA columns: ...
1
vote
3answers
671 views
how to modify an existing check constraint?
Is there any way to modify an existing check constraint on a table
other than dropping and re-creating it?
create table t ( n number);
ora10g> Tabelle wurde erstellt.
ora10g> alter table t ...
1
vote
4answers
625 views
ORA-00933: SQL command not properly ended
I'm getting this error in Oracle:
ORA-00933: SQL command not properly ended
for
DROP SEQUENCE IF EXISTS ownername.seq_name;
Why am I seeing this?
1
vote
2answers
317 views
Insert multiple rows in Oracle using VB6
I am trying to insert multiple rows in a table using BeginTrans...CommitTrans.
Below is code snippet:
For i = 1 To 5
SQL = SQL & "Insert into TestTable(Field1,Field2,Field3) Values ('Col" ...
1
vote
3answers
1k views
Why does this HQL delete fail, when an HQL select with same terms works?
Why does the following HQL query fail?
string hql = @"delete MyLog log
where
log.UtcTimestamp < :threshold and
log.Configuration.Application ...
1
vote
1answer
97 views
SQL Update Using From
I know this is a contrived example so please do not jump all over me for the uselessness of the code. This is an issue in more complex chunk of code but I wanted to isolate the I am having.
The error ...
1
vote
3answers
597 views
ORA-00933: SQL command not properly ended (in simple insert statement)
The following simple statement:
INSERT INTO mydb.inventory (itemID) VALUES (:itemID) WHERE playerID = :ID;
Generates the following error:
ORA-00933: SQL command not properly ended
I have tried ...
1
vote
2answers
5k views
PLS-00103: Encountered the symbol “end-of-file” in simple update block
The following Oracle statement:
DECLARE ID NUMBER;
BEGIN
UPDATE myusername.terrainMap
SET playerID = :playerID,tileLayout = :tileLayout
WHERE ID = :ID
END;
Gives me the following error:
...
1
vote
1answer
292 views
Determining an Oracle SQL MERGE statement result
Follow up to this question
This (similar version from old link) works in SQL Server 2008, however, Oracle is giving me trouble:
MERGE INTO wdm_test
USING ( select '10000000000000000000000000000000' ...
1
vote
1answer
536 views
Oracle sql: using bind variable for dates
Here is a simple working query without bind variables:
select * from table1 where time_stamp > sysdate - INTERVAL '1' day;
where time_stamp is of type DATE.
I should be able to input any number of ...
1
vote
1answer
2k views
Update with self-join
I want to update a table to indicate that some rows are parents of others, so I added a "parentid" column to the table. The following query finds all the parents:
SELECT ca1.id, ca2.id
FROM ...
1
vote
1answer
213 views
Oracle syntax error
I got the following error in Oracle:
SELECT * FROM abcd WHERE name LIKE 'a%' LIMIT 10
*
ERROR at line 1:
ORA-00933: SQL command not properly ended
What is ...
1
vote
4answers
519 views
solution for ORA-00933
I'm tring to use join but facing this issue. I've pasted my query
select count(*) from table_a inner
join table_b on table_a.number = table_b.number
left outer join ...
1
vote
1answer
3k views
Modify unique constraint in Oracle
I need to update an existing constraint in Oracle database to add a new column there.
ALTER TABLE MY_PARTNER_DETAILS MODIFY CONSTRAINT UQ_MY_PARTNER_DETAILS ...
1
vote
3answers
5k views
ora-00933:SQL command not properly ended
I have the following code:
begin
for i in 1..2 loop
insert into dba_xy.despatch
select desp_id_seq.nextval,
dbms_random.string('U',5),
trunc(dbms_random.value(0000,9999)),
prod_id from ...
1
vote
3answers
1k views
xml to oracle DB table : encountering problems
I have a sample xml file created using Editplus( in windows).
< ?xml version="1.0" encoding="UTF-8" ?>
< badges >
< row UserId="3714" Name="Teacher" ...
1
vote
2answers
760 views
How to see the actual query executed by an Oracle report containing an error
Like most Oracle Reports in O*Financials, the query is made up of dynamic parts depending on the parameters entered.
When I run the concurrent request the log file contains an obscure error:
...
1
vote
6answers
3k views
Why does my query produce error “ORA-00933: SQL command not properly ended”?
My query:
CREATE VIEW cambiodatos AS
SELECT
a.last_name||','||a.first_name AS "Nombre",
a.salary AS "Salario",
b.name AS "Nombre Departamento",
c.name AS "Nombre de Region"
FROM
...
0
votes
0answers
165 views
Nagios oracle check ORA-00933: SQL command not properly ended
I am attempting to using one of many checks that are designed to check oracle db. I chose this one because it seemed pretty flexible as you are able to feed some SQL statements into it with a flag.
...
0
votes
4answers
127 views
SQL command not properly ended
SELECT /*+ PARALLEL(aae,4) */ DISTINCT nvl(aae.voucher_group_id,-1) voucher_group_id,
aae.nominal_transaction_amount unit_price,
...
0
votes
1answer
342 views
Executing PL/SQL Begin/End procedure from Oracle JDBC thin driver
I am trying to create Oracle PL/SQL procedures and execute them via Oracle JDBC (thin driver). Here is the full PL/SQL script:
begin
for i in (select owner, constraint_name, table_name from ...
0
votes
1answer
315 views
Update XMLTYPE in Oracle table with values from it's fields
I have an existing table in an Oracle 10gR2 that I added a XMLTYPE column to it. Now, I need to fill this field with a XML that is composed with a mixture of values from the fields of each row, but I ...
0
votes
2answers
196 views
beginner sql question pt.2 error ora-00933 SQL command not properly ended
I have to update my tables for my assignment in DBMS. Can't figure out why I get this error.
UPDATE Customers
SET CreditLimit = CreditLimit * 1.25
FROM(SELECT *
FROM Orders
...
0
votes
2answers
1k views
Error(2,7): PLS-00428: an INTO clause is expected in this SELECT statement
I'm trying to create this trigger and getting the following compiler errors:
create or replace
TRIGGER RESTAR_PLAZAS
AFTER INSERT ON PLAN_VUELO
BEGIN
SELECT F.NRO_VUELO, M.CAPACIDAD, M.CAPACIDAD - ...
0
votes
3answers
2k views
Oracle : receiving ORA-06550 and PLS-00905
i have a holiday table which contains the data are
HOLIDAYDA DESCRIPTION
--------- --------------------
19-JAN-11 to
17-JAN-11 to
10-JAN-11 new day
Now I want the first business day ...
0
votes
1answer
1k views
Is it possible to make a recursive SQL query - with HP Quality Center?
This question has already been asked in stackoverflow and elsewhere:
Is it possible to make a recursive SQL query ?
Requêtes récursives avec les CTE - Exemples avec SQLServer 2003
But I would like ...
0
votes
1answer
141 views
my query produces error “ORA-00933: SQL command not properly ended” in C++
Here is my query
csQuery.Format (_T ("INSERT INTO EFFECTS
(EFFECT_NM,EFFECT_VALUE_NUM,EFFECT_DIR_NM,PROJECT_ID_SQ)
SELECT '%s',%f,'%s',STACK_GAP.PROJECT_ID_SQ
where ...
0
votes
1answer
343 views
how to return a dynamic result set in Oracle function
I found a string tokenizer query on the net and packaged it into the below function, which return the dynamic set of tokens. The function compiles successfully but somehow I get the error "ORA-00933: ...
0
votes
1answer
273 views
PL/SQL: ORA-00933 command not properly ended
hello Im trying this query:
DECLARE
v_week NUMBER;
BEGIN
SELECT WEEK FROM WEEKDESTINATION INTO (v_week)
WHERE STARTDATE BETWEEN '02-JAN-2010'AND '09-JAN-2010';
END;
but it throws the following ...
0
votes
1answer
285 views
Oracle update procedure issue
I want to update the following procedure in the Oracle table, but it is throwing the error:
CREATE OR REPLACE PROCEDURE update_keywords (aKEYWORD IN VARCHAR2, aCOUNT IN NUMBER)
AS BEGIN
update ...
0
votes
1answer
151 views
How to handle xpath in SQL query while programming in Java
I am trying to execute the SQL statement from my java application
Due website restriction on url I have replaced http=htp for this post.
SELECT DISTINCT(DID)
FROM (SELECT e_id DID,
...
0
votes
5answers
2k views
SQL Inner join on select statements
I am trying to make an inner join on a select statement like this:
select *
from (select* from bars where rownum <= 10 )as tab1
inner join (select * from bars where rownum <= 10 )as tab2
on ...
0
votes
2answers
88 views
cursor giving error
hi we are trying to execute following script we
are getting errors as
ERROR at line 1:
ORA-20000: Unknown Exception Raised: -933 ORA-00933: SQL command not properly
ended
ORA-06512: at line 23
...
0
votes
2answers
79 views
IF in WITH structure
Could you tell what is the problem with this code. It gets error Compilation errors for
Error:
PL/SQL: ORA-00933: SQL command not properly ended
Text:
IF iCnt > 0 THEN
WITH S600 AS (
...
0
votes
9answers
13k views
ORA-00933: SQL command not properly ended
I'm using OLEDB provider for ADO.Net connecting to an Oracle database. In my loop, I am doing an insert:
insert into ps_tl_compleave_tbl values('2626899', 0, TO_DATE('01/01/2002', 'MM/DD/YYYY'), ...
-1
votes
1answer
667 views
error ORA-06550 ORA-00933
I have a sales table:
Name Null? Type
SALE_ID NOT NULL NUMBER(4)
SALE_DATE DATE
NO_OF_PRODS NUMBER(4)
PROD_ID NOT NULL ...
-3
votes
2answers
81 views
Oracle SQL Developer UPDATE error: SQL Error: ORA-00933: SQL command not properly ended [closed]
Possible Duplicate:
How to UPDATE one column using another column in another table? SQL Error: ORA-00933: SQL command not properly ended
I have tried everything I can think of but couldn't ...
-4
votes
3answers
379 views
SQL Inner join on select statements
I am trying to make an inner join on a select statement like this:
select *
from (select* from bars where rownum <= 10 )as tab1
inner join (select * from bars where rownum <= 10 )as tab2
on ...