CREATE PROCEDURE [dbo].[BO_GetUserFavoriteKnoks]
@userId int
AS
select KnokId from UserFavoriteKnoks where UserId = @userId -- ignore errors
RETURN 0