Tagged Questions
Invalid column name. Cause: You tried to execute an SQL statement that included an invalid column name or the column name is missing.
10
votes
3answers
5k views
Using an Alias in a WHERE clause
I have a query which is meant to show me any rows in table A which have not been updated recently enough. (Each row should be updated within 2 months after "month_no".):
SELECT A.identifier
, ...
6
votes
2answers
780 views
Oracle subquery does not see the variable from the outer block 2 levels up
I'd like to get in one query a post and the first comment associated with the post. Here is how I do it in PostgreSQL:
SELECT p.post_id,
(select * from
(select comment_body from comments where ...
4
votes
4answers
773 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 ...
3
votes
3answers
480 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:
...
3
votes
3answers
441 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 - ...
3
votes
4answers
176 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;
...
3
votes
3answers
2k 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 ...
3
votes
2answers
1k views
Sub-query problem on Oracle 10g
The following query works on Oracle 10.2.0.1.0 on windows,but doesn't work on Oracle 10.2.0.2.0 on Linux.
Error report:
SQL Error: ORA-00904: "T"."AUDIT_USECS": invalid identifier
00904. 00000 - ...
3
votes
2answers
2k views
Oracle JOIN USING + Subquery : ora-00904 string: invalid identifier
i m having a little syntax problem in my query (simplified) :
select *
from table1 t1
inner join table2 t2 using (pk1)
inner join table3 t3 using (pk2)
where not exists (select1 from table4 t4 where ...
3
votes
8answers
7k views
How to use BOOLEAN type in SELECT statement
I have a PL/SQL function with BOOLEAN in parameter:
function get_something(name in varchar2,
ignore_notfound in boolean)
This function is a part of 3rd party tool, I cannot ...
2
votes
4answers
730 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 /* !!! */
...
2
votes
1answer
256 views
Oracle date compare( invalid identifier)
I have this query:
SELECT TO_CHAR(SUB.CREATE_DT,'DD-MM-YYYY') as CREATE_DT,
SUB.ACCOUNT_NO,(SELECT TO_CHAR(CURRENT_DATE - INTERVAL '7' DAY, 'DD-MM-YYYY') FROM DUAL) AS NV
FROM ...
2
votes
5answers
714 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 ...
2
votes
3answers
127 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 ...
2
votes
1answer
314 views
There is a way to use a calculated field in the where clause?
There is a way to use a calculated field in the where clause ?
I want to do something like
SELECT a, b, a+b as TOTAL FROM (
select 7 as a, 8 as b FROM DUAL
UNION ALL
select 8 as a, 8 as b ...
2
votes
2answers
927 views
HOW TO SElect line number in TextBox Multiline
I have large text in System.Windows.Forms.TextBox control in my form (winforms), vs 2008.
I want find a text, and select the line number where I've found that text.
Sample,
I have fat big text, and ...
2
votes
3answers
2k views
Can I have a deferrable unique functional index in Oracle?
I'd like to create a deferrable unique functional index in Oracle 10g.
I know how to create a unique functional index:
create unique index LIST_ITEM_ENTRY_NO_UNIQ
on LIST_ITEM (case status when ...
1
vote
4answers
95 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)
...
1
vote
1answer
156 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, ...
1
vote
2answers
419 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
115 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 ...
1
vote
6answers
267 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 ...
1
vote
3answers
276 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
260 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
...
1
vote
2answers
91 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"
...
1
vote
3answers
2k 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
123 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
391 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 ...
1
vote
0answers
1k 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. ...
1
vote
2answers
1k 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").
...
1
vote
2answers
989 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.
...
1
vote
4answers
769 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" ...
1
vote
2answers
278 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
vote
2answers
103 views
Problem with trigger in oracle
I'm new in oracle and i don't know what is wrong with this trigger:
CREATE OR REPLACE TRIGGER "propuesta_casas"
BEFORE INSERT ON "PROPUESTA_TIENDA_BARRIO"
FOR EACH ROW
WHEN (new."CASASCAL" IS ...
1
vote
3answers
398 views
Upgrade Oracle database from 9.2.0.7 to 9.2.0.8
We are planning to upgrade from Oracle 9.2.0.7 to 9.2.0.8. Main reason of the proposed upgrade is to address the issue in relation to exception "terminated with error: ORA-00904: ...
1
vote
4answers
141 views
SQl count() help with a select statement
I'm using this code:
SELECT MACH_NO,
COUNT(MACH_NO) AS TOTAL_REPORTS
FROM MAINTENANCE_LOG
GROUP BY MACH_NO;
...to retrieve some data which gives:
MACH_NO TOTAL_REPORTS
...
1
vote
1answer
82 views
I can't make this query work with SUM function
This query gives an error:
select ep,
case
when ob is null and b2b_ob is null then 'a'
when ob is not null or b2b_ob is not null then 'b'
else null
end as type,
sum(b2b_d + b2b_t - ...
1
vote
3answers
226 views
What's wrong with this SQL query?
The following query returns ORA-00904 error: SATIS: Invalid identifier. When I remove the line HAVING satis > 0, it works. What should I do?
SELECT donem, bolge_adi, sehir_tasra "1=Ş, 2=T",
...
1
vote
4answers
290 views
I cannot calculate a division in my SQL code
The following code works without problems:
select donem, mekankodu, count(yayin_kodu) yc,
SUM(CASE WHEN iade =0 THEN 1 ELSE 0 END) yys
from
( select donem,
bayi_adi,
...
1
vote
1answer
144 views
what is wrong with this oracle query?
SELECT *
FROM (SELECT ROWNUM rnum,
query.*
FROM (WITH myQuery AS(
SELECT column_b
FROM table_a a
WHERE ...
1
vote
2answers
245 views
Error when trying to lowercase columns in SQL Plus query
OK, I am using SQL Plus and I am trying to view the table and one of the columns I was to view in lower case. This shold be very easy but for some reason it is not work. The code I am using is
...
1
vote
5answers
3k views
How to reuse dynamic columns in an Oracle SQL statement?
I try to reuse some columns that I calculate dynamically in Oracle SQL, something like
SELECT
A*2 AS P,
P+5 AS Q
FROM tablename
Where 'tablename' has a column called 'A', but no other ...
1
vote
4answers
1k views
In SQL, can I use a variable scoped outside a nested select within the nested select itself?
I'm trying to get the following SQL statement to work:
UPDATE myschema.tableA update_tableA
SET field_id =
( SELECT src.field_id
FROM myschema.srcTable src
INNER JOIN ...
1
vote
1answer
135 views
Why can't I reference a user defined type field when using nested queries?
So I have the following user defined type in my oracle database:
CREATE OR REPLACE TYPE METRIC_IMPERIAL_DISTANCE AS OBJECT
(
METERS_FEET INTEGER,
CENTIMETERS_INCHES INTEGER,
FRACTION NUMBER
)
...
0
votes
0answers
46 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
86 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 ...
0
votes
2answers
112 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 ...
0
votes
2answers
351 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) ...
0
votes
2answers
157 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 ...
0
votes
1answer
102 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 ...