Tagged Questions
The ora-00936 tag has no wiki summary.
11
votes
6answers
389 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 ...
2
votes
1answer
75 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
4answers
175 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
2answers
180 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
170 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
1k views
oracle plsql select pivot without dynamic sql to group by
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
...
1
vote
1answer
97 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 ...
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 ...
1
vote
3answers
2k 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 ...
1
vote
3answers
7k 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
1answer
132 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 ...
0
votes
1answer
329 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 ...
0
votes
2answers
278 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
223 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 ...
0
votes
4answers
103 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 ...
0
votes
2answers
15k 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 ...