MapleStory 2 HubM2H
MapleStory 2 Hub•6mo ago•
45 replies
🗡 faye

missing row (i think)

i think my import got fucked up, what is this and how do i manually fix it? i have admin access to the db
image.png
Solution
if it fails can try some of these:

// Set MySQL timeout configurations
metadataContext.Database.ExecuteSqlRaw(@"SET GLOBAL wait_timeout=3600"); // 1 hour
metadataContext.Database.ExecuteSqlRaw(@"SET GLOBAL interactive_timeout=3600"); // 1 hour
metadataContext.Database.ExecuteSqlRaw(@"SET GLOBAL net_read_timeout=300"); // 5 minutes
metadataContext.Database.ExecuteSqlRaw(@"SET GLOBAL net_write_timeout=300"); // 5 minutes
metadataContext.Database.ExecuteSqlRaw(@"SET GLOBAL lock_wait_timeout=300"); // 5 minutes
image.png
Was this page helpful?