Viewing 3 posts - 1 through 3 (of 3 total)
There is an easy method in the scripts secion of this site.
Here is the link
October 18, 2002 at 4:05 am
Ok, let’s put it together.
IF EXISTS (SELECT *
FROM sysobjects
WHERE name = N'varchar36isuniqueidentifier')
DROP FUNCTION varchar36isuniqueidentifier
GO
CREATE FUNCTION varchar36isuniqueidentifier
(@cadena varchar(36))
RETURNS bit
AS
BEGIN
declare @error bit
IF (@cadena LIKE ...
October 18, 2002 at 3:26 am
I have the same problem but I really need to anticipate the error in the S.P.
This is the function I wrote based in planet115 self reply.
IF EXISTS (SELECT *
...
October 16, 2002 at 2:45 am
Viewing 3 posts - 1 through 3 (of 3 total)