Read through this thread and you will probably find that your linked servers are not correctly installed.
Because PS_USERDB01 is a linked server and it is called by a stored procedure so either correctly install the linked servers or use Abrasives Fix Here
Expand Server Objects Then Linked Servers. and there should be A PS_USERDB01 listed there.
Because PS_USERDB01 is a linked server and it is called by a stored procedure so either correctly install the linked servers or use Abrasives Fix Here
To check if the linked servers exist open MSSQL Management Studio.Quote:
Disconnect after selecting game server and clicking ok
I've ran into this specific cause of the above many times now, and it always happens to me when I set up a fresh server. Never have I seen anyone else mention it before though. I decided to add it here just in case it would be useful to someone.
Inside of PS_GameData.dbo.usp_Read_Char_Product_Item_E there is this query:
Since PS_USERDB01 does not exist, it causes my client to disconnect after selected the server and clicking ok.Code:SELECT Slot,ItemID,ItemCount FROM PS_USERDB01.PS_Billing.dbo.Users_Product WHERE UserUID=@UserUID
To fix it, I remove PS_USERDB01 from the stored procedure so the query looks like this:
Code:SELECT Slot,ItemID,ItemCount FROM PS_Billing.dbo.Users_Product WHERE UserUID=@UserUID
Expand Server Objects Then Linked Servers. and there should be A PS_USERDB01 listed there.