Probelem in global manger Pleas Help

05/27/2013 20:17 Systametic#1
global manager
Query Error!!! Query Result : -1, Query : exec _ManageShardCharName 1, 7227, 64, 'ertyry', ''
SQL Error State:42S02, Native Error Code: D0, ODBC Error: [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'SR_CharAppoint'.
exec _ManageShardCharName 1, 7227, 64, 'ertyry', ''
Any Help Pleas
thx
05/27/2013 20:18 Anonymous-6723#2
Code:
USE [SRO_VT_ACCOUNT]
GO
/****** Object:  StoredProcedure [dbo].[_ManageShardCharName]    Script Date: 05/27/2013 21:16:21 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
ALTER procedure [dbo].[_ManageShardCharName]
	@job		tinyint,
	@UserJID   	int,
	@ShardID   	smallint,
	@CharName 	varchar(64),
	@OldName 	varchar(64)
as
	-- add new char name
	if (@job = 0)
	begin
		if (not exists(select * from SR_ShardCharNames where UserJID = @UserJID and ShardID = @ShardID and CharName = @CharName))
		begin
			insert SR_ShardCharNames values(@UserJID, @ShardID, @CharName)
		end
		if (not exists(select * from SR_CharAppoint where UserJID = @UserJID and ShardID = @ShardID and CharID = @CharName))
		begin
			insert SR_CharAppoint values(@UserJID, @ShardID, @CharName)
		end
	end
	-- remove char name
	else if (@job = 1)
	begin
		delete SR_ShardCharNames where UserJID = @UserJID and ShardID = @ShardID and CharName = @CharName
		delete SR_CharAppoint    where UserJID = @UserJID and ShardID = @ShardID and CharID = @CharName
	end
	-- rename previous one
	else if (@job = 2)
	begin
		update SR_ShardCharNames set CharName = @CharName where UserJID = @UserJID and ShardID = @ShardID and CharName = @OldName
		update SR_CharAppoint set CharID = @CharName where UserJID = @UserJID and ShardID = @ShardID and CharID = @OldName
	end
Execute + Restart.
05/27/2013 20:26 Systametic#3
Same Problem :(

give me your skype
and come team

and this problem when any one make grant name in guild say Invalid Too.