Viewing 7 posts - 1 through 7 (of 7 total)
Thanks guys!
I didn't think this was possible...if I find anything out, I'll post it somewhere.
December 29, 2006 at 11:28 am
I am having the same error over here, win2k3 box w/ upgrade from ms sql 2000 to sql 2005. I then installed SP1 and it is still happening. Anyone have...
May 15, 2006 at 10:32 am
Greasham...good call on the ASP thing; that's what I usually write in. I did figure out what to do in that case (and yes, lxz20, it is MX). There is...
August 11, 2004 at 7:18 am
i got what i needed...cept i had to select a value from a temp table into a cursor that did a "fetch next into" my variable.
June 25, 2004 at 1:43 pm
yeah, that works, but i need to return the value or set it to a variable
June 25, 2004 at 1:00 pm
thanks pete...that's what worked (full four part reference of the table)
June 25, 2004 at 11:15 am
do something like this:
declare @employeephone char(255), @varvalue varchar(1000)
set @employeephone = '1234567890'
if @EmployeePhone is not null
begin
set @varvalue = '<EmployeePhone>' + @EmployeePhone + '</EmployeePhone>'
end
June 24, 2004 at 12:40 pm
Viewing 7 posts - 1 through 7 (of 7 total)