Tagged Questions

Missing right parenthesis: a left parenthesis has been entered without a closing right parenthesis, or extra information was contained in the parentheses. All parentheses must be entered in pairs.

learn more… | top users | synonyms

5
votes
1answer
103 views

(Yet another) “Missing Right Parenthesis”

I am using 10g, and am trying to do some simple calculation and then save the result in a column. The actual tables have many more columns, but here are the what I am using in my query: CREATE TABLE ...
4
votes
3answers
295 views

In Oracle (pre-11.2): When using cast(collect(…)), how do I order the result?

When using cast(collect(...)), how do I order the result? I have a function called GetStringForTable, defined like this: FUNCTION GetStringForTable(vTable in TVarCharTable, vDelimeter in varchar ...
4
votes
2answers
1k views

Why does Oracle think I'm missing a right parenthesis?

In Oracle 10i, I'm running the following command: ALTER TABLE jnrvwchnglst ADD ( jnrvwchnglst_userid NUMBER(10) NOT NULL DEFAULT 1 ) Yes jnrvwchnglst is an existing table and no ...
3
votes
2answers
101 views

ORA-00907 when trying to create a CHECK constraint

I am trying to create a check contraint on a table by executing the following SQL statement: alter table "ApplicationConfiguration" add constraint APPLICATIONCONFIGURATION_CK1 CHECK (ValueType IN ...
3
votes
1answer
158 views

Oracle: Use of notational parameters which calling functions in insert statements not allowed?

Why does Oracle 10 R2 not allow use of notational parameters while calling functions in insert statements ? In my app, I'm calling a function in an insert statement. If use notational method of ...
2
votes
1answer
83 views

ORA-00907 when trying to create a CHECK constraint

I need your help with this error: ORA-00907 on Check CONSTRAINT Query: CREATE TABLE S_NEWS.T_UTILISATEUR_USR ( USR_ID INTEGER NOT NULL PRIMARY KEY, USR_MAIL ...
2
votes
5answers
159 views

Problem wih a line of code

Greetings, I am having problems with a line of code. I am trying to create a count function for a view that I created. I have done this a bunch of different ways but below is the format that I have ...
1
vote
1answer
78 views

Oracle query getting ORA-00907: missing right parenthesis

I've read through the other missing right parenthesis questions and haven't found an answer to my problem. I assume it is a syntax error cutting things off before the end (I'm not really an Oracle ...
1
vote
2answers
335 views

Oracle error - ORA-00907: missing right parenthesis

I'm scratching my head over this Oracle error. The following query works perfectly: SELECT V.PROJECTID, (SELECT WM_CONCAT(DISTINCT NAME) FROM TPM_TRAININGPLAN JOIN TPM_DELIVERYMETHODS ...
1
vote
1answer
219 views

ORA-00907 when dynamically creating a view in PL/SQL and using a CLOB

This is one of those situations where you get an unhelpful error message back from Oracle. My situation is as follows: I'm dynamically creating a view in PL/SQL. I build a string and use EXECUTE ...
1
vote
2answers
462 views

Foreign Keys and Primary Keys at the same time

I am trying to create table (orderdetails2); the table has two FKs and a PKs on the two FK columns. Here is my code: Version 1 create table OrderDetails2 ( PFOrder_ID Number(3) FOREIGN KEY ...
1
vote
3answers
512 views

ORA-00907 while trying to create a table with automatic column

I'm attempting to create a table with an automatic column, the value of which is computed using a function I've defined. However, when I try to create the table I keep getting ora-00907: Missing right ...
1
vote
2answers
331 views

how to do union of the following two queries

Am trying to do the union of the results of two queries. But I'm getting the following error: Error at Command Line:9 Column:81 Error report: SQL Error: ORA-00907: missing right parenthesis 00907. ...
1
vote
5answers
405 views

Why does this table-creation script give me errors?

CREATE TABLE DEPARTMENTS ( dept_num NUMBER (8) dept_name VARCHAR2 (20) NOT NULL, dept_loc ...
1
vote
4answers
374 views

Oracle Throwing SQL Error when creating a View

I'm trying to create a view in an Oracle database, but keep getting an ORA-00907 error (missing right parenthesis). My SQL is as below: CREATE VIEW my_view AS ( SELECT ...
0
votes
2answers
79 views

ORA-00907 Missing right Parenthesis issue - select with order by inside insert query

I am trying to do insert to a table and it uses one select statement for one column. Below is the illustration of my query. INSERT INTO MY_TBL (MY_COL1, MY_COL2) VALUES ( (SELECT DATA FROM FIR_TABL ...
0
votes
2answers
96 views

ORA-00907 Error when using Analytic Function in a Query (PS/Query, Peopletools 8.51.12)

Query's throwing an ORA-00907 Error when I try to paste a list of values into a criteria. Background: I'm not a developer, I'm just an end user that's studied enough to where I can write queries ...
0
votes
1answer
137 views

ORA-00907: missing right parenthesis

I'm getting the error " ORA-00907: missing right parenthesis" but I've checked and all the parenthesis are there, so I'm stumped. My query is SELECT SUM(score) as score, facebook_id, ...
0
votes
1answer
110 views

Oracle TIMESTAMP type

When I choose DESC tablename, I see for some columns TIMESTAMP(3)(11). The 3 is the fractional seconds precision. What is the 11, and how can I define a column like this? ALTER TABLE name ADD col ...
0
votes
1answer
427 views

ORA-00907: missing right parenthesis

CREATE TABLE Persons ( P_Id int NOT NULL, LastName varchar(255) NOT NULL, FirstName varchar(255), PRIMARY KEY (P_Id) ) CREATE TABLE Orders ( O_Id int NOT NULL PRIMARY KEY, OrderNo int NOT ...
0
votes
1answer
177 views

Oracle 10g : ORDER SIBLINGS inside a VIEW

Is it possible to add a ORDER SIBLINGS BY fieldName inside a view? I've got a hierarchical structure, in which I'm successfully using a query with the CONNECT BY feature. However, when I add the ...
0
votes
2answers
353 views

ORA-00907: missing right parenthesis

SELECT DISTINCT( EMP.EMPLOYEEID ), EMP.EMPLOYEECODE, EMP.EMPLOYEENAME, EMP.HOMEADDRESS, DESIG.DESIGNATIONNAME FROM HRM_EMPLOYEE EMP, COM_DESIGNATION DESIG, COM_DEPARTMENT ...
0
votes
1answer
223 views

Why would OraOLEDB.Oracle GetRecordSet() throw “ORA-00907: missing right parenthesis” error?

I am unfortunately working on an old VB6 app that is constructing a huge (11902 characters) ad-hoc SQL statement which is then passed to the GetRecordSet() method of my DBConnection. The app is using ...
0
votes
2answers
38 views

Passing in REF in Oracle database

I got ORA-00907: missing right parenthesis. I believe I have right pairs of parenthesis. I'm trying to pass a reference of service type to employee type when I insert an employee record. INSERT INTO ...
0
votes
1answer
165 views

Hibernate bug, how to workaround?

I use Hibernate 3.5.3, and Oracle 10g database I have bean with following relation @OneToMany @JoinTable(name="dispenser_accounts", joinColumns=@JoinColumn(name="terminal_id"), ...
0
votes
1answer
184 views

Why does this cause an oracle error? ORA-00907

This is driving me insane, can anyone help me understand why the following statements all return the following error? create table JMS_PENDING_MESSAGE (id number primary key, queuex nvarchar2(200), ...
0
votes
4answers
301 views

Sql = want to use make an inner join statement but not with tables

I want to use the fact that on two tables t1 and t2 I can make an inner join with on t1.colum1>t2.colum2 to calculate the maximum drawdown of a return vector. The problem is that an inner join is ...
0
votes
3answers
1k views

Oracle Missing Right Parenthesis

Here is my query: SELECT * FROM Auta WHERE SUBSTR(spz, 1, 2) = (SELECT SUBSTR(spz, 1, 2) FROM Auta WHERE typ = 'BMW' AND specifikacia_typu = 'Z1' LIMIT 1); And when I run it I get this error: ...
0
votes
2answers
6k views

Oracle SQL - Strange 'ORA-00907 Missing Right Parenthesis' error

I've written a query to test out a simple linear regression to get the line of best-fit between two sets of weight measures. It should hopefully return results like below, but it's throwing a strange ...
0
votes
5answers
3k views

Oracle 9i: Supposedly missing right parenthesis

I have a simple function written in Oracle 9i (version 9.2.0.4.0) to simulate an in-line IF. For those interested, here's the code: create or replace FUNCTION IIF (testExpression NUMBER, ...
0
votes
6answers
1k views

Does Oracle allow an ORDER BY within an IN clause?

Oracle is giving me an error (ORA-00907: missing right parenthesis) when I run this query: select * from reason_for_appointment where reason_for_appointment_id in ( select ...