Links
Home
Oracle DBA Forum
Frequent Oracle Errors
TNS:could not resolve the connect identifier specified
Backtrace message unwound by exceptions
invalid identifier
PL/SQL compilation error
internal error
missing expression
table or view does not exist
end-of-file on communication channel
TNS:listener unknown in connect descriptor
insufficient privileges
PL/SQL: numeric or value error string
TNS:protocol adapter error
ORACLE not available
target host or object does not exist
invalid number
unable to allocate string bytes of shared memory
resource busy and acquire with NOWAIT specified
error occurred at recursive SQL level string
ORACLE initialization or shutdown in progress
archiver error. Connect internal only, until freed
snapshot too old
unable to extend temp segment by string in tablespace
Credential retrieval failed
missing or invalid option
invalid username/password; logon denied
unable to create INITIAL extent for segment
out of process memory when trying to allocate string bytes
shared memory realm does not exist
cannot insert NULL
TNS:unable to connect to destination
remote database not found'>ora-02019
exception encountered: core dump
inconsistent datatypes
no data found
TNS:operation timed out
PL/SQL: could not find program
existing state of packages has been discarded
maximum number of processes exceeded
error signaled in parallel query server
ORACLE instance terminated. Disconnection forced
TNS:packet writer failure
see ORA-12699
missing right parenthesis
name is already used by an existing object
cannot identify/lock data file
invalid file operation
quoted string not properly terminated
Basic sql

Basic sql

2004-11-09       - By Arnon, Yuval

Reply:     1     2     3     4     5     6  

You can try this if you still want to use the case statement

SELECT COUNT(*) FROM a
WHERE EXISTS (SELECT *=3D20
        FROM b
         WHERE a.unit_id =3D b.unit_id
         and a.op_year =3D b.op_year
         and extract(month from a.op_date) BETWEEN
          CASE
          WHEN b.qtr =3D 1 THEN 1
          WHEN b.qtr =3D 2 THEN 4=20
          WHEN b.qtr =3D 3 THEN 7=20
          WHEN b.qtr =3D 4 THEN 10=20
          END
         AND
          CASE
          WHEN b.qtr =3D 1 THEN 3
          WHEN b.qtr =3D 2 THEN 6
          WHEN b.qtr =3D 3 THEN 9
          WHEN b.qtr =3D 4 THEN 12
          END)

/

Yuval.

-- --Original Message-- --
From: oracle-l-bounce@(protected)
[mailto:oracle-l-bounce@(protected)] On Behalf Of Igor Neyman
Sent: Tuesday, November 09, 2004 4:31 PM
To: ChrisStephens@(protected); oracle-l@(protected)
Subject: RE: Basic sql

SELECT COUNT(*) FROM a
WHERE EXISTS (SELECT *
FROM b
   WHERE a.unit_id =3D b.unit_id
    and a.op_year =3D b.op_year
    and extract(month from a.op_date) BETWEEN (3*b.qtr - 2) and
3*b.qtr
/


Igor Neyman, OCP DBA
ineyman@(protected)



-- --Original Message-- --
From: oracle-l-bounce@(protected)
[mailto:oracle-l-bounce@(protected)] On Behalf Of Stephens, Chris
Sent: Tuesday, November 09, 2004 4:11 PM
To: oracle-l@(protected)
Subject: Basic sql

Well I 've had my coffee and I still can 't get this to work:

SELECT COUNT(*) FROM a
WHERE EXISTS (SELECT *=3D20
        FROM b
         WHERE a.unit_id =3D b.unit_id
         and a.op_year =3D b.op_year
         and extract(month from a.op_date) BETWEEN CASE
          WHEN b.qtr =3D 1 THEN 1 AND 3
          WHEN b.qtr =3D 2 THEN 4 AND 6
          WHEN b.qtr =3D 3 THEN7 AND 9
          WHEN b.qtr =3D 4 THEN 10 AND 12
          END)
/

I 've tried several variations of this (all that I can think of)i.e.
quotes and parenthesis in all kinds of places, case to build entire last
filter instead of just the '1 and 3 ' pieces. and it always returns:

ERROR at line 7:
ORA-00905 (See ORA-00905.ora-code.com): missing keyword

9.2 on windows

What simple thing am I missing now?

Thank you for the extra eyes!
--
http://www.freelists.org/webpage/oracle-l


--
http://www.freelists.org/webpage/oracle-l

This transmission may contain information that is privileged, =
confidential and exempt from disclosure under applicable law. If you, =
oracle-l@(protected), are not the intended recipient, you are hereby =
notified that any disclosure, copying, distribution, or use of the =
information contained herein (including any reliance thereon) is =
STRICTLY PROHIBITED. If you received this transmission in error, please =
immediately contact the sender and destroy the material in its entirety, =
whether in electronic or hard copy format.


--
http://www.freelists.org/webpage/oracle-l