Quote:
Originally Posted by XareL
idk but if u want clear logs execute this query ;
DELETE FROM PS_GameLog.dbo.ActionLog ---- clear in game actions
DELETE FROM PS_ChatLog.dbo.ChatLog ----- clear in game chats
|
Hello, sorry but from delete you dont clear ur IDENTITY....
use this command for clear all...
Code:
TRUNCATE TABLE PS_GameLog.dbo.ActionLog
TRUNCATE TABLE PS_ChatLog.dbo.ChatLog
also you wanna clear all tables of database?
use this command...
Code:
USE PS_GameLog
EXEC sp_MSforeachtable 'TRUNCATE TABLE ?'
all table of ps_gamelog clear