Viewing 3 posts - 1 through 3 (of 3 total)
Thanks Jeff for the detailed insight on the necessary shift in programmatic perspective, I truly appreciate the help!
Right now I'm taking the training courses offered through CBT Nuggets on 70-461...
May 11, 2014 at 7:32 pm
#1712512
Thanks everybody for the help! Here is what I ended up with:
USE DiabloLootSystemClone
Go
DECLARE @counter int
SET @counter = 1
WHILE @counter <= 1000
BEGIN
INSERT ChestItems
SELECT c.ChestID
,i.ItemID
FROM Chests...
May 11, 2014 at 10:19 am
#1712485
Thanks everyone for the quick responses and the helpful attitude! I come from a C# programming background where iterative loops aren't as costly, So i'll definitely be reading that article!...
May 7, 2014 at 6:14 am
#1711445