Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Windows Servers

Support::Windows Servers Support forum for Windows EQEMu users.

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #6  
Old 05-10-2011, 11:32 AM
rencro
Hill Giant
 
Join Date: Sep 2008
Location: So. California
Posts: 219
Default

Well, thats slightly unfair as the latest peq (at this time) is 1751 and this missing info comes from 1711. Now the assumption is that all the updates prior to 1751 are present in the db when peq_1751, along with load_players gets sourced at creation(newdb), but for whatever reason, part of 1711's is not. Now, what else is missing? Should ALL required sql be sourced? Going how far back?

For me, I modified 1711.sql from

Code:
ALTER TABLE `altadv_vars` ADD `account_time_required` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `clientver`;
ALTER TABLE `account` ADD `time_creation` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `suspendeduntil`;
UPDATE `account` SET `time_creation` = UNIX_TIMESTAMP() WHERE `time_creation` = 0;
to

Code:
ALTER TABLE `account` ADD `time_creation` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `suspendeduntil`;
UPDATE `account` SET `time_creation` = UNIX_TIMESTAMP() WHERE `time_creation` = 0;
sourced it, then went on to source all the "required" from 1752 up to my latests pull, which was 1887...

Actually I copied all the required sql's to be sourced to a new directory, along
with my fixed sql above, then I run this bat file from that new directory:

Code:
@echo off
setlocal
set files=*.sql
set output=merged_req.sql
echo. > %output%
for %%A in (%files%) DO call :MERGE %%A %output%
goto end

:MERGE
if '%1'=='%output%' goto EOF
echo -- %1 >> %2
type %1 >> %2
echo. >> %2
goto EOF
:END
:EOF
then I source merged_req.sql but thats OT..
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 04:04 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3