Hi, I have 1.02N server and i need to clear all items, all characters on all accounts, without clearing account. how can I do this? thanks
Printable View
Hi, I have 1.02N server and i need to clear all items, all characters on all accounts, without clearing account. how can I do this? thanks
in sql query..
---
**DELETE ALL INVENTORIES**
---
UPDATE Character
SET Inventory=('')
---
**DELETE ALL WAREHOUSES**
---
UPDATE warehouse
SET Items=('')
but ofcourse, to be safe... back up your database first ;))
Quote:
Server: Msg 260, Level 16, State 1, Line 1
Disallowed implicit conversion from data type varchar to data type varbinary, table 'MuOnline.dbo.Character', column 'Inventory'. Use the CONVERT function to run this query.
errors:( can anyone help?Quote:
Server: Msg 260, Level 16, State 1, Line 1
Disallowed implicit conversion from data type varchar to data type varbinary, table 'MuOnline.dbo.warehouse', column 'Items'. Use the CONVERT function to run this query.