Tagged Questions
3
votes
0answers
29 views
Oracle 11g delete by unique key slow [migrated]
We have been plagued by a deadlock issue for quite some time that relates to deletes and inserts on the same table. It happens sporadically, but had been increasing in frequency. It would manifest ...
0
votes
0answers
27 views
Issue with deploying datasources to JBoss 5.1 GA
I tried using the ant deploy-ds command. It gave me a success message saying -> Two files have been copied to the deploy folder.
But, When I login to the admin and check the Datasources. I see this
...
0
votes
1answer
32 views
transfer data between as400 and Oracle
I need to transfer huge amount of data from AS400 to Oracle db.
I think to write a java code but I have not developed java for a long time.
I think I need to use AS400 and Oracle jdbc drivers at the ...
0
votes
0answers
28 views
unable to update table columns in oracle 11g
I am trying to update some columns in the table it was not successful, I am getting the below error message
"java.sql.SQLSyntaxErrorException: ORA-01747: invalid user.table.column, table.column, or ...
0
votes
2answers
196 views
Cannot Open Connection Exception: Generic JDBC Exception
I thought I was getting this error because I didn't haave the ojdbc14.jar deployed inside /common/lib. The issue still remains even after I did it.
Stacktrace
HTTP Status 500 -
type Exception ...
0
votes
1answer
90 views
How to run Sqoop with custom JDBC Driver?
I can run Sqoop without providing --driver parameter if I supply (--connect/--user/--password) for oracle thin.
But I need to get it running with custom JDBC driver (it properly implements ...
0
votes
1answer
85 views
Unable to connect to the oracle database due to IP change
I have set up oracle11g database on my system which is accessed by two other machines through JDBC. But due to some reason the IP address of my system has been changed. I am not able to access the ...
1
vote
2answers
229 views
Oracle 11g connection reset error
Am seeing the below error while trying to connect to Oracle 11g on Red Hat Linux, 64-bit using thin jdbc drivers. Would highly appreciate if anyone can throw more light on how to go about ...
0
votes
4answers
134 views
How to implement a custom oracle sequence?
The oracle sequence is designed to return auto-increasing numbers. I am wondering that can I implement a customized sequence that returns from values pool I putted in, so I can tell the sequence what ...
0
votes
1answer
64 views
Catching PL/SQL errors in JDBC
I'm creating a Java application which connects to an oracle database via JDBC and is able to execute scripts on in. Somewhat like toad.
The reason I am creating this is because we can't use Toad or ...
0
votes
0answers
85 views
Play Framework, JDBC finder returns empty
I have been using Java Plays internal memory database but now when I use an Oracle database it seems it can't find any data. The ebean.Page[] returns empty it seems to.
Anyway I turned on the logging ...
1
vote
1answer
63 views
callablestatment output generates Invalid column index using struts2
I'm tyring to see how many users I inserted into my oracle 11g database using the following code (cannot look at the table right now, so I'm doing this). Anyone knows why I'm getting a Invalid Column ...
1
vote
1answer
376 views
getting org.springframework.jdbc.CannotGetJdbcConnectionException
I am trying to connect to oracle 11g XE through hibernate in my application.
when I deploy the application in tomcat(7.0) i m getting the below message.
java.sql.SQLException: Listener refused the ...
0
votes
1answer
75 views
Cannot update Oracle view from JDBC
Overview: Need to read row from Oracle view and create a Notes document, save document, then write Document Unique ID back to Oracle.
I am able to read connect and read data no problem. I am ...
0
votes
1answer
220 views
how to connect oracle 11g r1 database
i am trying to connect oracle database with my java program using eclipse IDE, i have added JDBC driver ojdbc6.jar into class path.
am using:
Database is: Oracle 11g r1 Enterprise edition.
Operating ...
3
votes
3answers
379 views
Listagg function and ORA-01489: result of string concatenation is too long
When i run the following query:
Select
tm.product_id,
listagg(tm.book_id || '(' || tm.score || ')',',')
within group (order by tm.product_id) as matches
from
tl_product_match tm
where
...
0
votes
0answers
29 views
SQL Server JDBC Datasource for oracle Application
Im using Oracle GRCC application on my linux os and it will be using tomcat server.actually im creating adapter for my GRCC application using SQL Server 2008.i really confused that which jar file have ...
1
vote
1answer
281 views
ORA-00913: too many values
getting ORA-00913: too many values. don't know how to resolve this issue please anyone could help me?
con2 = DriverManager.getConnection("Jdbc:Oracle:thin:@localhost:1521:XE", "system",
...
0
votes
1answer
276 views
After upgrading Oracle JDBC driver, a Hibernate criteria query throws exception
I recently upgraded the JDBC driver for Oracle 11g from ojdbc14.jar to ojdbc6.jar.
However, the following criteria query does not work anymore now:
criteria = ...
criteria = ...
0
votes
0answers
20 views
default Order of compilation
I have a set of INC files in a windows machine. I need to compile these units using jdbc or sqlplus. By default in which order the files will be compiled? The files will be compiled based on the name ...
-1
votes
4answers
796 views
Tomcat 7 fails to load ojdbc6.jar no matter where I have it specified
This is one really trying my patience. I have a simple Spring 3.1 + Jersey application that I'm trying to work with ojdbc6.jar as my datasource. Unfortunately, no matter what I try, it can never ...
0
votes
0answers
302 views
Oracle JDBC 11.2.0.3.0 doesn't continue working after execute oracle.jdbc.driver.DBConversion getNCharSetId
I have a problem where after executeQuery using oracle client 11.2.0.3.0 using linux machine seens that query stop execute, but is only for one specific machine.
Using sqlplus the query works.
I ...
0
votes
2answers
261 views
Set timestamp in Oracle
I use Prepared statements in Oracle SQL query. I have problem which I don't know how to solve.
I want to set timestamp like using this:
ps.setTimestamp(36, null);
The problem is that I don't know ...
1
vote
1answer
69 views
connection can not be resolved for a type when work in an environment of Tomcat, JDBC and Eclipse
<%
String driver = "oracle.jdbc.OracleDriver";// 1.
Load the driver
Class.forName(driver);
// 2. Define the connection URL
String url =
...
0
votes
1answer
49 views
Compilation issue with JDBC under Apache Ant
I am using the following specification for JDBC compilations using Ant.
<sql driver="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@10.184.133.133:1521:SUPP"
...
0
votes
0answers
104 views
ArrayIndexOutOfBoundsException in Oracle JDBC
I get a strange Exception in our oracle jdbc driver. How can a native method throw an OutOfBounds Exception? I think it has something to to with the blob in one of the columns.
We use as our server ...
1
vote
2answers
76 views
Can't start sql db in 11g through jdbc.Getting java sql exception
import java.sql.SQLException;
import oracle.jdbc.pool.OracleDataSource;
import java.sql.Statement;
import java.util.Properties;
import oracle.jdbc.OracleConnection;
public class Test {
static final ...
0
votes
2answers
154 views
Joining multiple tables with a single query
Student
student_id FirstName LastName
---------------------------------------------------
1 Joe Bloggs
2 Alan Day
3 David Johnson
...
1
vote
3answers
7k views
IO Error: The Network Adapter could not establish the connection
I am new to Oracle, and am trying to run a simple example code with Java, but am getting this error when executing the code.. I am able to start up the listener via CMD and am also able to run SQL ...
0
votes
0answers
214 views
Spring + JdbcTemplate: Nested query results in timeout
I have a a Spring 3 application that interacts with an Oracle database (Oracle Driver Version 11.2.0.1, Spring Jdbc Version 3.1.2) and have the following methods:
public synchronized ...
2
votes
0answers
1k views
Where to get Oracle jar files for 11.2.0.3 - xdb, aq, i18n, xmlparser
I'm trying to update a legacy Java application to be compatible with Oracle 11g version 11.2.0.3.
The application was running on Oracle 10g version 10.2.0.4 and uses Oracle Advanced Queues. It has ...
0
votes
0answers
101 views
Insertion of record in table slow in oracle 11g
We have very old java application from thirdparty which insert some records in table with autocommit on(I know its bad technique but i dont have control on source).
It was working fine on Oracle 10G ...
1
vote
1answer
203 views
using Oracle JDBC driver implicit caching feature
I am pretty sure that somebody else already asked this question, but I still couldn't find a satisfactory answer to it.
So, here is my scenario: I want to use the Oracle's JDBC driver implicit ...
0
votes
1answer
533 views
Unable to resolve error - java.sql.SQLException: ORA-01000: maximum open cursors exceeded
I made a java method to add a row to a database. I am calling this method about 1000 plus times for testing purposes. I called the close() method on my prepared statement and i am still getting the ...
2
votes
0answers
199 views
ORACLE JDBC: DriverManager or OracleDataSource
While trying to connect to my Oracle 11.1.0.7.0 database using jdbc with the ojdbc6.jar of the matching version, I found two variants.
Assuming a string DBURL of the form
...
0
votes
1answer
125 views
Java + Oracle: How to query database for a set of values
I would like to do the following
private List<Number> getIds(List<String> names) {
String query = "SELECT id FROM months WHERE name IN (?)";
...
}
How can I pass my ...
0
votes
1answer
567 views
Setting defaultRowPrefetch has no effect on query
I've got a weird issue with using Spring JDBC + Oracle 10g. Here's my dataSource config:
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
...
3
votes
1answer
850 views
Java code to check if a given User, Schema, Table exists?
I want to make Java code (using Oracle 11g and JDBC also) which will check if a particular User or Schema exists or not. How can I do this by using only Java code and not by executing SQL queries ...
1
vote
1answer
138 views
A simple create user statement fails?
Like before, making Java-Oracle11g-JDBC (OJDBC) code. Java code tries to do an executeUpdate() on the statement below and an error occurs. But Oracle 11g executes it without any problems(via its GUI).
...
3
votes
2answers
125 views
Statement works in database, but fails in Java code -
CREATE USER Person identified by 2012;GRANT ALL PRIVILEGES TO Person;
These statements are successfully executed by Oracle 11g (GUI). But, when I copy and paste the above statement exactly and try ...
-1
votes
2answers
2k views
How do I login to 'xe' connection in Oracle 11g with java code?
I want to make java code that does only this:
Login to the 'xe' connection in Oracle 11g database. That's all.
How can do it ?
EDIT:
yes, i was using JDBC, but unable to login to that connection. ...
1
vote
1answer
195 views
How to access the default connection 'xe' in oracle 11g to create a user?
I want to make Java 1.6 - Oracle Express 11g - JDBC(OJDBC6) code to create a user with all privileges. Now, one of the connections i have is "xe" (I see it in SQL Developer). I want to make my java ...
0
votes
1answer
2k views
GenericJDBCException: Invalid column type: getCLOB not implemented
I am trying to migrate from JBoss 5.1 to JBoss 7.1.1 and currently have this problem.
Whenever I try to get an object from the database that contains a CLOB field, this error is thrown:
11:48:58,974 ...
3
votes
5answers
5k views
java.sql.SQLException: Missing IN or OUT parameter at index:: 1
I made some Java 1.6-Oracle11g-JDBC (using OJDBC 6) code (below). I am getting the exception - java.sql.SQLException: Missing IN or OUT parameter at index:: 1
Why is this happening and how do I fix it ...
2
votes
2answers
2k views
Understanding mysterious Oracle JDBC errors - ORA-00911: invalid character
I am making Java 1.6-JDBC-Oracle 11 code. I created a table called employee with id,name and age. I am getting the error - ORA-00911: invalid character. How can I fix this ?
Here is my code-
import ...
1
vote
2answers
685 views
Tracing the source of - java.sql.SQLSyntaxErrorException: ORA-00900: invalid SQL statement
I got that error when I ran my Java-Oracle 11g-JDBC code in eclipse. I am only trying to create a table and then add some rows to it.
How can I see which line of code caused that error ?
Please help.
...
1
vote
1answer
883 views
java.sql.SQLException: ORA-01501: CREATE DATABASE failed ORA-01100: database already mounted
I made some MySQL java-jdbc code to create a database and add a few sample rows to it. I wanted to make this code work for oracle 11g also. So, I changed the connection URL in my code accordingly. ...
1
vote
1answer
3k views
Listener refused the connection with the following error: ORA-12514
I am trying to connect to an Oracle Database using java and JDBC code. I can't do that because I get the error below:
java.sql.SQLException: Listener refused the connection with the
following ...
5
votes
1answer
2k views
Oracle Database 11g JDBC Drivers - So many files ??? What do they mean?
I wanted to use Oracle 11g as my db for java code. I tried to get the drivers from the oracle website.
I saw so many files with some jargon thrown in here and there. I need to know what those words ...
0
votes
3answers
248 views
Java SQLException ORA-00904
I'm having a problem getting a java ResultSet on an Oracle XE 11g release 2 database. I am using the ojdbc6_g.jar driver from Oracle to set up the JDBC connection. I get the following error: ...
