Viewing 5 posts - 1 through 6 (of 6 total)
It's because i'm trying to catch
if parameter = 0 then
I don't need to run SQL statement
Else
Execute...
October 4, 2007 at 2:22 pm
Just use Round function
IF NOT OBJECT_ID('ANDRETEST') IS NULL
DROP TABLE ANDRETEST
GO
CREATE TABLE ANDRETEST
(
F1 FLOAT,
F2 CHAR(10)
)
GO
INSERT INTO ANDRETEST ( F1, F2 ) VALUES ( 160.2,'TEST')
INSERT INTO ANDRETEST ( F1, F2...
October 4, 2007 at 11:48 am
Sorry but it's not working i'm confuse but ..
Still have a same problem and I don't know how I can fix it
Look what i did
DECLARE @out_value AS INT
DECLARE @rc AS...
September 28, 2007 at 12:50 pm
Cool Stuff !
Thank you Noel
Very mutch ... now it's working fine
André
September 27, 2007 at 8:34 am
Yes I tried
sp_executesql
But I don't know how I can use it
September 26, 2007 at 2:47 pm
Viewing 5 posts - 1 through 6 (of 6 total)