Oracle Server is a relational DBMS (Database Management System) created by Oracle Corporation. Do NOT use this tag for other DBMS servers owned by Oracle (for instance MySQL, TimesTen and Berkeley DB).

learn more… | top users | synonyms

1
vote
1answer
18 views

How do you ORA - 00907: Missing right parenthesis

Create TABLE Emp_test1 (Employee_id Number (6) CONSTRAINT employee_id NOT NULL, FIRST_NAME Varchar2 (20), LAST_NAME Varchar2 (25) CONSTRAINT Last_name NOT NULL, Email Varchar2 (25) CONSTRAINT Email ...
1
vote
1answer
43 views

Insert data into nested table

May I please have some help to Insert values into a table. The table is called PurchaseOrder_objtab. Here is the type for the table: CREATE TYPE PurchaseOrder_objtyp AUTHID CURRENT_USER AS OBJECT ( ...
0
votes
0answers
34 views

shell script error while running .sql file

While calling .sql file from shell script required data is retrieved but after completion - below errors are shown. WHENEVER: not found. SET: not found. SET: not found. SET: not found. run ...
-1
votes
3answers
65 views

SQL Query for hour by hour data for one day [closed]

The data will get inserted into the DB for every minute. Need to query the data in such a way that it should reply the last entry for each hour (like 09:59:59, 10:59:59, 11:59:58) for the previous day ...
2
votes
2answers
81 views

Why does the sequence of parameters matter in SQL

I think this is entry-level, but I haven't googled any answer out.. When building queries, do we have to use the :1, :2... stuff in an absolute sequence? From my tests, it seems yes. But doesn't ...
0
votes
1answer
34 views

How to call applet from web to read excel file and insert data to oracle database?

I wrote a java class to read excel file and dump the data to Oracle Database. It needs to reference apache poi libraries( 8 jar files.) The program works fine in command line. Now I want to call ...
0
votes
4answers
75 views

Oracle: dynamically select script

How do I run a script in SQLPlus whose pathname is passed in a string. Something like the following (fails): SET SERVEROUTPUT ON; DECLARE path VARCHAR2(128); BEGIN path := ...
0
votes
2answers
19 views

How do you remove System.Data.OracleClient?

I accidently installed System.Data.OracleClient 64-bit (ODAC) and used the Oracle Uninstaller to remove the client, then proceeded to install the 32-bit ODAC. Unfortunately, I can't seem to get rid of ...
0
votes
2answers
44 views

ORACLE Update with MINUS result

In Oracle 10g, I want to update the records of the resulting minus query below: ( SELECT A,B,C FROM Table1 MINUS SELECT A,B,C FROM Table2 ) The column that is to be updated is not part of ...
1
vote
2answers
34 views

Oracle Forms 6i Comparing Fields

I have a form with two fields which are type Char 128 each i am trying to compare the contents of these fields. However i am not getting a proper comparison done. When both fields have the same data ...
0
votes
3answers
51 views

Group by Multiple columns and case statement

I have to present the orderdata group by Month and card type for an year like this: MONTH CARDTYPE ORDER_CNT 201201 AMEX 10,835 201201 DISC 6,542 201201 MC 2,675 201202 AMEX 66,817 ...
0
votes
1answer
21 views

Converting from Oracle to MSSQL

Using XML, the code piece in question looks like: <field name="case" when max(b.expected_date) %lt% current_date then %q%0000-00-00%q% else to_char(max(b.expected_date), %q%YYYY-MM-DD%q%) end" ...
3
votes
3answers
57 views

oracle sql to get all possible combinations in a table

Hello guys I have a small predicatement that has me a bit stumped. I have a table like the following.(This is a sample of my real table. I use this to explain since the original table has sensitive ...
3
votes
2answers
63 views

Update SQL when where clause condition can be null

I have an update SQL statement to update a row UPDATE COM_TRANSACTION_LOGS SET END_TIME = ?, RESPONSE = ? WHERE TRANSACTION_ID = ? AND MESSAGE_ID ...
1
vote
3answers
48 views

How can I check database field every day?Cron job?

I' m developing application in Java which is connected to database (Oracle or SQLite). In database I store contracts. The contract has field access_date. And i want to check this field once every day ...
1
vote
1answer
19 views

Prevent Hibernate DML execution

I am new to Hibernate and am having some issue with its configuration. I am trying to setup a read-only connection to a preexisting Oracle database. I do not want Hibernate to execute any DML and ...
0
votes
0answers
19 views

Oracle TNS names configuration [migrated]

I've edited added new TNS name to tnsnames.ora. Toad for Oracle started to work at once. SQL Plus doesn't work even after logoff/logon, the same problem with my build scripts. Getting the error: ...
0
votes
1answer
31 views

Oracle combine two rows into one

I have a result like this: 15.04.13 5 Doe, John 2431 null null 46 560 0 null 0 15.04.13 5 Doe, John 2431 paid 525 0 0 585 null 60 this is the result of a union ...
0
votes
0answers
7 views

Using Oracle Wallet when connecting to a database with Websphere

Has anyone configured a JDBC connection using an Oracle Wallet for a Websphere application? In addition to configuring the wallet files and then including the additional jars to use the thin client ...
0
votes
1answer
36 views

Oracle.DataAccess.Client Error

Background: This website use oracle and spring.net. version of the Oracle.DataAccess: 4.112.2.0 version of the Spring: 1.3.2.40943 Webconfig file <db:provider id="SDDbProvider" ...
4
votes
5answers
99 views

Finding recursive sum in SQL statement

I've two tables A and B like: A (id, dep_id) and B (id, amount) The data in those tables are like this A B id dep_id id amount --- ------- ---- -------- 1 2 ...
0
votes
2answers
94 views

Problems installing Oracle Database Express Edition 11g

I'm trying to install Oracle Database in (X)ubuntu 13.04 64-bit using this guide. Everything goed well until I get to the following step: $ sudo /etc/init.d/oracle-xe configure Oracle Database 11g ...
1
vote
1answer
26 views

Select oracle schema which only contains specific table

I'm looking for a way to select all schema on my oracle server, which only contain the table "mytable" How can i do this ? I already have a query who list all schema in my database. SELECT username ...
0
votes
2answers
28 views

comapring one table in 2 schemas to find missing coluns

I made my researches; I didn’t find something similar to my question. If my question is duplicated please excuse me because I didn’t find in my researches. I have 2 schemas, schema1 and schema2, and ...
3
votes
1answer
86 views

SQL join allowing only one match from each table

I have two tables. One table has coupons allocated to each customer and the other table has redemption information for each customer. I essentially need to be left with only the coupons redeemed for ...
2
votes
4answers
43 views

How do you search for PL/SQL code in Oracle forms fmb files?

How do you find code if you don't know which Form it's in. If you know the form you can search pl sql but what if you don't know form? For example I know the name of a field that is used in some ...
-5
votes
2answers
38 views

Steps to be followed for performance analysis of Java EE/Oracle application [closed]

We developed an application using Java EE and Oracle and we want to increase the performance of it from both the Java and database side. Need proper approach or steps to do this.
0
votes
1answer
30 views

Connect to a remote oracle server

I am not an expert in oracle and I need to connect my VB.net application to a remote oracle server. My code is: Dim con As New OracleConnection con.ConnectionString = "Data Source=" & ...
0
votes
1answer
41 views

ObjectQuery, passing Time in Where clause

How can I construct the Where clause of the ObjectQuery where I will be querying for the Time part only of a DateTime column? I've tried the following but it's not working. I get an invalid exception ...
-2
votes
0answers
18 views

Oracle client and LDAP [closed]

we have a component using Oracle client from .NET Framework 4. Shortly, our ICT announced that LDAP is turned off. Since then, our component cannot reach the Oracle databases anymore. Can somebody ...
0
votes
1answer
38 views

Error creating view a when using MIN [closed]

Here is the script I used to create a view in Toad CREATE VIEW INTERN_VIEW AS SELECT SPRIDEN_ID, SPRIDEN_FIRST_NAME, SPRIDEN_LAST_NAME, SYRISCH_COM_ID , SYRINCP_COM_NAME, SYRISCH_STATUS_CODE ...
2
votes
1answer
27 views

New table into Oracle db via SAS, lock table while writing

Can I lock for all access (including Oracle based queries) a table in an Oracle db via a SAS ODBC connection? I am currently running a script in SAS which drops and replaces a table in an Oracle db ...
0
votes
1answer
37 views

problems with group by function

I'm having a little problem. I'm trying to get a date into my table, but an error occurs when trying running it. I have googlet the error end tried som solutions, but none of them worked. Before ...
1
vote
1answer
39 views

SQL Oracle - max function

I need some help with this query, i need to get code name address with the most recent date per code (date1 is < date6 in this example) Tab1 code address ==================== cod1 addr1 ...
0
votes
2answers
28 views

how to update a LOB with PHP in oracle? (OCI_INVALID_HANDLE)

i'm trying to do an update a (C)LOB in the same way i do an insert. (insert is already working). $queryHandle = oci_parse($dbHandle, "update MYTABLE set "MYCLOB" = EMPTY_CLOB() , "OTHERCOL" = :col0 ...
2
votes
1answer
60 views

Oracle VIEW - More than 4000 bytes in Column

Iam using this part of an SQL Satement to fetch Information from an N:N Relationship. The Goal is to have an view with an column like: "STRING1,STRING2,STRING3". This works fine but i have sometimes ...
0
votes
0answers
18 views

how to normalize textual data that is imported from several sources (with slight differents) to match existing data and avoid duplications

I am importing a set of data (events) from several files (excel files) to then be stored in a relational database (Oracle). The events to be imported has no unique ID nor any other identifier so i ...
1
vote
2answers
37 views

Redirect to apex page and set error message to be displayed

I have a process that runs when a page is submitted. In the process I am catching an exception and if an exception occurs, I want to redirect to a different page and display the error message of the ...
-1
votes
2answers
32 views

How to mask particular column of a table for particular user in oracle

Oracle Data masking How do I mask the data by XXX of a particular column of Table. RLS policy doesnt work for me. please suggest urgently Edit: For Security Reasons the value is replaced by XXX, ...
2
votes
1answer
26 views

Appending trailing zeros to a oracle number in Oracle

I need to format the NUMBER data type in Oracle as follows: Problem Statement: -> Append trailing zeros to the ATM_CARD-NUMBER whose length is 14 My Attempt: SELECT ...
3
votes
2answers
43 views

Oracle equivalent of Java's Varargs

I'm trying to create a PL/SQL Procedure which can handle an unknown, but relatively small, number of Strings/Varchar2s as a parameter. The equivalent in Java could be to use Varargs: public void ...
0
votes
2answers
58 views

Run Oracle Client in 32-bit mode on a 64-bit machine

I have just moved from a 32-bit Windows 7 desktop to a 64-bit Windows 7 Laptop. We have a C# program that we are developing that contains approximately 60 projects within the solution. I keep getting ...
0
votes
0answers
18 views

The proposed key is not within the partition defined by owning publisher:Apache JUDDI and OSB

I am trying to publish Oracle Service Bus proxy services to UDDI registry (JUDDI). And I am getting $subject when try to publish a proxy service through OSB. Have anyone came across with such before? ...
0
votes
1answer
33 views

oracle update each distinct row with new value

value group ----------------- value2a, value2 value2b, value2 value2c, value2 value3a, value3 value3b, value3 value3c, value3 value3d, value3 value4a, value4 value4b, value4 value4c, value4 ...
0
votes
1answer
36 views

OracleBulkCopy is missing in Oracle.DataAccess

I want to use OracleBulkCopy to perform some bulk insert operations. My database is Oracle10g and my code is in .NET 2 framework. It is for some old clients and i cannot upgrade database or framework ...
1
vote
2answers
47 views

Oracle Forms 10g Sticky Cursor

I face a really strange problem. The problem is that sometimes the cursor does not listen to mouse, it become suck on the field and does not move to any other field when using mouse navigation but ...
1
vote
3answers
61 views

SQL Query optimization : Taking lots of time

I am having the following query used to retrieve a set of orders: select count(distinct po.orderid) from PostOrders po, ProcessedOrders pro where pro.state IN ('PENDING','COMPLETED') and ...
0
votes
0answers
61 views

Difference between count (*) and count (1) with join [duplicate]

Can anyone help me with proofs and details ?I was taught that count(*) and count (1) are not the same because count( * ) selects all the columns in a table however count (1) select only 1 column from ...
-4
votes
0answers
42 views

dates difference in case of all month are 30 days in case of february in oracle [closed]

I user oracle database 10g and forms 6i and I want to make difference between dates and all months are 30 days only January = 30 days so if I make a difference between 30-12-2012 and 31-01-2013 must ...
0
votes
0answers
28 views

Perform recursive call in oracle stored procedure

I have the following oracle stored procedure. PROCEDURE UPDATE_STUFF ( IN_ID IN NUMBER, IN_DATE IN DATE ) AS BEGIN IF (IN_DATE - PREV_DATE) > 1 THEN ...

1 2 3 4 5 564