Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Delete Old Accounts from database

Newbie Spellweaver
Joined
Jun 19, 2014
Messages
26
Reaction score
0
Code:
USE Account;
GO
SELECT COUNT(*) AS BeforeTruncateCount 
FROM dbo.Accounts;
GO
TRUNCATE TABLE dbo.Accounts;
GO
SELECT COUNT(*) AS AfterTruncateCount 
FROM dbo.Accounts;
GO

This post is much more related to this thread :
Code:
[URL="http://forum.ragezone.com/f853/release-dragon-nest-5-classes-1013456/"]5 Class | 70 Cap | VM + Client Tutorial[/URL]
since the code posted is using Account Database. You can implement this code to others if you know what you are doing.

Have Fun :)
 
Back
Top