Invalid column name. Cause: You tried to execute an SQL statement that included an invalid column name or the column name is missing.

learn more… | top users | synonyms

0
votes
1answer
38 views

ORA-00904: “CITYCODE”: invalid identifier in CREATE TABLE

So, I'm not very good with sql and am trying to jsut great two tables. one called CITY with PK of Citycode, and Warehouse, which uses Citycode as an FK. And I'm not surprised if even this is wrong. ...
0
votes
1answer
119 views

Return objects missing records in many to many using EF 5.0

Given the schema below, I'm trying to build an EF query that returns Contacts that are missing required Forms. Each Contact has a ContactType that is related to a collection of FormTypes. Every ...
0
votes
1answer
158 views

how to query a many to many for the absence of records using EF5

Assuming a pure many to many where the primary key is the composite of two foreign keys. For example "Employee Privileges" in Northwind has EmployeeID and PrivilegeID. This m2m obviously relates the ...
0
votes
3answers
155 views

dynamic sql errors in procedure

Why doesn't my dynamic sql procedure work? All I'm trying to do is show a simple column from a table. I get the following erros: ERROR at line 1: ORA-06550: line 1, column 7: PLS-00905: object ...
4
votes
1answer
196 views

Column aliases reference

This query breaks the number into its respected place like thousands, hundreds, fifties, etc. The problem is that I am unable to refer the column by its aliases name. In Oracle, I am getting this ...
2
votes
1answer
132 views

What is wrong with this merge statement?

I am relatively new to oracle and have written the merge statment below which produces an "ora-00904 error vwe_cpr_info.rin_per_id invalid identifier" message when I run it. I have checked and the ...
3
votes
2answers
3k views

ORA 00904 Error:Invalid Identifier

