Viewing 5 posts - 1 through 5 (of 5 total)
Declare @var varchar(2000)
exec Link_Get '100',@var out
//Call sp and get the resultant xml
Insert into LinkHistory( Details) values (@var)
How abt this?
April 13, 2004 at 10:24 pm
its the same every stored proc. the procOut returns integer,zero meaning successful,anything > 0 some error.
March 25, 2004 at 8:27 am
I found this from Planet Source Code. CHeck you adequate rights to use it.
CREATE PROCEDURE DECRYPTSP2K
@objName varchar(50)
AS
DECLARE @a nvarchar(4000), @b-2 nvarchar(4000), @C nvarchar(4000),...
March 24, 2004 at 11:16 pm
Hope this helps
declare @procOut int
exec @procOut = proc_A(1,2,'Test)
select @procOut
March 24, 2004 at 10:54 pm
Hope this helps. Works only in sql server 2000
CREATE Function FormatNumber
(@RawNumber numeric(32,2) = 0,
@ShowDecimal as bit = 0
)
returns varchar(200) AS
BEGIN
declare @FormattedNumber...
March 23, 2004 at 2:49 am
Viewing 5 posts - 1 through 5 (of 5 total)