• 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.

money checksum err

Newbie Spellweaver
Joined
Mar 22, 2017
Messages
84
Reaction score
7
Hello everybody,
i have a little problem with my RoleData Database
i have the Problem that i am stucking by entering the Wold.
in der logs is standing:

_DBLoadOtherDB money checksum err , dbSerialCode1=151747415 dbSerialCode1=857565773 roleSerialCode=857566181 roleSerialCode1=151747327 DBID=580

when i set the SerialCode1 to zero it will work again.
But then the progress i made is gone.

Does anyone have an clue why that is happening?


Background Story:

i migrated my ROM_World from 6.0.7 to 6.5.2.
i compared all tables and i saw that there only changed the RoleData table with the colums MirrorCoin, Phantom, WeekInstance, WeekInstDay, WeekResetCount.
So i added the rows and set default values.

Update:
i also saw this post and tryed this but the problem is still there

http://forum.ragezone.com/f884/missing-sql-tables-form-6-a-1171779/
 
Last edited:
Newbie Spellweaver
Joined
Mar 22, 2017
Messages
84
Reaction score
7
It seems like i solved my Problem.

a Database field was to small.
I edited my 6.0.7 Database with this Code now it seems to be working.

Code:
ALTER TABLE RoleData
ADD mirrorcoin [int] NOT NULL CONSTRAINT [DF_RoleData_mirrorcoin]  DEFAULT ((0)),
    phantom  [int] NOT NULL CONSTRAINT [DF_RoleData_phantom]  DEFAULT ((0)),
    weekinstance   varbinary(1) NULL,
    weekinstday  [int] NOT NULL CONSTRAINT [DF_RoleData_weekinstday]  DEFAULT ((0)),
    weekresetcount  [int] NOT NULL CONSTRAINT [DF_RoleData_weekresetcount]  DEFAULT ((0))
GO

UPDATE [ROM_World].[dbo].[RoleData]
set weekinstance = CONVERT(BINARY,'')


alter table dbo.Roledata alter column Buff varbinary(2248);
alter table dbo.Roledata alter column phantom varchar(1) NOT NULL;

until now I have no more database errors.
 
Last edited:
Upvote 0
Back
Top