hi. i don't have server crash and so on but i have a few dc and stuff like that so i wanted to post my error log's here. many have some of the same issues so mabe that can fix stuff for many ppl idk sorry.
2016-04-19 02:22:36 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:22:36 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:23:53 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:23:53 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:24:23 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:24:23 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:25:32 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:25:32 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:27:05 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:27:05 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
2016-04-19 02:28:29 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the varchar value 'xxxxxx' to data type int., SQL STATE: 22018, NATIVE ERROR: 245 (0xF5)
USE [PS_UserData]
GO
/****** Object: StoredProcedure [dbo].[usp_Try_GameLogout_R] Script Date: 19.04.2016 14.56.42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
DECLARE @LoginTime datetime
DECLARE @LastPlayTime int
DECLARE @OldPoint int
DECLARE @LoginSession bigint
SET @LoginSession=(select LoginSession from PS_userdata.dbo.UserLoginStatus where useruid=@useruid)
SET @LastPlayTime=(select LastPlayTime from PS_userdata.dbo.UserLoginStatus where useruid=@useruid)
SET @LoginTime=(select LoginTime from PS_userdata.dbo.UserLoginStatus where useruid=@useruid)
SET @OldPoint=(select Point from PS_userdata.dbo.Users_Master where useruid=@useruid)
IF (@SessionID=@LoginSession)
BEGIN
Update PS_userdata.dbo.Users_Master
SET point=point+@LastPlayTime/0
WHERE useruid=@useruid
INSERT INTO PS_userdata.dbo.UserOnlineTimeLog(UserUid,OldPoint ,Addpoint,LoginTime,LogoutTime,SessionID)
values(@UserUid,@OldPoint,@LastPlayTime,@LoginTime ,@LogTime,@SessionID)
end
SET NOCOUNT OFF
the xxxx thing i checked against password, userid and character name but i can't find them so i have no idea but look like password or UserID or something like that so not sharing but xxxxx thing is not xxxx it's something that look like password or userID and it's ALOT of this
2016-04-19 14:35:51 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Transaction (Process ID 102) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction., SQL STATE: 40001, NATIVE ERROR: 1205 (0x4B5)
2016-04-19 14:36:37 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Transaction (Process ID 60) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction., SQL STATE: 40001, NATIVE ERROR: 1205 (0x4B5)
2016-04-19 14:37:24 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Transaction (Process ID 241) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction., SQL STATE: 40001, NATIVE ERROR: 1205 (0x4B5)
USE [PS_GameLog]
GO
/****** Object: StoredProcedure [dbo].[usp_Insert_Action_Log_E] Script Date: 19.04.2016 15.09.48 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET @yyyy = datepart(yyyy, @ActionTime)
SET @mm = datepart(mm, @ActionTime)
SET @dd = datepart(dd, @ActionTime)
IF @ActionType = 116 -- Dupe fix
BEGIN
WAITFOR DELAY '00:00:05'
SET @Leave = (SELECT Leave FROM PS_UserData.dbo.Users_Master WHERE UserUID = @UserUID)
IF @Leave = 0 AND @Text2 NOT LIKE '(NPC)%'
BEGIN
DECLARE @oldCount TINYINT = (SELECT [Count] FROM PS_GameData.dbo.CharItems WHERE ItemUID = @Value1 AND CharID = @CharID)
DECLARE @newCount TINYINT = @oldCount - @Value4
IF @newCount = 0
BEGIN
DELETE FROM PS_GameData.dbo.CharItems
WHERE ItemUID = @Value1 AND CharID = @CharID
END
ELSE IF @newCount > 0
BEGIN
UPDATE PS_GameData.dbo.CharItems
SET [Count] = @newCount
WHERE ItemUID = @Value1 AND CharID = @CharID
END
END
END
ELSE IF @ActionType = 164 -- Dupe fix
BEGIN
WAITFOR DELAY '00:00:05'
SET @Leave = (SELECT Leave FROM PS_UserData.dbo.Users_Master WHERE UserUID = @UserUID)
IF @Leave = 0 AND @Text2 NOT LIKE '(NPC)%'
BEGIN
UPDATE PS_GameData.dbo.Chars
SET [Money] = @Value2
WHERE CharID = @CharID
END
END
IF (@ActionType = 114 and @Value2 = 100200)
Begin
Update PS_Userdata.dbo.Users_Master SET Point = Point + @Value4 * 100 WHERE UserID = @UserID
END
IF (@ActionType = 114 and @Value2 = 100211)
Begin
Update PS_Userdata.dbo.Users_Master SET Point = Point + @Value4 * 1000 WHERE UserID = @UserID
END
IF (@ActionType = 114 and @Value2 = 100213)
Begin
Update PS_Userdata.dbo.Users_Master SET Point = Point + @Value4 * 1000 WHERE UserID = @UserID
END
/**** Adding lotterytickets for the next draw ****/
-- DP_lottery
IF (@ActionType = 114 and @Value2 = 100215)
Begin
insert into [PS_GameData].dbo.LotteryTicketsActivated (UserID,CharID,Tickets,[ItemID])
select @UserID, @CharID, @Value4, @Value2
END
-- Gold_Lottery
IF (@ActionType = 114 and @Value2 = 100212)
Begin
insert into [PS_GameData].dbo.LotteryTicketsActivated (UserID,CharID,Tickets,[ItemID])
select @UserID, @CharID, @Value4, @Value2
END
/* End of Adding lotterytickets for the next draw */
/***** Start - Playing in the 60 PVP area with a Character level above 60 *****/
IF (@CharLevel > 60 and @MapID = 25)
Begin
-- The Account Ban
Update PS_Userdata.dbo.Users_Master SET Status = -5, ModiIp = 'Illegal Zone' WHERE UserID = @UserID
-- The IP Ban
/******** Not in Action *********
insert into [PS_UserData].[dbo].[BannedIPs] (banIP, Comment)
select [UserIp], 'Highlevel in map25' from PS_Userdata.dbo.Users_Master WHERE UserID = @UserID
********* End Not In Action *****/
END
/***** End - Playing in the 60 PVP area with a Character level above 60 *****/
IF (@ActionType = 103)
begin
Update PS_Userdata.dbo.Users_Master SET Point = Point + 5 WHERE UserID = @UserID
END
/***** Start Illegal link in lower gears ****/
IF (@ActionType = 119 )
Begin
declare @ValidLapis as int
set @ValidLapis = ( select case when item.Reqlevel - lapis.ReqInt < 0 then 1 else 0 end as 'LevelDiff'
from [PS_GameDefs].[dbo].[Items] item
inner join [PS_GameDefs].[dbo].[Items] lapis on item.ItemID = @Value2 and Lapis.ItemID = @Value3
)
IF (@ValidLapis = 1 )
Begin
-- update [PS_GameData].[dbo].[CharItems]
-- set Gem1 = 0, Gem2 = 0, Gem3 = 0, Gem4 = 0, Gem5 = 0, Gem6 = 0, CraftName = ''
-- where ItemUID = @Value1
update [PS_GameData].[dbo].[CharItems]
set Del = 1
where ItemUID = @Value1
update [PS_GameData].[dbo].[UserStoredItems]
set Del = 1
where ItemUID = @Value1
Update PS_Userdata.dbo.Users_Master SET Status = -5, ModiIp = 'Illegal Lapis' WHERE UserID = @UserID
END
END
/***** End Illegal link in lower gears ****/
/* Reset EXP on 60 PvP Zone */
IF (@ActionType=108 and @MapID in (25) and @CharLevel in(60) )
BEGIN
Update PS_GameData.dbo.Chars
SET Exp = 0
Where CharID = @CharID and Map in(25)
END
ELSE IF (@ActionType = 104)
BEGIN
DECLARE @FeederIP varchar(15) = (Select TOP 1 UserIP From PS_UserData.dbo.UserLogStatPad WHERE UserUID=@UserUID ORDER BY LoginTime DESC)
DECLARE @KillerUID int = (Select UserUID From PS_GameData.dbo.Chars Where CharID = @Value1)
DECLARE @KillerIP varchar(15) = (Select TOP 1 UserIP From PS_UserData.dbo.UserLogStatPad WHERE UserUID=@KillerUID ORDER BY LoginTime DESC)
IF @FeederIP = @KillerIP
BEGIN
INSERT INTO StatPad (KillerCharID, FeederCharID) VALUES (@Value1, @CharID)
Simply just remove the "/0" from that part of your script and it will work. Diving by zero, in math, returns an undefined value - as for SQL I can only assume it also doesn't do great things.
Always C(9) Errors With PVT Servers :@ 01/01/2014 - SRO Private Server - 0 Replies am getting C(9) Error when trying to login after captcha for multiple servers i thought first it's server problem but after trying too many servers i believed it's from my side i guess anyhow :mad:
i'm using Fixed IP Address connection ( Static IP Addresses ) from 10 different servers i download there's like only 1 i could login>
the others gives me (C9) error just after the confirmation window
Any idea why ?!
Viper sro
Avatar Sro
Damanation II
Emergency sro
Dbmon gives some errors when starting servers 08/29/2013 - Dekaron Private Server - 24 Replies Hi,
First im starting the dbmon.exe, then cast and then login.
After starting the loginserver, waiting a few seconds, this error appears:
http://oi54.tinypic.com/2w1wrxi.jpg
It says "SQL Server does not exist or access not granted"
Benutze den SQL server 2008!
[Guide] 2 Fixes on Sro-Errors (no bot-errors) 03/04/2011 - SRO Guides & Templates - 5 Replies Hey guys,
here are 2 fixes for silkroad-errors (not bot-errors!). I know they dont appear for many people but some guys have problems with it.
1st Fix: "Server is undergoing inspection..."
Why does this error appear?
Because Joymax has some problems with the Login-Servers.
Fix:
Step1): Click on "Start" then on "Run"