Viewing 8 posts - 16 through 23 (of 23 total)
Converting my temp tables to the table datatype and using a UDF instead worked!! Although i could have swore there is a way to invoke a sproc inside a update/select...
August 30, 2006 at 2:51 pm
Thanks but i need to used temp tbls which cannot be done inside a udf
August 30, 2006 at 2:33 pm
Hey there. Thanks for the advice. I tried datawriter but that still doesn't give me execute permissions on the sprocs.
July 24, 2006 at 10:22 am
Thanks to all who replied!
This works:
SET ANSI_NULLS ON
SET ANSI_WARNINGS ON
GO
CREATE PROC A
AS
SET ANSI_NULLS ON
SET ANSI_WARNINGS ON
Select null
GO
May 9, 2005 at 10:53 am
This function worked like a charm.
Many Thanks!
April 28, 2005 at 11:12 am
yes, but it sounds like they still need to be parsed. checkout where this guy says: "On the other hand, it isn't compiled prior to use. Each query or line...
November 11, 2003 at 9:25 pm
Viewing 8 posts - 16 through 23 (of 23 total)