Is it possible to convert an existing 2008 DB to 1.5 DB?

Results 1 to 6 of 6
  1. #1
    A Lost Marine gago117 is offline
    MemberRank
    Feb 2010 Join Date
    PhilippinesLocation
    420Posts

    Is it possible to convert an existing 2008 DB to 1.5 DB?

    If it's possible, any ideas?


  2. #2
    Pee Aitch Pee Dave is offline
    MemberRank
    Mar 2011 Join Date
    The NetherlandsLocation
    722Posts

    Re: Is it possible to convert an existing 2008 DB to 1.5 DB?

    It is. The most important tables would be AccountItem/Account/Character/CharacterItem/Clan/ClanMembers/Friend and Login.
    I done that for 2007 -> 1.5.

    Ideas, you say?
    Just use SQL statements to convert it.

    Example:
    PHP Code:
    INSERT INTO GunzDB2.dbo.Login
    (UserIDAIDPasswordLastConnDateLastIP)

    SELECT 
    GunzDB
    .dbo.Login.UserID,
    GunzDB.dbo.Login.AID,
    GunzDB.dbo.Login.Password,
    GunzDB.dbo.Login.LastConnDate,
    GunzDB.dbo.Login.LastIP
    FROM GunzDB
    .dbo.Login 
    Be sure to pay attention to the AID/CID's. If you ever deleted 1 row then you miss 1 CID/AID.
    Last edited by Dave; 24-06-12 at 06:07 PM.

  3. #3
    A Lost Marine gago117 is offline
    MemberRank
    Feb 2010 Join Date
    PhilippinesLocation
    420Posts

    Re: Is it possible to convert an existing 2008 DB to 1.5 DB?

    Too bad my AIDs/CIDs are messed up. So it isn't possible for my case.

  4. #4
    Pee Aitch Pee Dave is offline
    MemberRank
    Mar 2011 Join Date
    The NetherlandsLocation
    722Posts

    Re: Is it possible to convert an existing 2008 DB to 1.5 DB?

    Quote Originally Posted by gago117 View Post
    Too bad my AIDs/CIDs are messed up. So it isn't possible for my case.
    It is, I also had that problem. I just made a few scripts to correct the AID's.

  5. #5
    A Lost Marine gago117 is offline
    MemberRank
    Feb 2010 Join Date
    PhilippinesLocation
    420Posts

    Re: Is it possible to convert an existing 2008 DB to 1.5 DB?

    Mind if you share 'em?


    Well as I inspect the database, there are some blank registrations which I believe.. messed up the database.

  6. #6
    A Lost Marine gago117 is offline
    MemberRank
    Feb 2010 Join Date
    PhilippinesLocation
    420Posts

    Re: Is it possible to convert an existing 2008 DB to 1.5 DB?

    Anyone?



Advertisement