MS SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesMS SQL 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 Dev Shed Forums Sponsor:
  #1  
Old November 26th, 2003, 02:25 PM
Liz24 Liz24 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Posts: 6 Liz24 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Update Error

I'm trying to updates a table in my database based using the values from another table. I get the following error when I run this update statement:

update refmd
set refmd.code = refmd_other_data.val
from refmd (nolock) join refmd_other_data (nolock) on refmd.id = refmd_other_data.refmd_id
where refmd.active = 'Y' and refmd_other_data.field_id = '114'


Server: Msg 512, Level 16, State 1, Procedure trgu_refmd, Line 15
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression.
The statement has been terminated.

Does this mean I need to use a cursor to step through my updates?

Thanks for any help!

Reply With Quote
  #2  
Old November 26th, 2003, 02:58 PM
swampBoogie swampBoogie is offline
Contributing User
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jan 2003
Location: Paris Uppland
Posts: 2,349 swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level)swampBoogie User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 4 Days 7 h 10 m 28 sec
Reputation Power: 390
No, it means that there are multiple records in refmd_other_data for a specific refmd.id that matches the criteria.

You need to rethink what you are trying to acomplish.

Reply With Quote
  #3  
Old November 26th, 2003, 05:18 PM
Liz24 Liz24 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Posts: 6 Liz24 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I did end up having to use a cursor, thank you very much for your advice however...

DECLARE @md_id int

DECLARE md_cursor CURSOR
FOR
SELECT id
FROM refmd
WHERE active = 'Y'

OPEN md_cursor
FETCH NEXT FROM md_cursor into @md_id
WHILE (@@fetch_status <> -1)
begin
update refmd
set refmd.code = (SELECT val
FROM refmd_other_data
WHERE refmd_id = @md_id and field_id = 114)
WHERE refmd.id = @md_id
FETCH NEXT FROM md_cursor into @md_id
end
CLOSE md_cursor
DEALLOCATE md_cursor

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMS SQL Development > Update Error

Developer Shed Advertisers and Affiliates



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

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


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap