The ora-00905 tag has no wiki summary.
8
votes
2answers
8k views
SELECT INTO using Oracle
I'm trying to do a SELECT INTO using Oracle. My query is:
SELECT * INTO new_table FROM old_table;
But I get the following error:
SQL Error: ORA-00905: missing keyword
00905. 00000 - "missing ...
2
votes
3answers
344 views
Getting ORA-00905 error when trying to add a foreign key
I'm trying to perform the following statement into oracle:
alter table COMENTARIO
add constraint FK_COMENTARIO_DI foreign key (DI_ID)
references DATO_DE_INTERES (DI_ID) ON UPDATE CASCADE ON DELETE ...
1
vote
1answer
18 views
Multiple Insert statement failing ORA-00905: missing keyword error
I am using the below SQL script to insert few records into a new table that I created using create statement. But I am getting the following error
ORA-00905: missing keyword
Below is the script ...
1
vote
1answer
467 views
how to find length of a Long Column in a table
I have a LONG column named FileSize in a table called Files.
To achieve the objective, I did the following :
I wrote this PL/SQL script to find the size
declare
long_var LONG:=0;
begin
...
1
vote
2answers
2k views
SQL Oracle LEFT JOIN and SUBQUERY error: ORA-00905: missing keyword
Asking for your help on this Oracle query. It's giving me the error 2 "ORA-00905: missing keyword". It was working fine before I added the LEFT JOIN statement. Obviously it won't deliver the ...
1
vote
4answers
10k views
Oracle error : ORA-00905: Missing keyword
Excuting the line of SQL:
SELECT * INTO assignment_20081120 FROM assignment ;
against a database in oracle to back up a table called assignment gives me the following ORACLE error:
ORA-00905: ...
0
votes
1answer
644 views
Using the Oracle “at time zone” function in sql - problem and solution
I have a table with a date column that I know is stored in GMT. I have a procedure that accepts a date input and an account ID. The procedure:
1) gets the account ID timezone (stored in table ...
0
votes
2answers
59 views
Problem with an SQL statement
I'm having a problem with an SQL statement.
I want to activate a "ON UPDATE CASCADE" behavior for a foreign key in a table with this statement :
ALTER TABLE "DB"."RECORD" ADD CONSTRAINT ...
0
votes
3answers
238 views
ORA-00905: Trouble converting Mysql/MMSQL syntax to oracle syntax
Hi guys i'm having trouble running the below code on an Oracle DB not too sure why - getting ORA-905 error - missing keyword
This works fine on MSSQL and MYSQL.
Any indication as to how to fix will ...
0
votes
3answers
170 views
how to get this order by working in oracle pl/sql
ORDER BY CASE
WHEN v_SORT_TYPE = 'ASC' THEN
CASE
WHEN v_SORT_ORDER = 'lname' THEN CAST(lname AS VARCHAR2(45)) || ',' || ROWNUM
WHEN v_SORT_ORDER = 'code' THEN ...
0
votes
1answer
823 views
missing keyword error
Hi I am getting this error when trying to create this table. Can you please tell me how I can use on update cascade and on delete set null constraints.
SQL> create table emp3
2 (
3 Fname ...