I have installed Oracle 10g in my virtual XP and created a table using create table reg1 ( fname varchar2(30), lname varchar2(30), addr varchar2(30), mail varchar2(30), occu varchar2(30), ...
1
vote
2answers
2k views

ORA-00904 'invalid identifier' error using 'MERGE INTO' and 'SELECT FROM dual' on a DATE column

I have the following PL/SQL stored procedure on an Oracle database: PROCEDURE MyProcedure ( p_id IN NUMBER , p_date IN DATE , p_num IN NUMBER) AS BEGIN MERGE INTO MY_TABLE mytable ...
0
votes
1answer
1k views

DBMS LOB.SUBSTR Throwing ORA-00904: Invalid Identifier Error

One of our cutomer is running the scripts in oracle sql developer to upgrade his database table structure, procudere & triggers etc. But while running the script, he is getting ORA-00904: Invalid ...
0
votes
2answers
411 views

Grails wrong alias causing error ORA-00904

I have three domain classes User, Employee and UserEmployee. class User { String username //more atributes omitted static hasMany = [ userEmployees : UserEmployee ] static mapping ...
0
votes
1answer
841 views

Access parent alias in subquery within a with clause using connect by in Oracle

I'm trying to recursively get some data using connect by, which for each row I need to know if in a different tree contains a specific item. So I have this [stripped down] query: select m.id, ...
1
vote
1answer
380 views

Synonym returning ORA-00904 error

I'm at my wits' end with this error. I have a view which uses a function contained in a package in another schema. I've created a synonym to said package, and on my local dev DB, the view compiles ...
0
votes
0answers
279 views

Oracle errors with Hibernate after Refactoring a EJB -ORA-0094

I have to refactor an EJB that uses an Oracle database and Hibernate. It's basically a case of adding a few more fields to the database, and refactoring methods in the EJB that utilise those fields. ...
0
votes
3answers
862 views

Oracle MERGE raise ORA-00904 error

I am using merge command to insert a non-exist record into table. When I use simple insert command it works fine. If I use merge system always alert ORA-00904: "T"."GROUP_COMPANY_ID" invalid ...
1
vote
3answers
2k views

“date” as a column name

I have a table called calendars. One of its columns is named 'date' When I want to select the date column it gives error ORA-01747 namely invalid table.column. select date from calendars I guess ...
1
vote
5answers
233 views

SQL Update with subsubquery

I'm having a problem with the following update query in Oracle 11g: update TABLE_A a set COL1 = (SELECT b.COL2 FROM (SELECT ROWNUM AS ROW_NUMBER, b.COL2 from TABLE_B b where COL3 = a.COL4) ...
0
votes
2answers
3k views

ORACLE: ORA-00904: : invalid identifier

I have created following select: select e.first_name, e.last_name, (select jobname_id from (select j.id, j.jobname_id, first_value(j.jobname_id) over (order by j.date_from desc) ...
1
vote
1answer
1k views

Oracle newbie error: ORA-00904 Invalid identifier when using “case when”

I'm getting an error in a query. This query is OK and returning data (the selects and rownums are for pagination): select * from (select a.*, rownum rnum from (select id_edition, id_document, name, ...
5
votes
4answers
11k views

Weird Oracle SQL “Invalid Identifier” error

Can anyone help me figure out why I get an error on cms.CRIME_ID: invalid identifier select c.criminal_id, c.first, c.last, cms.CRIME_ID, cc.crime_code, cc.fine_amount from criminals c join ...
0
votes
2answers
1k views

Is it possible to query a comma separated column for a specific value?

I have (and don't own, so I can't change) a table with a layout similar to this. ID | CATEGORIES --------------- 1 | c1 2 | c2,c3 3 | c3,c2 4 | c3 5 | c4,c8,c5,c100 I need to return the rows ...
4
votes
5answers
6k views

Using 'case expression column' in where clause

SELECT ename , job , CASE deptno WHEN 10 THEN 'ACCOUNTS' WHEN 20 THEN 'SALES' ELSE 'UNKNOWN' END AS department FROM emp /* !!! */ ...
1
vote
2answers
2k views

pl/sql - to_date not working with execute immediate parameter

i wanna be able to execute my below proc like so: exec procname('29-JAN-2011'); proc code is: PROCEDURE procname(pardate VARCHAR2) IS vardate DATE := to_date(pardate, 'DD-MON-YYYY'); SQLS ...
1
vote
1answer
256 views

Why won't this merge statement work?

I've spent the better part of the day trying to determine why a merge statement won't work and I'm starting to think the problem must be something a bit exotic. My database has dozens of PL/SQL ...
0
votes
1answer
275 views

Merge and match data in Oracle

I am trying to collect data from 2 separate schemas. Due to the complexity of a singular query that would obtain all of the data would crash the database server, I made separate tables and filled them ...
2
votes
6answers
6k views

Executing a Stored Procedure in Oracle

I have a stored procedure, on Toad for Oracle I am calling the procedure using SELECT FROM PKGName.ProcedureName(1,'10/10/2010','10/23/2010',7,7) FROM DUAL I have 3 output parameter on this ...
2
votes
1answer
778 views

Oracle date compare( invalid identifier)

I have this query: SELECT TO_CHAR(HON.CREATE_DT,'DD-MM-YYYY') as CREATE_DT, HON.ACCOUNT_NO,(SELECT TO_CHAR(CURRENT_DATE - INTERVAL '7' DAY, 'DD-MM-YYYY') FROM DUAL) AS NV FROM ...
0
votes
4answers
9k views

SQL query using a case statement within the group by fields

I have a complex query that joins different tables to get the count. There are a few fields to group by. Now, I want to add an additional field which needs a case statement. And this field also has to ...
0
votes
4answers
596 views

using subquery instead of the tablename

Table Meta: ------------------------------------- type tab_name new tab_news sports tab_sps Table tab_news ------ id Table tab_sps ...
4
votes
5answers
13k views

Why do I have ORA-00904 even when the column is present?

I see an error while executing hibernate sql query. java.sql.SQLException: ORA-00904: "table_name"."column_name": invalid identifier When I open up the table in sqldeveloper, the column is ...
1
vote
4answers
1k 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
2answers
569 views

Why do I keep getting this cursed SQL*Plus invalid identifier error?

I keep getting a invalid identifier exception when I try to run the below script: javax.servlet.ServletException: java.sql.SQLException: [Oracle][ODBC][Ora]ORA-00904: "CUSTID": invalid identifier ...
0
votes
3answers
2k views

Why am I getting: [Oracle][ODBC][Ora]ORA-00904: invalid identifier

Oracle keeps giving me an invalid identifier error when I clearly have identified the variable. //get parameters from the request String custID=request.getParameter("cust_ID"); String ...
1
vote
2answers
268 views

What is wrong with the following code?

select trigger_name from user_triggers where owner = 'WC'; WC is the schema name. The error I get is : ORA-00904: "OWNER": invalid identifier 00000 -"%s: invalid identifier" ...
-3
votes
3answers
342 views

Why does this trigger fail? It says invalid identifier

CREATE MATERIALIZED VIEW ORDERS_MV BUILD IMMEDIATE REFRESH COMPLETE ON DEMAND AS SELECT * FROM ORDERS; --------------------------------------- CREATE OR REPLACE TRIGGER update_ship_receive INSTEAD OF ...
4
votes
3answers
2k views

plsql oracle check in constraint error

Im getting this error: ORA-00904: "M": invalid identifier --> if I put ('M','F') //single quotation i got this error message: PLS-00103: Encountered the symbol "M" when expecting one of the following: ...
0
votes
2answers
681 views

Unable to update column in Oracle 10g table having the name “PURPOSE”

Trying to update an oracle 10g table using asp.net and the oracleclient connector Here is the sql syntax: UPDATE tableX set PURPOSE = 'T' where REQUEST_ID = '2543' This throws an error: ...
4
votes
3answers
2k views

Oracle SQL - Help using Case in a Select Statement

CREATE TABLE student_totalexp2 nologging compress AS SELECT /*+parallel(a,4)*/ DISTINCT a.member_sk, CASE WHEN b.end_date IS NULL THEN SYSDATE - ...
1
vote
3answers
6k views

Intermittent ORA-00904: : invalid identifier

Does anyone know what could be causing a fixed query (static final String) to work most of the time and then intermittently throw the following error: Inner cause: java.sql.SQLException: ...
1
vote
2answers
243 views

Optimising SQL statement to use query but need to reference column outside subquery somehow

Is there any way in Oracle within an SQL query to reference a column from within a subquery that is outside of it, or to achieve that effect even if via a different means? Everything I've read on the ...
1
vote
2answers
864 views

UPDATE record if present; else INSERT in Oracle

Is there any Oracle function that indicate the existence of a record, or any other useful technique to achieve this? EDIT: using the MERGE statement I did: MERGE INTO lims_min.mytab src USING ...
4
votes
1answer
4k views

How can I get “ORA-00904: : invalid identifier” from a valid package?

I have a procedure that is valid and has in it an insert..select statement. Now there is a case where execution of this procedure produces "ORA-00904: : invalid identifier" error from this statement. ...
0
votes
2answers
421 views

Returned ref cursor not supported

I'm trying to make a chart in a database dashboard reporting software(Logi Info). I've got a PL SQL package that returns a ref cursor with multiple values but it seems the Logi Info does not support ...
3
votes
2answers
5k views

Hibernate native SQL error

I am trying to execute sql native query using hibernate 3.3.2.GA. I have following query. session.createSQLQuery("SELECT {dept1.*}, {dept2.*} FROM Dept d1, Dept d2 WHERE d1.deptId = d2.deptId"). ...
2
votes
2answers
4k views

ORA-00904: : invalid identifier

I am trying to create a Table in Oracle and getting the error : ORA-00904: : invalid identifier Here is my command. I really can't see any problem in it. Please help me to identify the error. Thanks. ...
3
votes
4answers
348 views

Basic Oracle question

I am new to oracle. When I create a stored procedure using: CREATE OR REPLACE PROCEDURE PROCEDURE1 AS BEGIN SELECT FIRSTNAME, LASTNAME INTO FirstName,LastName FROM EMPLOYEE; ...
1
vote
4answers
4k views

Oracle SQL Previous Month query issue

So far I've got the following: SELECT TO_CHAR("HOL_DEPART_DATES"."DEPART_DATE", 'MM') as "Depart_Month", TO_CHAR(sysdate, 'mm')-1 as "Current_Month" FROM "HOL_DEPART_DATES" ...
2
votes
3answers
284 views

index on oracle 11g question

i have table (MEN) with 900,000 records. in this table i have field IP and Tdate. when i run query: select * from MEN where IP = '1.1.1.1' and Tdate = TO_DATE('07/04/2010', 'DD/MM/YYYY') it takes ...
1
vote
2answers
553 views

oracle 10g sql with clause compilation error

The compilation error says "mm" and "cc" is invalid identifier! with m as ( select instructor, count(*) as c from class group by instructor), mm as ( select max(m.c) as cc ...
-1
votes
2answers
138 views

Oracle SQL help

I posted on Friday (http://stackoverflow.com/questions/3997919/sql-multiple-count) and had a few responses. Having tried to implement them today, I keep getting the same error. My SQL code now ...
3
votes
3answers
10k views

Oracle show all employees with greater than average salary of their department

I am writing a query to find employees who earn greater than the average salary within their department. I need to display the employee ID, salary, department id, and average salary of that ...

1 2