I use Microsoft Dynamics GP 10. I need to update all dimensions of all items.
I know SQL and have googled around to see how to do a very large update on 3 columns for 20000+ rows but can't find anything that really looks like the best way possible without locking up my server.
How would I be able to do a very large update to a table. Would this be good enough? Even for 20000+ rows?
UPDATE IV00101
SET (IV00101.Length = NEW13.Length, IV00101.Width= NEW13.Width, IV00101.Height= NEW13.Height)
WHERE (IV00101.ItemNmbr = NEW13.ItemNmbr)
Thanks everyone!!
Jeff
Systems Admin
I know SQL and have googled around to see how to do a very large update on 3 columns for 20000+ rows but can't find anything that really looks like the best way possible without locking up my server.
How would I be able to do a very large update to a table. Would this be good enough? Even for 20000+ rows?
UPDATE IV00101
SET (IV00101.Length = NEW13.Length, IV00101.Width= NEW13.Width, IV00101.Height= NEW13.Height)
WHERE (IV00101.ItemNmbr = NEW13.ItemNmbr)
Thanks everyone!!
Jeff
Systems Admin