ORA-00936: missing expression
0
votes
1answer
529 views
Getting error ORA-00936: missing expression
When I trying the below SQL I am getting the error ORA-00936: missing expression. Please help me on this, I want distinct on those to columns in Oracle SQL
SELECT rr.RPT_QUE_I,
DISTINCT ...
0
votes
1answer
273 views
PL/SQL Cursor ORA-00936 Missing Expression
Can anyone help me out with this:
CURSOR csr(start IN NUMBER, finish IN NUMBER, sort IN VARCHAR2, search IN VARCHAR2) IS
SELECT id, text, code, name
FROM (SELECT rownum r,
id,
...
0
votes
1answer
739 views
How to resolve ORA 00936 Missing Expression Error?
select /*+USE_HASH( a b ) */ to_char(date, 'MM/DD/YYYY HH24:MI:SS') as LABEL,
ltrim(rtrim(substr(oled, 9, 16))) as VALUE,
from rrfh a, rrf b,
where ltrim(rtrim(substr(oled, 1, 9))) = 'stata kish'
and ...
0
votes
1answer
2k views
java.sql.SQLException: ORA-00936: missing expression
Below I am creating table.
public static final String CREATE_SQL = "CREATE TABLE " +DATABASE_TABLE +
"(ID number(10,0), " +
" CGUID VARCHAR(255), " +
" PGUID ...
1
vote
2answers
5k views
Syntax error: missing expression (ORA-00936)
I have 2 tables, Facilities and Services.
CREATE TABLE Facilities (
facility_id NUMBER(2) NOT NULL,
facility_name VARCHAR2(20) NOT NULL,
CONSTRAINT pk_facil_id PRIMARY KEY (facility_id)
);
CREATE ...
1
vote
2answers
1k views
Oracle 10g : CASE within select statement (ORA-00936 error)
I am executing this statement in Oracle 10g.
select CASE Math WHEN BETWEEN 90 AND 100 THEN 'A'
WHEN BETWEEN 80 AND 90 THEN 'B'
WHEN BETWEEN 0 AND 80 ...
2
votes
1answer
117 views
problem in sql query
I have a query
INSERT INTO NEW_TABLE
(No_COUNT)
VALUES
(SELECT COUNT(*)
FROM TABLE2)
On executing in am getting
ORA-00936: missing expression error.
Any idea why above query showing error?
...
2
votes
2answers
743 views
ora 936 error while using left outer join + syntax
I have two tables:- T1 and T2
T1 has a column of Date Type: CT1
T2 has a column of Date Type: CT2
Note T1 and T2 has other columns too.
I want to left outer join T1 and T2 with join condition:- ...
1
vote
1answer
451 views
Oracle: query against value of user defined type
I have a user-defined type:
create or replace type my_message_type
as object (relatedid varchar2(50), payload clob);
I inserted a message programatically. SQL Developer renders the inserted ...
1
vote
1answer
494 views
Oracle join not working
I am trying get all IFSC codes and details (bank unique code) from my bank master which starts with the first 4 characters of entered IFSC code. I have the bank master table which includes IFSC code(4 ...
1
vote
2answers
3k views
oracle plsql select pivot without dynamic sql to group by [closed]
To whom it may respond to,
We would like to use SELECT function with PIVOT option at a 11g r2 Oracle DBMS.
Our query is like :
select * from
(SELECT o.ship_to_customer_no, ol.item_no,ol.amount
...
0
votes
1answer
701 views
Case sensitivity isssue with Oracle Sql Developer ver - 2.1.1.64
I just started using the "Oracle Sql Developer" tool and it seems to be case sensitive when creating and calling tables. I was always under the assumption that Oracle as database was case ...
1
vote
1answer
165 views
Oracle: Handling a field named COMMENT
I have a table with a field named COMMENT, which appears to be a reserved word.
Using SQLDeveloper, if I try:
select
[COMMENT],
another_field
FROM table_created_by_idiot_developer
I get
SQL ...
0
votes
2answers
583 views
VBScript not executing sql statment properly
I write you this time because a VBScript that one of the application my company uses to retrieve information from an Oracle database does not seem to be working properly. Here are the facts:
There's ...
0
votes
2answers
387 views
Oracle SQL Error: How to Debug this issue
Using:
select name, id
from "TEST"
where id :2
AND name :1
order by id desc
I am getting ORA: 00904 "TEST"."NAME": invalid identifier error but the wierd part is that I have ...
3
votes
4answers
559 views
Oracle: Is there a way to get recent SQL syntax errors?
We are seeing a lot of "ORA-00936: missing expression" errors in our application log. Is there a way in Oracle to determine what statement(s) are failing?
I tried querying v$sql, but these statements ...
1
vote
0answers
2k views
Xcode is not calling asp.net webservice
I have oracle database and using webservice i want to insert some records in to it
So i created webservice in asp.net as follows
public bool PickPill(string Me_id, string Mem_device_id, string ...
11
votes
6answers
1k views
Why is selecting specified columns, and all, wrong in Oracle SQL?
Say I have a select statement that goes..
select * from animals
That gives a a query result of all the columns in the table.
Now, if the 42nd column of the table animals is is_parent, and I want ...
3
votes
3answers
24k views
'NOT LIKE' in an SQL query
Why does this simple query return 'ORA-00936: missing expression' (the database is Oracle as you can tell):
SELECT * FROM transactions WHERE id NOT LIKE '1%' AND NOT LIKE '2%'
I feel silly, but ...
0
votes
4answers
139 views
what is the issue with following sql query
i get error
insert into dmi_user.fct_sales_summary_cmp values SELECT A.bio_id
*
ERROR at line 1:
ORA-00936: missing expression
on running ...
1
vote
3answers
16k views
How to pass parameter values to a T-SQL query
I am using the following T-SQL query in SQL server 2005 (Management Studio IDE):
DECLARE @id int;
DECLARE @countVal int;
DECLARE @sql nvarchar(max);
SET @id = 1000;
SET @sql = 'SELECT COUNT(*) FROM ...
0
votes
2answers
33k views
What could cause an ORA-00936 - Missing Expression with the following sql?
We're seeing the error message ORA-00936 Missing Expression for the following SQL:
Note that this is just a cut-down version of a much bigger SQL so rewriting it to a inner join or similar is not ...