Author Topic: Wipe Discussion Relief Thread  (Read 7834 times)

dragonistrypsis

  • Traveller
  • *
  • Posts: 23
    • View Profile
Re: Wipe Discussion Relief Thread
« Reply #15 on: November 18, 2009, 04:08:46 pm »
I like this thread because I also wipe after being reliefed :detective:

oh yeah, I took a Talad  :@#\ and wiped my Laanx,  :sweatdrop: and felt much lighter. O--)


yeah, I know, I was one of the most outspoken against it at first, but I've had some breathing time with the paper bag.
« Last Edit: November 18, 2009, 04:17:49 pm by dragonistrypsis »

derula

  • Hydlaa Citizen
  • *
  • Posts: 409
  • Staying away because Talad asked nicely
    • View Profile
Re: Wipe Discussion Relief Thread
« Reply #16 on: November 18, 2009, 04:17:54 pm »
Does that mean they wipe my logs??? Is there a way to back them up?? I don't want to lose my logs... *cries*

* derula lies down on a nearby Ulber fur and coils up, occasionally sobbing "no, not my logs..."

steuben

  • Veteran
  • *
  • Posts: 1834
    • View Profile
    • Myspace
Re: Wipe Discussion Relief Thread
« Reply #17 on: November 18, 2009, 04:39:04 pm »
aren't logs just dead trees... for that matter where did you get logs ingame. i didn't think they were implemented yet.
may laanx frighten the shadow from my path.
hardly because the shadow built the lexx.
the shadow will frighten laanx from my path.

Rigwyn

  • Guest
Re: Wipe Discussion Relief Thread
« Reply #18 on: November 18, 2009, 04:52:27 pm »

A Wipe ? Oh noooos... Guess I'll have to start mining plat so I can buy some new Q300's    :'(
Oh !   ???  Wait a minute ...  :o
You mean its back to killing rats with a lame q50 that I can no longer buy from NPC's  ?  :@#\
   

gaelfx

  • Traveller
  • *
  • Posts: 18
    • View Profile
Re: Wipe Discussion Relief Thread
« Reply #19 on: November 19, 2009, 04:42:28 am »
The only thing I want is a garauntee that after the wipe, our Yliakum won't be crawling with Klingons and such, that would make things faaaar too complicated.

(I couldn't help it, I had to perform at least a little lameness  :oops: )

Syenna

  • Hydlaa Resident
  • *
  • Posts: 89
    • View Profile
Re: Wipe Discussion Relief Thread
« Reply #20 on: November 19, 2009, 09:59:23 am »
Does that mean they wipe my logs??? Is there a way to back them up?? I don't want to lose my logs... *cries*

* derula lies down on a nearby Ulber fur and coils up, occasionally sobbing "no, not my logs..."

Just save a copy outside where they usually go on your computer.

gaelfx

  • Traveller
  • *
  • Posts: 18
    • View Profile
Re: Wipe Discussion Relief Thread
« Reply #21 on: November 19, 2009, 10:55:41 am »
We need a new forum emoticon for "over your head" jokes, apparently

derula

  • Hydlaa Citizen
  • *
  • Posts: 409
  • Staying away because Talad asked nicely
    • View Profile
Re: Wipe Discussion Relief Thread
« Reply #22 on: November 19, 2009, 03:10:54 pm »
We need a new forum emoticon for "over your head" jokes, apparently

Agreed.

weltall

  • Associate Developer
  • Veteran
  • *
  • Posts: 1671
    • View Profile
    • http://weltall.heliohost.org
Re: Wipe Discussion Relief Thread
« Reply #23 on: November 19, 2009, 04:42:36 pm »
DELETE FROM characters;


Edit: ops wrong window.

neko kyouran

  • Guest
Re: Wipe Discussion Relief Thread
« Reply #24 on: November 19, 2009, 05:13:30 pm »
begin tran
DELETE FROM characters;
--rollback
--commit

f'xd

:P

derula

  • Hydlaa Citizen
  • *
  • Posts: 409
  • Staying away because Talad asked nicely
    • View Profile
Re: Wipe Discussion Relief Thread
« Reply #25 on: November 19, 2009, 05:51:54 pm »
DELETE FROM characters;

Can't you start a poll for which query to use?

My vote goes for DELETE FROM characters WHERE user_id != (SELECT id FROM users WHERE email = '[email id removed]')

(okay this probably won't do what I want it to do; whatever you know what I mean)
« Last Edit: November 19, 2009, 07:04:09 pm by neko kyouran »

weltall

  • Associate Developer
  • Veteran
  • *
  • Posts: 1671
    • View Profile
    • http://weltall.heliohost.org
Re: Wipe Discussion Relief Thread
« Reply #26 on: November 19, 2009, 06:53:22 pm »
DELETE FROM characters;

Can't you start a poll for which query to use?

My vote goes for DELETE FROM characters WHERE user_id != (SELECT id FROM users WHERE email = '')

(okay this probably won't do what I want it to do; whatever you know what I mean)

yeah that will show many errors :)

this works better DELETE FROM characters where account_id != (SELECT id from accounts where username = "...."); btw i'd suggest you to remove your email from your message
« Last Edit: November 19, 2009, 06:55:00 pm by weltall »

neko kyouran

  • Guest
Re: Wipe Discussion Relief Thread
« Reply #27 on: November 19, 2009, 07:02:43 pm »
/sigh

Code: [Select]
BEGIN TRAN
DELETE
FROM tCharacters
join tAccounts ON tCharacters.account_id = tAccounts.account_id
WHERE
tAccounts.username = 'Nekos Account Name'

--rollback
--commit

more efficient DB handling to use join statement than nested select statements!  :P

weltall

  • Associate Developer
  • Veteran
  • *
  • Posts: 1671
    • View Profile
    • http://weltall.heliohost.org
Re: Wipe Discussion Relief Thread
« Reply #28 on: November 19, 2009, 07:15:40 pm »
it seems neko wants to optimize wipes so we can wipe faster :D

neko kyouran

  • Guest
Re: Wipe Discussion Relief Thread
« Reply #29 on: November 19, 2009, 07:25:11 pm »
Well, as we all are aware, making sure wiping is done properly makes sure there isn't any leftover bits still hanging around to cause issues later on.  ;-)