SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsDatabaseSQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old April 21st, 2005, 02:26 PM
csillagyitzik csillagyitzik is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Posts: 39 csillagyitzik User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 49 m 40 sec
Reputation Power: 5
Update limit in a stored procedure

I have a table with more then 20,000 records. this table has a record_id column. I want to change the record_id values based on a different sorting.
I wrote a stored procedure using a cursor running over all the records in that table (in the new order) and then for each record assign a new record_id.

when I run the stored procedure without the update, I get all 22,798 records. when I run it with the update I get only 4,838 records.
Is there a limit to the amount of record a stored procedure can update? can it be changed?

STORED PROCEDURE:
CREATE PROCEDURE sft_sort_table as
BEGIN
DECLARE @record_ID INT
DECLARE @MAX_record_ID INT
DECLARE @CUR_RECORD_ID INT

--Get the max rate_record_id
SELECT @MAX_record_ID INT = max(record_id) FROM table

DECLARE curRecord CURSOR FOR
select record_id from table order by new_sort
FOR UPDATE OF record_id
OPEN curRecord
FETCH NEXT FROM curRecord INTO @CUR_RECORD_ID
WHILE @@FETCH_STATUS = 0
BEGIN
SET @MAX_RECORD_ID = @MAX_RECORD_ID + 1
PRINT 'Record '
PRINT @CUR_RECORD_ID
Print 'will be '
PRINT @MAX_RECORD_ID
PRINT '-----------------------------'
--Update the record_id
UPDATE table SET record_id = @MAX_RECORD_ID
WHERE current of curRecord

FETCH NEXT FROM curRecord INTO @CUR_RECORD_ID
END
CLOSE curRecord;
DEALLOCATE curRecord;
END;

Reply With Quote
  #2  
Old April 21st, 2005, 02:30 PM
Memnoch's Avatar
Memnoch Memnoch is online now
Unholy Moderator
Click here for more information.
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,879 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 18 h 10 m 33 sec
Reputation Power: 500
I'm questioning this line?
Code:
UPDATE table SET record_id = @MAX_RECORD_ID
WHERE current of curRecord 

my assumption would be it should be like this
Code:
UPDATE table SET record_id = @MAX_RECORD_ID
WHERE record_id = OldRecordID 

Reply With Quote
  #3  
Old April 21st, 2005, 04:13 PM
csillagyitzik csillagyitzik is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Posts: 39 csillagyitzik User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 49 m 40 sec
Reputation Power: 5
I tried that too, got the same results

this is how I did it before, but it gives me the same results (only4838 records are update)

Reply With Quote
Reply

Viewing: ASP Free ForumsDatabaseSQL Development > Update limit in a stored procedure


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
Stay green...Green IT