Hi I'd like to share something related to "Hatching TacticsID" error. I think there's a lot of ways posted here, but I figure to post one as an alternative way :)
This is the error, some of you probably got the same:
[Only registered and activated users can see links. Click Here To Register...]
The boring part:
And reload your GameServer to see if the error still appears ;)
Good luck and have fun, hope this helps a little bit.
This is the error, some of you probably got the same:
[Only registered and activated users can see links. Click Here To Register...]
The boring part:
Code:
USE [SRO_VT_SHARD] GO SET NOCOUNT ON; DECLARE @invalidTacticsID INT; DECLARE RefNest_Cursor CURSOR FOR SELECT DISTINCT dwTacticsID FROM Tab_RefNest AS T WHERE NOT EXISTS (SELECT * FROM Tab_RefTactics AS R WHERE T.dwTacticsID = R.dwTacticsID) ORDER BY dwTacticsID ASC; OPEN RefNest_Cursor; FETCH NEXT FROM RefNest_Cursor INTO @invalidTacticsID; WHILE @@FETCH_STATUS = 0 BEGIN DELETE FROM Tab_RefNest WHERE dwTacticsID = @invalidTacticsID; PRINT 'dwTacticsID: ' + CAST(@invalidTacticsID AS VARCHAR) + ' deleted from Tab_RefNest.'; FETCH NEXT FROM RefNest_Cursor INTO @invalidTacticsID; END; CLOSE RefNest_Cursor; DEALLOCATE RefNest_Cursor; GO
Good luck and have fun, hope this helps a little bit.