Tagged Questions
1
vote
1answer
43 views
Hibernate named query re-parsed
We are using hibernate named query as follows :
named_query : Select this_ from TableA this_ where this_.id in( select max(id) from TableA where COLA is null group by COLB ) and rownum=1
...
3
votes
3answers
100 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 ...
0
votes
0answers
116 views
Why do I get “ORA-00932: inconsistent datatypes: expected - got -” when using COLLECT() in a prepared statement?
I am using this query with the Perl DBI:
SELECT c.change_id
, COLLECT(t.tag) AS the_tags
FROM changes c
LEFT JOIN tags t ON c.change_id = t.change_id
WHERE c.project = ?
GROUP BY ...
6
votes
5answers
166 views
NullPointerException when executing PreparedStatement on Oracle DB to insert Blob
does anyone have an idea what i am doing wrong here? I am trying to insert a blob (that contains a pdf in case that matters) into an oracle db together with some additional information. I am using a ...
1
vote
1answer
65 views
Oracle - implicit vs explicit statement cache
Can anyone explain in clear terms what the difference between implicit and explicit statement caching is in Oracle (as described here).
I basically want to reproduce the functionality that the DBCP ...
19
votes
3answers
649 views
Oracle prepared statement hangs
There is next partitioned table:
CREATE TABLE "ERMB_LOG_TEST_BF"."OUT_SMS"(
"TRX_ID" NUMBER(19,0) NOT NULL ENABLE,
"CREATE_TS" TIMESTAMP (3) DEFAULT systimestamp NOT NULL ENABLE,
/* other ...
0
votes
1answer
50 views
BatchUpdate using an Oracle view
I have a complex Oracle view which takes around ~ 2 - 3 seconds to execute.
I'm trying to insert values from the Oracle view into a table.
I'm using JdbcTemplate BatchUpdate() to insert multiple ...
0
votes
1answer
198 views
Retrieving Oracle data using a SqlDataSource and a C# prepared statement
I'm attempting to write a prepared statement for retrieving data using a SqlDataSource, but cannot seem to compose a good SelectCommand statement (7th line below) to do this. Could someone please shed ...
0
votes
1answer
78 views
Set a column alias with Java PreparedStatements
Hello all :) I want to name dynamically my columns with Oracle 10g. Here is what I would like to do:
SELECT
NAME as "User.Name",
EMAIL as "User.Email.For.Criteria2.at." || CRITERIA
FROM ...
1
vote
1answer
146 views
Updating with Prepared statement: ORA-00933 error
I'm using the following servlet code to update data from my android application. But I'm receiving error as ORA-00933: SQL command not properly ended. Here is my code
try
{
...
0
votes
5answers
1k views
ORA-00928 missing SELECT keyword in oracle
I'm using the following code to insert data. But I'm receiving error as "ORA-00928: missing SELECT keyword"
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
java.sql.Connection conn = ...
0
votes
1answer
102 views
unrecognized token '(' in values list, expecting ')'
I am trying to insert into Oracle Database using JDBC prepared statement. Below is the sql that I am trying to insert.
And everytime I get sql exception for below SQL
private static String ...
0
votes
3answers
127 views
How to Insert in Oracle using java
I am having CLOB column in Oracle Data Base , I want to insert String .
It works if I use setCharacterStream, but how to insert String by setBytes am getting exception.
Please help me.
String s = ...
0
votes
1answer
176 views
How to find parameters in Oracle query received from v$sql?
I use query:
select LAST_LOAD_TIME, ELAPSED_TIME, MODULE, SQL_TEXT elasped from v$sql
WHERE MODULE='JDBC Thin Client'
ORDER BY LAST_LOAD_TIME DESC
elasped:
delete from tableA where fk in ...
1
vote
1answer
51 views
PreparedStatement on oracle and index usage
I have a table like this one in Oracle:
create table suppliers(name varchar2(100));
With its corresponding index on upper(name):
create index supplier_name_upper_idx on suppliers(upper(name));
I ...
0
votes
3answers
243 views
Multithreaded access to JDBC connection for only select case
If I assign the same connection to multiple threads which only executes select statements(no CRUD), is this scenario thread safe ? Each thread creates its own preparedstatement from the same ...
0
votes
1answer
269 views
Strange unique constraint error using Java and an oracle database
I have a table named CUSTOMERS with the following columns :
CUSTOMER_ID (NUMBER), DAY(DATE), REGISTERED_TO(NUMBER)
There are more columns in the table but it is irrelevant to my question as only ...
1
vote
4answers
189 views
What's the best way to find DB connections left open in Java code?
We have an enterprise Java project that uses an Oracle DB heavily, supports hundreds of concurrent users, and has been touched by dozens of developers over the last 10 years. Every once in a while a ...
0
votes
0answers
70 views
Is there any alternative to CAST in oracle?
The code currently does
where col1 = cast(? as char(5))
instead of hardcoding 5 as the length of the column, I am planning to do something better. I don't want to use OraclePreparedStatement which ...
-1
votes
1answer
315 views
Prepared statement returning -2 value always
I have a prepared statement with merge, after execution it always returns -2.
My code:
private StringBuilder sb = new StringBuilder();
sb.append("MERGE INTO EMP_BONUS EB USING (SELECT 1 FROM DUAL) ...
0
votes
0answers
43 views
OutOfMemory error and leak detected in IBM PoolManager When Using Oracle JDBC Driver
Has somebody any experience with OutOfMemory issues, caused by exceeded consumption of the heap by com.ibm.ejs.j2c.PoolManager objects?
The error is thrown from time to time, during exporting huge ...
4
votes
2answers
666 views
Oracle JDBC performance of ResultSet
I was using so far something like this for querying my database that was working perfectly fine :
PreparedStatement prepStmt = dbCon.prepareStatement(mySql);
ResultSet rs = prepStmt.executeQuery();
...
3
votes
1answer
214 views
What am I doing wrong with this preparedStatement?
private Connection conn = DriverManager.getConnection(URL, info);
try {
String sql = "INSERT INTO \"STUD1582251\".\"ACCOUNTS\" VALUES USERNAME=?, PASSWORD=?, PORTFOLIONAME=?";
PreparedStatement ...
0
votes
1answer
67 views
whats wrong with my prepared statement?
The SQL statement:
SELECT * FROM (
SELECT rownum rid ,condata.*
FROM (
SELECT max(ODP_CTT.NUM_CTT_ID) conid ,ODP_CTT.VC2_BUS_CTT_ID AS ecpid ,ODP_CTT.vc2_title AS title ...
1
vote
3answers
295 views
Doing a SQL batch update in Java that won't update a field if passed-in parm is null
How do I create a batch update that won't update a column if the passed-in parameter value is null? For example:
String UPDATE_STMT = "UPDATE MY_TABLE SET col1 = ?, col2 = ?, col3 = ?";
Connection ...
0
votes
2answers
123 views
using case when exists to check if records are present in the db
Which query will be faster
SELECT CASE WHEN EXISTS ( SELECT 1 FROM table WHERE condition )
THEN 'Y'
ELSE 'N'
END FROM DUAL
or
SELECT 1 FROM ...
0
votes
2answers
739 views
Oracle connection preparedStatement object print out the query to be executed
In Java I would want to print out the query that is going to be submitted/queried on the database so that I can see whats the error when the query throws out exception.
It will be useful to exactly ...
1
vote
1answer
13k views
ORA-00604: error occurred at recursive SQL level 1
I started getting the below SQL exception and I don't know what's the root cause for this exception? I am also closing dbconnection and prepared statement too. Then what's the problem?
...
0
votes
0answers
89 views
How to Fill ? For Prepared Statement in below case
Java Insert Statement:
insert into temp2(NO,NAME,DATE) values(?,?,?)
I have received a csv in any one of format below even it may change in formats.
How can I insert this statement using ...
1
vote
1answer
731 views
Import Oracle table dump with insert statements and clob data types using Java
I have an Oracle table dump containing insert statements. Some of the tables contain clob data fields. If I try to restore the dump using SQL Developer I get the error "ORA-01704: string literal too ...
2
votes
2answers
319 views
how to use prepareStatement to update data, field and value both need be set
I use prepareStatement() to update data, for several columns need to update, I wrote one procedure like this:
public boolean editSocre(String field, String newValue)
{
...
updateSql = "update ...
4
votes
2answers
6k views
Where's my invalid character (ORA-00911)
I'm trying to insert CLOBs into a database (see related question). I can't quite figure out what's wrong. I have a list of about 85 clobs I want to insert into a table. Even when inserting only the ...
4
votes
3answers
2k views
I can't understand the reason behind ORA-01722: invalid number
I have an issue that is generated randomly (one time between thousandth of calls).
The error ORA-01722: invalid number is generated in a random way while executing sql update in a prepared statement ...
0
votes
1answer
809 views
Insert…Select - getting ORA-01461: can bind a LONG value only for insert into a LONG column
When I try to execute the following statement:
INSERT INTO myTable (id, some_data, more_data)
SELECT ?, ?, ? FROM dual
WHERE NOT EXISTS (
SELECT 1 FROM myTable WHERE id = ?)
I get ...
2
votes
1answer
329 views
Oracle PreparedStatement throws Value Too Large because of single quote escaping
I seem to have a problem with a Java batch insert. What it does is inserting values with single quotes into an Oracle table.
java.sql.BatchUpdateException: ORA-12899: value too large for column ...
2
votes
1answer
293 views
PL/SQL package call via JDBC performance issue
I have to use an PL/SQL package as API for importing data into an Oracle database. I'm doing this within an Java application with the latest ojdbc driver. All statements (of cause PreparedStatements) ...
1
vote
1answer
2k views
Using oracle's to_date in preparedStatement
I am trying to enter a date in oracle database using to_date in preparedStatement but I am getting errors.
Code Fragments:
sql = "select Identifier from metadata where content_cdate ...
2
votes
5answers
1k views
Unable to find a generated key in Java using PreparedStatement's getGeneratedKeys()
I have a query as follows:
String SQL = "insert into table (id, name) values (sequence.nextval, ?)";
I then make a PreparedStatement like this:
//initiate connection, statement etc
pStatement = ...
1
vote
1answer
235 views
Java sql char prepared statement
I have a problem with a prepared statements with a char(3) parameter.
When I put the string directly into the SQL string I have no problem and the result set is correct, here's an example:
WHERE ...
0
votes
2answers
1k views
“Invalid column index” SqlException error when trying to insert a row
I'm having a problem with setting up a PreparedStatement to insert a new row into my table. I've tested the query in my SQL editor and it worked succesfully but I can't get this PreparedStatement to ...
1
vote
3answers
4k views
Inserting custom date and current time into Oracle database using string variables
So what I want to do is set a custom date along with the current time into the DATE type in the Oracle database.
I get the string from textField in the form of mm/dd/yyyy
String tdate = ...
0
votes
1answer
777 views
One prepared statement for MSSQL and Oracle for retrieving Dates?
I want to collect data from both MsSql and Oracle databases. Therefore I use an prepared statement because I need data BETWEEN a start and enddate.
Given databases:
So in MSSQL I have these columns:
...
1
vote
2answers
817 views
Set LONG data type using a Prepared Statement
My situation is that I need to create DB partitions on the fly at certain times. I'm using a Statement like the following:
alter table table_name split partition default_partition values (' +
id + ') ...
0
votes
2answers
84 views
Need help in finding an Oracle Exception.. Java+Oracle+Prepared Statement
Forgive me if this question is very vague
Some time back i faced this issue.
I used java and wrote a prepared statement INSERT into a table that had a few CLOBS. I inserted the records in the same ...
2
votes
1answer
131 views
Column is not indexed even though it is. PreparedStatement inside
I'm really struggling with a bug that did not appear on my dev environment, only once deployed in test.
I'm using a prepared Statement to run around 30 000 query in a row. The query check for the ...
0
votes
1answer
878 views
Insert record with PreparedStatementCreator (must run on Oracle & PostgreSQL)
I am trying to use Spring Jdbc Prepared statement to insert records into a table. This code must run on Postgres and Oracle. I need to read the inserted record key after insertion.
I found the below ...
0
votes
2answers
4k views
Missing IN or OUT parameter at index:: 8
String s1 = "create table testing " +
"(id number NOT NULL PRIMARY KEY, " +
"url varchar(1000) NOT NULL, " +
"urlHash varchar(1000) NOT NULL, " +
...
1
vote
1answer
793 views
Oracle error “SQL command not properly ended” (ORA-00933) for Java prepared statement
I'm getting ORA-00933 when creating the following prepared statement for Oracle 10g (10.2.0.1.0) using JDBC:
conn.prepareStatement("INSERT INTO fx_tv_date (id, mp, doc_id, effective, actual, stale, ...
1
vote
2answers
598 views
Using OraclePreparedStatement with DBCP Connection
I'm trying to make a connection pool with the dbcp framework for my oracle server.
I used this tutorial for the connection.
The problem is to create a OraclePreparedStatement with this connection:
...
0
votes
1answer
1k views
Oracle/OJDBC BLOB update problem on non-existing rows?
I ran into very peculiar problem with BLOBs in Oracle. I'm using OracleXE 10g (10.2.0.1.0 version of database), and tried it with ojdbc14_g drivers version 10.2.0.1.0, 10.2.0.4.0 and 10.2.0.5.0. The ...

