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!

Clean Databases (episode 8)

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 8, 2009
Messages
48
Reaction score
54
Hello, I think this is interesting, also its faster when importing / restoring.

All tables are clean with original structure.

Deluxor - Clean Databases (episode 8) - RaGEZONE Forums


Download:
 
Newbie Spellweaver
Joined
Mar 8, 2009
Messages
48
Reaction score
54
Why did you not give credits to x30? You probably used his queries.

No I just need to give credit to the one who posted the database dumps.

And for your info i did not used any kind of "x30" queries.

Code:
/*Disable Constraints & Triggers*/
exec sp_MSforeachtable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'
exec sp_MSforeachtable 'ALTER TABLE ? DISABLE TRIGGER ALL'

/*Perform delete operation on all table for cleanup*/
exec sp_MSforeachtable 'DELETE ?'
/*Enable Constraints & Triggers again*/
exec sp_MSforeachtable 'ALTER TABLE ? CHECK CONSTRAINT ALL'
exec sp_MSforeachtable 'ALTER TABLE ? ENABLE TRIGGER ALL'
/*Reset Identity on tables with identity column*/
exec sp_MSforeachtable 'IF OBJECTPROPERTY(OBJECT_ID(''?''), ''TableHasIdentity'') = 1 BEGIN DBCC CHECKIDENT (''?'',RESEED,0) END'
 
  • Like
Reactions: emi
Skilled Illusionist
Joined
Jan 5, 2009
Messages
343
Reaction score
391
you know that not all tables need to be cleaned, right ? anyway haven't tested ur db :p maybe others can post if it's fully workin :)
 
Newbie Spellweaver
Joined
Jan 24, 2009
Messages
57
Reaction score
3
yeah just right click your database, go to tasks and there is an option (free translation so could be another term) reduce
follow the instructions and it should be around 4 gigs or so
 
Skilled Illusionist
Joined
Dec 18, 2011
Messages
312
Reaction score
57
Can you reupload MultiUpload isn't working.
 
RaGEZONER
Joined
Sep 25, 2009
Messages
637
Reaction score
398
ADVISORY: DO NOT USE any other DATABASE that has BEEN CLEANED for now except the one released by Extornia, there were reports of incompatibility issues - your experience might have been different from the others but prevention is better than cure, less headache less hassle.

Its best to use the huge default database or use the ones that you are certain they work and have been cleaned 100% properly guaranteed.
 
Experienced Elementalist
Joined
Sep 23, 2012
Messages
253
Reaction score
12
Don't working for me, used it and got everytime errors in ChatNode and GlobalMgrSvr

Code:
127.0.0.1:0

me to loool! i deleted original db files and i used yours and now globalmgrsvr,chatnode,agentshop,srv_01 doesn't work ! :)
 
Status
Not open for further replies.
Back
Top