0
votes
2answers
18 views

How to create or execute a Stored Procedure within another Stored Procedure in IBM DB2?

How to create a Dynamic Stored Procedure using a Stored Procedure in IBM DB2 9.7 for Windows ? Example below is my dynamic generated stored procedure: CREATE PROCEDURE DB2ADMIN.INSERT_A (inputVar1 ...
0
votes
2answers
90 views

stored procedure returns just one row of multiple rows

I will start by giving you my table content This is my stored procedure: ALTER PROCEDURE dbo.getFoodsForOrder ( @orderID INT, @ID INT OUTPUT, @food_restaurantID INT OUTPUT, ...
0
votes
0answers
23 views

Spring JDBC Stored procedure + get new insert id

can anyone give me an example on how to get the new inserted id after a procedure is called? I use oracle as db that uses sequences... Is it the best way to use output param to ouput the new id or ...
0
votes
0answers
19 views

Executing .sql file containing stored procedures using JDBC [duplicate]

I have .sql file which contains the whole structure of a database(creating it, creating tables, views and stored procedures). If I didn't have a sp, I would tokenize the file by ";" and run them one ...
0
votes
1answer
49 views

get multipulate value from stored procedure

I have this stored procedure : ALTER PROCEDURE dbo.getRegionsInArea ( @areaID int, @ID int OUTPUT, @name varchar(50) OUTPUT ) AS BEGIN SET NOCOUNT ON SELECT @ID = [ID], ...
0
votes
0answers
36 views

Websphere JDBC-adapter fails to call an oracle stored procedure

I've posted to the mqseries forum too, but haven't got any answers yet. I have problems using a Websphere adapter for JDBC in order to call an Oracle stored procedure. The procedure looks like this: ...
2
votes
2answers
334 views

Call stored procedure with table-valued parameter from java

In my application I want to execute query like SELECT * FROM tbl WHERE col IN (@list) where,@list can have variable no of values. I am using MS SQL server database. When I google this problem then I ...
0
votes
1answer
43 views

Unable to fetch Resultset from StoredProc in Java

We are trying to execute stored proc in Java which looks like as below, CREATE PROCEDURE [dbo].[MyProc] ( @input1 varchar(20), @input2 varchar(20), @responsecode varchar(10) output ...
0
votes
0answers
23 views

TimesTen 11 DatabaseMetaData.getProcedures(catalog, schema, pNamePattern) doesn't work?

I have TimesTen DB TT_1122 installed with default configuration. I have the procedures with name PROC_TEST123 already inside a TT_1122, and from ttisql, I can see it (by procedures call). When I used ...
0
votes
1answer
27 views

What order are result sets returned when using JDBC callable stmt to stored proc?

(1) When you open multiple cursors in a stored procedure, and then use a JDBC callable statement to iterate through the result sets, each in turn, are the order in which they are returned the same ...
0
votes
1answer
70 views

How to retrieve scalar value using JDBC?

I'm now trying to call a sproc that returns scalar value which represents the inserted row's ID (which is varchar), how could this be achieved in JDBC? What I'm now doing is let the DB sproc return ...
0
votes
1answer
155 views

How to get multi table results of an stored procedure using SimpleJDBCCall in spring?

I'm implementing a Spring+ MSSQL Server 2008 application. I use SimpleJDBCCall API to execute stored procedures and retrieve results. For stored procedures with mono table results, it works fine, but ...
-1
votes
2answers
114 views

How to set parameter by name instead of its position in JDBC/JPA when calling stored procedure?

I'm calling stored procedure from java. Now I need to set the stored procedure's parameter by its name instead of its position inidex, is it doable? I don't want to use string concatenation though, ...
0
votes
1answer
209 views

How to send multiple rows data from JDBC to oracle stored procedure?

I want to save the multiple rows data in DB using oracle stored procedure from JDBC. Aware of XML data approach. Can we send the list or map from java to database and insert in data base from ...
1
vote
2answers
250 views

Calling Oracle stored procedure with DATE input doesn't set the HH:MM:SS

I'm trying to call an Oracle stored procedure in a Java EE web application (java) using Spring 'CallableStatementCreator'. One of the inputs for the stored procedure is a DATE. My attributeValue is a ...
0
votes
1answer
71 views

mysq stored procedure returns false

After this method is invoked, the stored procedure is called (it puts 1000 new records to db). But bool is false, why? public void loadTestData() throws SQLException { CallableStatement cStmt = ...
1
vote
2answers
250 views

Java: Calling a stored procedure in an oracle database

EDIT: While some of the answers in this question may help others with different problems, the solution was actually related to some bug with the auto-commit feature on a database connection! Forcing a ...
1
vote
1answer
525 views

JDBC execute SQL Server stored procedure with return value and input/output parameters

I have a stored procedure that takes 1 input value, 2 output parameters and also returns a value on execution Over the internet i saw references using Call CallableStatement cstmt = ...
-2
votes
1answer
106 views

How to store data in two tables

I want to store following data is mysql data base How to write jdbc program for storing following data I am having following table message(messageid, message_heading ,message_data) ...
2
votes
3answers
152 views

Execute “sp_msforeachdb” in a Java application

Hi StackOverflow community :) I come to you to share one of my problems... I have to extract a list of every table in each database of a SQL Server instance, I found this query : EXEC ...
0
votes
2answers
38 views

stored procedure out retun always 0.0

I am a newbie to jdbc my progrm always return 0.0... help CallableStatement cs= con.prepareCall("{ call getbalance(?,?) }"); cs.setInt(1, 1234); //cs.setString(2, "dfdf"); ...
0
votes
0answers
35 views

Do a commit, when defaultAutoCommit=true in a StoredProcedure class

I have an implementation of StoredProcedure: @Component("setContactos") public class SetContactos extends StoredProcedure { private static String SQL = "followheel.set_contacto"; @Autowired ...
1
vote
3answers
248 views

mssql stored procedure and jdbc

I am struggling with MS SQL 2005 and JDBC. I have stored procedure: set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER proc [dbo].[sp_logincheck] @username as nvarchar(50), @password as ...
0
votes
1answer
58 views

Sql views vs jdbc select-join, where to abstract?

I have 3 tables (see below), Table A describes a product, Table B holds inventory information for different dates, and Table C holds the price of each product for different dates. Table A ...
-1
votes
1answer
48 views

Suggestion needed regarding performance of stored procedure [closed]

We have an application which needs to write data to a particular table in oracle DBMS. But before writing to the table it do certain manipulation on the data it writes. We are now planning to take ...
1
vote
1answer
115 views

Callable statement taking lot of time when passing * as an parameter

I have the following piece of code. When I pass normal strings like "firstname lastname". The stored procedure returns within no time. but when I call it with firstname* , it takes lot of time. When I ...
1
vote
1answer
198 views

postgresql with jdbc and stored procedures (functions): ResultSet

I just tried to call a stored function from the server (getStat), that is looking like this: create type stat as (type text, location text, number int); create function getStat() returns setof stat ...
1
vote
1answer
361 views

Wrong number or type of arguments while inserting Blob null in Stored Procedure

i have following stored procedure in oracle database create or replace procedure cust_details(idValue Custdetails.id_value%type, idUser ...
1
vote
1answer
241 views

spring 3.1 with hibernate 4 can't use StoredProcedure with OracleTypes

Recently we upgraded from hibernate 3.5 to 4.1.7 as well as spring from 3.0.5 to 3.1.3. Hibernate is configured via jpa in spring so no changes is made. After the upgrade, most of the stuff works ...
0
votes
1answer
471 views

Spring SimpleJdbcCall default (optional) arguments

I am trying to invoke a stored procedure which has default (optional) arguments without passing them and it is not working. Essentially the same problem as described here. My code: ...
1
vote
1answer
100 views

Looping insert of multi-column cursor contents in SQL stored procedure

I am writing a complex Stored Procedure in ORacle that does several things, as part of a Java program with JDBC. First, it needs to perform a very complex SELECT to read information into a cursor, ...
2
votes
0answers
350 views

Batch executing of stored procedure with Spring JDBC API

Is it possible to execute stored procedure using Spring JDBC API in batch mode? I tried to use Spring JdbcTemplate's method batchUpdate and it doesn't work. I use Spring 3.0 and Oracle JDBC driver ...
0
votes
1answer
134 views

Jdbc utility for calling procedure in oracle

I have complex procedures in oracle package with complex in/out parameters. I will show one of the my procedures in following : PROCEDURE Authorize(PO_ErrorCode OUT NUMBER, ...
1
vote
1answer
228 views

Call a Oracle Procedure in a Java Batch containing Insert and Update Queries (Statement)

I am working on a Java based project, where things are implemented in the following way There are some classes (A,B,C,D....) which takes Hash Map having key as an Integer and value as an array list ...
0
votes
0answers
136 views

SQL Server 2008 x64 Express Batch Insert Throughput Performance to CLR 'Instead Of Insert' Trigger

I have a simple NO-OP CLR Trigger being fired on a six field table with schema: datetime (PK) char (PK) int (PK, FK) varchar(1) tinyint real which should be a total of 19 bytes / row ...
1
vote
2answers
5k views

PLS-00306: wrong number or types of arguments in call to GET_NEW_EVENTS in Java

I'm getting the below error while calling a stored procedure from Java: "java.sql.SQLException: [Oracle][ODBC][Ora]ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call ...
0
votes
0answers
39 views

JDBC, MySQL Procedures PROS/CONS [closed]

I have used JDBC on my JavaSE applications having all the DML SQLs inside a Service/Persistence class of the said application (which I maybe seeing a wrong idea, I think). I begun studying deeper ...
1
vote
0answers
547 views

Handling Oracle Stored Procedure IN OUT Cursor using JDBC with JBoss 5.1

I'm having a lot of issues trying to handle an IN OUT cursor for a stored procedure being called for an Oracle DB using JDBC. You can see below how I've been calling/trying to call the stored ...
1
vote
1answer
326 views

JDBC exception at getting decimal out parameter of stored procedure

I'm trying to get parameter from MYSQL procedure. My proc: CREATE PROCEDURE proc(someIn INT UNSIGNED, anotherIn INT UNSIGNED, OUT x DECIMAL(10,7), ...
0
votes
1answer
252 views

Unable to return a ResultSet via JDBC when SELECTing from a temp table in MS SQL 2008 using a Stored Proc

I have a stored proc which creates multiple temp tables, then creates a join on the various temp tables. If I execute the stored proc in MS SQL 2008 I am able to see the output of the resulting ...
0
votes
1answer
743 views

Sybase stored procedure through JDBC

This one has baffled me for a long time, so I am trying to get some help here :) I am using JDBC to connect to an age old Sybase Adaptive server 6 (!!!) I couldn't even find the JDBC drivers for it ...
1
vote
3answers
687 views

How in JDBC can you call a stored procedure procudure when only setting some parameters

What is the best way to make a call to a stored procedure using JDBC if you only want to set some of the parameters? If I was just using SQL, I could set the paramerers by name in the SQL to call the ...
0
votes
2answers
471 views

Mysql inserts in stored procedure slow over Java JDBC

I am seeing mysql insert times performing orders of magnitude slower when called over JDBC when compared to calling from an IDE or on the mysql command line and was wondering if anyone could point me ...
1
vote
1answer
401 views

Use SYS_REFCURSOR in procedure or function

I would be calling procedure or function from java using JDBC. In terms of best practice and performance, it is better to use a function which returns a SYS_REFCURSOR or use a procedure which returns ...
0
votes
0answers
168 views

Updating to ojdbc6.jar with ibatis 2

I am using ibatis 2, ojdbc6.jar (I want to upgrade to ojdbc6.jar from ojdbc14.jar) but am having problems with stored procedures. We have following code: <parameterMap id="paramid" ...
1
vote
2answers
989 views

How do I return a sys_refcursor from oracle SP in java?

I have a stored procedure (SP) in oracle: CREATE OR REPLACE PROCEDURE "SP_SEL_LOGIN_INFO" ( p_username IN varchar2, p_ResultSet OUT sys_refcursor ) AS begin OPEN p_ResultSet FOR SELECT * FROM ...
1
vote
1answer
471 views

Accessing stored procedure's multiple result sets in Apache Camel

I am building a proof of concept for using Apache Camel. I am trying to build a route that will call the stored procedure on a Sybase DB using JDBC component and then process its multiple results ...
0
votes
2answers
438 views

TEMPORARY TABLE doesn't exist, not created as expected? MYSQL

-- -------------------------------------------------------------------------------- -- Routine DDL -- -------------------------------------------------------------------------------- DELIMITER $$ ...
1
vote
3answers
650 views

Errors when fetching sys cursor from plsql using jdbc

I have a stored procedure which returns sys_refcursor and I am trying to fetch the cursor from java using JDBC. plsql stored procedure create or replace procedure my_proc(p_deptno IN ...
3
votes
1answer
1k views

in Oracle JDBC is it possible to batch stored procedure calls and retrieve OUT parameters?

I have a stored procedure in an Oracle 11g database like f(a IN, b IN, c OUT). I want to call it from JDBC in batch mode and then read all the OUT variables. Is this possible? I have this so far ...

1 2 3