• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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