Viewing 3 posts - 61 through 63 (of 63 total)
rmarda
nest level exceeds 32 that only I wanted to point out ,is there an y explanation from ms,
I am having a script to convert figures to words using the same...
May 22, 2003 at 10:17 am
#458212
innovative thinking is not at all there
just try this real nesting
create proc nest_sp_dec
@kount int
as
begin
select @kount
select @kount=@kount-1
if @kount >0
exec nest_sp_dec @kount
end
and execute it with
nest_sp_dec 10
How is...
May 22, 2003 at 9:39 am
#458196
Schema is really confusing, even if we are removing schema nothing will happen.But I favor the idea of more than one sql users which is slightly diffrent from schema .Let...
May 20, 2003 at 8:27 am
#457833