As I have noticed, on the past few weeks a lot of people have been asking for this exactly same thing:
"Hi, I made my own server but I am getting an error: Name Already Exists"
Now, just so people will be able to see this on the first pages in here, I am posting this fix (again, because it has been posted before), hopefully they will come around this thread before asking everywhere about this problem...
So, to fix this problem you need to go to your SQL Server Management Studio, login to the database and click on the "New Query" Button:
[Only registered and activated users can see links. Click Here To Register...]
Then you need to Copy/Paste this Query in there:
Then just Click on "Execute Query" Button
[Only registered and activated users can see links. Click Here To Register...]
And then it is highly recommended that you restart your server, or it won't work.
Credits to arutema for the SQL Query
"Hi, I made my own server but I am getting an error: Name Already Exists"
Now, just so people will be able to see this on the first pages in here, I am posting this fix (again, because it has been posted before), hopefully they will come around this thread before asking everywhere about this problem...
So, to fix this problem you need to go to your SQL Server Management Studio, login to the database and click on the "New Query" Button:
[Only registered and activated users can see links. Click Here To Register...]
Then you need to Copy/Paste this Query in there:
Code:
USE [PS_GameData] GO drop procedure [dbo].[usp_Save_Char_Item_Add_E] GO SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO /****** 개체: 저장 프로시저 dbo.usp_Save_Char_Item_Add_E ******/ CREATE Proc usp_Save_Char_Item_Add_E @CharID int, @ItemUID bigint, @Bag tinyint, @Slot tinyint, @ItemID int, @Type tinyint, @TypeID tinyint, @Quality int, @Gem1 tinyint, @Gem2 tinyint, @Gem3 tinyint, @Gem4 tinyint, @Gem5 tinyint, @Gem6 tinyint, @Craftname varchar(20) = '', @Count tinyint, @MaketimeZ varchar(50), @Maketype char(1) AS DECLARE @Maketime as datetime SELECT @Maketime = CONVERT(datetime, @MaketimeZ, 120) --SET NOCOUNT ON IF(@Quality >= 5000) BEGIN SET @Quality=0 END INSERT INTO CharItems (CharID, bag, slot, ItemID, Type, TypeID, ItemUID, quality, gem1, gem2, gem3, gem4, gem5, gem6, craftname, [count], maketime, maketype) VALUES(@CharID, @Bag, @Slot, @ItemID, @Type, @TypeID, @ItemUID, @Quality, @Gem1, @Gem2, @Gem3, @Gem4, @Gem5, @Gem6, @Craftname, @Count, @Maketime, @Maketype) IF(@@ERROR = 0) BEGIN RETURN 1 END ELSE BEGIN RETURN -1 END --SET NOCOUNT OFF GO SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO
[Only registered and activated users can see links. Click Here To Register...]
And then it is highly recommended that you restart your server, or it won't work.
Credits to arutema for the SQL Query