Tagged Questions
0
votes
0answers
8 views
pl/sql update procedure with cursor gets stuck
i wrote a program that uses cursor in order to update some row in these table- here is the program:
declare
-- Local variables here
cursor s is
(select unique *
from ...
0
votes
0answers
16 views
Retrieving an Oracle cursor from a Stored Procedure using Access 2003
I need to retrieve data from an Oracle Stored Procedure. The stored Procedure is as follows:
CREATE OR REPLACE PROCEDURE ATP_CONTRACT_SP
(
p_ContractNumber IN VARCHAR2,
p_ResultSet OUT ...
0
votes
1answer
84 views
SQL: Insert new records from 1 table to another
I have two tables with students (using Microsoft SQL Server 2008 R2 Standard edition). I Need to write a procedure, so that if 1st table has new students, the second one gets updated as well
this ...
0
votes
1answer
39 views
Error in Stored procedure (Error Code : 1064)
My stored procedure is like this ...
DELIMITER $$
DROP PROCEDURE IF EXISTS `tds_dev`.`BlockTokenSheduler`$$
CREATE PROCEDURE `BlockTokenSheduler`(cdate date,shift varchar(20))
BEGIN
...
3
votes
2answers
68 views
How to do an Alter in SQL Cursor
I have 100's of databases for which I need to do an Alter to a procedure, they all have the same procedure. How can I add a cursor that will allow me to do this alter?.
DECLARE @databasename ...
0
votes
1answer
34 views
Wierd PL SQL invalid cursor
When running the following code I get a ORA-01001: invalid cursor Not sure whats going on, I converted it to a procedure and it started happening;
CREATE OR REPLACE PROCEDURE ...
0
votes
1answer
12 views
Return implicit string from oracle SP
Hi i have the following stored procedure...
CREATE OR REPLACE PROCEDURE DB.INSERTGOOD
(
--CapRefCursor OUT Cap_Cur_Pkg.CapCur,
p_APPLIANT_TLT IN GOODRIGHT_MANUAL.APPLICANT_TLT%TYPE,
p_APPLIANT_NME IN ...
-1
votes
0answers
54 views
How can I use cursor in asp.net with stored procedure? [closed]
How deal with cursor in asp.net or c# by stored procedure? Can I say cursor =data table?
<a href="mailto:elsokaryy2006@yahoo.com?Subject=Tell me anything">
Send Mail</a>
1
vote
1answer
132 views
Sql Stored Procedure while loop
Example of Data:
ID Name ParentID
1 parent-1 NULL
2 parent-2 NULL
3 sub 1
4 child-1-1 3
5 child-1-2 1
6 child-2-1 2
Now If I search for Name like '%child-1%', I ...
0
votes
1answer
40 views
Showing rows data as in new column in sql server 2005
I have a table that Select query returns me results as:
[Indidual] [team] [Score]
x Man U Conversion
x Man U Penalty
x Man U ...
3
votes
2answers
53 views
Using MAX of a field to select a record returns MAX of the table ignores the condition
I'm doing a stored procedure for a report, and I'm trying to get only those records with the highest value of a determined field (accumulated amount), the thing is I can't seem to find the solution to ...
1
vote
1answer
52 views
Cursor seems to be fetching only one record
I'm trying to do this a stored procedure that for each Location = "Ubicacion" (counts the number of fixed asssets = Ubicacion, sums the amount of money those assets are worth, and sums the amount of ...
0
votes
1answer
58 views
Cursor in SQLServer Procedure [duplicate]
I'm trying to insert the currentDate in the table OBJ_Availability.
First I make a temporary table of all the start and enddates in the table.
Later I start a new cursor where I'm going to loop all ...
0
votes
0answers
57 views
Procedure cursor in SQL Server
I'm creating a procedure with 2 cursors, I don't know the syntax in SQL Server... here is in pseudo what I want to do... I'm not sure of the middle while.
In PL-SQL I would do it like this, need some ...
0
votes
1answer
33 views
Oracle create precedure with cursor loop
I'm creating a procedure in Oracle to search for some keywords specified in the parameter and print out the line. This is my code below. It works but I don't know why it keeps printing the last line ...
1
vote
1answer
58 views
SQL cursor & stored procedure order arrangement
I was working on a stored procedure to update the order field in a product table.
It works only the problem now is the the last item in the loop(cur), is increased twice instead of once (so dubbeled). ...
0
votes
0answers
18 views
How to create a query using parameters and use a cursor to iterate through the rows in mysqli inside a stored procedure
Ok, so i have a stored procedure to which i am going to pass the where clause and i need to form a query with it and run it and use a cursor to iterate through it. I looked up found something about ...
0
votes
1answer
335 views
Insert Data vertically into temp table using cursor
As above mentioned. I have created 2 temp tables in SQL and need to insert vertically to complete all columns but as I understand, you can only insert data horizontally?
Is there a way around this?
...
0
votes
0answers
53 views
how to set stop criteria for a mysql cursor which iterates over all rows in a table, properly?
I'm learning mysql cursor.
The following is a mysql procedure, I actually want to loop over all rows in table A, and 'select' something related in table B for each A's row.
Now the problem is this ...
0
votes
0answers
58 views
Cursor occasionally lose data when open in run time
This is my cursor with SELECT statement which always return right result. But when i use it in a procedure, it sometimes get wrong result (return only one row).
This problem appears with a large ...
0
votes
2answers
304 views
Best way to replace cursor in SQL Server 2008
I want to replace the cursor code from my stored procedure
DECLARE CursorXD CURSOR FOR
SELECT
IDOrdre, Quantity,fabnum
FROM prod_ordreplanificationdetail
WHERE fab = @num
AND ...
2
votes
2answers
176 views
PLS-00386: type mismatch found between FETCH cursor and INTO variables
The following package throws :
PLS-00386: type mismatch found at 'V_STUDYTBL' between FETCH cursor and INTO variables
Purpose of the code:
Define two types outside the package, one is used to send a ...
0
votes
0answers
316 views
How to return resultset from MySQL Stored Procedure using prepared statement?
DELIMITER $$
CREATE PROCEDURE List_IL()
BEGIN
DECLARE Project_Number_val VARCHAR( 255 );
DECLARE Temp_List_val VARCHAR(255);
DECLARE Project_List_val VARCHAR(255);
DECLARE FoundCount INT;
...
0
votes
0answers
39 views
How to end only the inner loop in a cursor in mysql procedure? [duplicate]
OPEN pCur;
prod_loop: LOOP
FETCH pCur INTO prodId;
--INSERT1
--INSERT2
OPEN compCur;
comp_loop: LOOP
FETCH compCur INTO compId;
--INSERT1
--INSERT2
END LOOP comp_loop;
END LOOP ...
0
votes
0answers
51 views
Why in MySQL a cursor don't keep the 'order by' from the declaration
I have declaration for a cursor and in the query I had set an order by clause, but in the cursor, the order of the results change. Why this is happening, I have the mysql-5.6.10-osx10.7-x86, and the ...
0
votes
0answers
23 views
How to return cursore from stored procedure
I want to return Cursore rst from below stored procedure. It is only printing 'number of rows fetched = 8'.
I want to access all 8 rows detail in my program.
delimiter //
CREATE PROCEDURE ...
1
vote
0answers
144 views
Oracle PL SQL procedure to disaggregate value from parent to child
I am working on a case where I have
Parent-Child hierarchy of products: [highest level] Raw Material RM > Work in Progress WIP > End Product EP [lowest level]
Orders for End Products for specific ...
2
votes
1answer
97 views
nested cursors in stored procedure
i have temporary table created in stored procedure with 52600 records, i wanted to iterate the temporary table and update a column for each row.
here i have two cursors one for temp table and second ...
0
votes
1answer
654 views
how to insert into a table using stored procedures in DB2 using SQL?
I wanted to know how to insert into a table using stored procedures in DB2 using SQL.
I have created a table as follows:
create table ADCLIBT.Itest
(ITNBR CHAR(15) CCSID 65535 NOT NULL DEFAULT '');
...
0
votes
2answers
69 views
How much slow are the cursors in Sybase
I have heard that cursors are very slow in Sybase, it is even said that we should avoid cursors. Can somebody tell how slow are the cursors in Sybase. Are read only cursors fine, or they are also very ...
1
vote
1answer
174 views
Using cursors in a stored procedure
Here is my stored procedure :
CREATE PROCEDURE uspUpdateDataInBapMidTable (
@companyName varchar(50)
)
AS
BEGIN
SET @companyName = 'nürnberger'
DECLARE @tableNameMid varchar(50) , ...
0
votes
0answers
22 views
Which declarations will the cursor accept when there are two statements giving the values?
I am trying to understand the code which usescursor but I am confused with two select statements appearing close to each other.
sample code to I want to understand,
Declare @item as ...
0
votes
1answer
33 views
How to achieve this (Best possible way to query DB in this scenario)
I am working on an asp.net application with MS SQL DB. I have the following secnario
A table with User Location Information
User ID, GEOGRAPHIC POINT, LOCATION TYPE
I want to do the following:
...
-1
votes
2answers
87 views
MySQL: Fetch cursor into DATE
I Defined the following procedure which compiles correctly.
http://pastebin.com/pBHFctHq
When i call that procedure it returns an error:
ERROR 1292 (22007): Incorrect date value: ''2012-12-30'' ...
0
votes
1answer
335 views
Error in SQL Server 2008 stored procedure / cursor execution in asp.net using C#?
Hello this is my first cursor program that I have written.
I am surprised to see the error after successful affecting the rows of table in my procedure that I want to do using this procedure.
I am ...
0
votes
2answers
241 views
SQL - Slow Cursor Simple Stored Procedure
I have a relatively simple stored procedure, but the amount of data in the transactions table is causing it to take forever to run. Any suggestions on a way I could either optimize the query or ...
1
vote
2answers
243 views
MySQL - cursor not working in stored procedure
I see this question has been asked before but no answer provided.
I am using a cursor to parse the data returned by a SELECT statement. However, it does not return the data I expect when compared to ...
0
votes
1answer
83 views
MySQL cursor exits prematurely
I have a SP cursor which works fine with all sets of data , except one. This SP has nested cursors in it.
The cursor is like this:
...
BLOCK1: begin
DECLARE cur1 CURSOR FOR select date, value1, ...
0
votes
1answer
131 views
using cursor after a delete statement in a stored proc [duplicate]
Possible Duplicate:
Oracle Accessing updated records during the same transaction
I've a oracle store proc somewhat like this (actual sqls are different)
CREATE OR REPLACE PROCEDURE mysp
IS
...
5
votes
1answer
334 views
Not getting expected output while using Temp Table or Cursor in MySQL
I'm doing some POC. I've written one stored procedure in MySQL. I'm using MySQLWorkbench for database operations like creating new table, stored procedures, query execution etc. I'm observing some ...
0
votes
1answer
131 views
MYSQL cursor repeats wrong data
I'm trying to create a stored procedure and a cursor for the first time, and it isn't behaving quite as expected. Everything executes just fine, but the output data isn't correct. If I manually ...
0
votes
2answers
475 views
get schema name as a user input and use it in a cursor
I want to get the user input to a variable and use it to a cursor. This user input says which database to use.
--source source
source varchar2(100) := &SOURCE_ATS_USER_SCHEMA;
CURSOR cur_list is
...
0
votes
1answer
267 views
Using a Cursor to Update Rows in Single Table
Most Read SQL Articles
More News and Tutorials (Sign-up for Free Membership)
http://searchsqlserver.techtarget.com/tip/SQL-Server-batch-rules
I am seeking guidance using MS SQL cursor or SQL while ...
1
vote
1answer
2k views
Execute oracle stored procedure with out cursor from PL/SQL developer
I'm having some troubles executing oracle stored procedure from package.
I've intalled PL/SQL developer on local machine, and when I try to test procedure I get generated code like this:
begin
-- ...
0
votes
1answer
734 views
How to return a empty cursor from a stored procedure?
I have OUT parameter of a stored procedure as a REF CURSOR. Based on a particular condition, I would want to either return a result set (already implemented). But how do I return an empty cursor when ...
1
vote
0answers
544 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
4answers
140 views
oracle cursor value vary depending on condition
I would like to ask if it is possible to assign a variable on a cursor declaration.
CURSOR cur_name IS <variable_name>
What I would like to accomplish is that in a cursor some of where clause ...
0
votes
3answers
162 views
Need alternative to cursor for sql query. Currently takes too long
CREATE TABLE #TempTable (stuID int, courseID int,outputvalue decimal(9,5))
DECLARE @parm1 int, @parm2 int, @parm3 int, @parm4 int, @parm5 varchar(10)
, @parm6 datetime, @parm7 datetime, @parm8 ...
0
votes
1answer
3k views
DB2 Stored Procedure using a Cursor
DB2 V9 Z/Os
CREATE PROCEDURE SERDB.I21MMSNOUPD ()
RESULT SETS 1
LANGUAGE SQL
FENCED
COLLID SER
WLM ENVIRONMENT DDSNSPENV
RUN OPTIONS 'NOTEST(NONE,*,*,*)'
P1: BEGIN
--Declare variables
DECLARE ...
0
votes
2answers
218 views
stored procedure returning a calculated resultset
i have a table like this
from | to | value
-----------------------
08:10 | 08:12 | 2
08:13 | 08:20 | 5
08:30 | 08:45 | 3
08:46 | 08:55 | 1
and i need to group by intervals of say 1, ...
