always Disconnect Game Crash

04/18/2019 08:35 [PH]KEO(DEV)#1
Hi anyone can tell me why my server always dc in a few minutes or hour?
this is my logs

PS_Game.log

PS_DBAGENT__system.log

PS_LOGIN__system.log

PS_USERLOG__system.log

thank you if someone can answer this
04/18/2019 08:52 arjulie#2
check your database also the ps_login.exe
04/18/2019 19:25 oldjayy#3
There are various errors in your logs, but I will try to explain them.


2019-04-18 06:00:25 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'PS_GameLog.dbo.UserLog'., SQL STATE: 42S02, NATIVE ERROR: 208 (0xD0)


- This is completely clear. For one or another reason your dbo.UserLog table is inaccessible. Try to check it.


Invalid cursor state.


- SQL faces this kind of error when it tries to call a stored procedure. One of the things you can try is adding SET NOCOUNT ON on top of your stored procedure. Another reason could be running out of memory.


This is only from first sight and you can't be 100% sure that it causes the disconnection, but you could give it a try.