Bạn có thể sử dụng CAST để đưa ra lỗi có ý nghĩa:
create function dbo.throwError()
returns nvarchar(max)
as
begin
return cast('Error happened here.' as int);
end
Sau đó Sql Server sẽ hiển thị một số thông tin trợ giúp:
Msg 245, Level 16, State 1, Line 1
Conversion failed when converting the varchar value 'Error happened here.' to data type int.