Edit your login stored procedure to take out the OMG_GameWeb dependency, it's not needed, to do this, edit where the procedure calls for the Username and password from the dbo.Users_Master with the code below:
Code:
SELECT @UserUID=UserUID, @Status=Status, @Leave=Leave
FROM Users_Master
WHERE UserID = @UserID and Pw = @InPassword
Then comment out where it asks for the password from the OMG_GameWeb account table code below.
Code:
BEGIN
--Check Password
EXEC dbo.sp_LoginSuccessCheck @UserID, @InPassword, @Check output
IF ( @@ERROR = 0 )
BEGIN
IF( @Check <> 1 )
BEGIN
SET @Status = -1
END
END
ELSE
BEGIN
SET @Status = -1
END
After doing this, you can drop the OMG_GameWeb database, it will not be needed anymore. Hope this helps.
Tyler