Forum Replies Created

Viewing 3 posts - 61 through 63 (of 63 total)

  • RE: Nesting Stored Procedures

    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...

  • RE: Nesting Stored Procedures

    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...

  • RE: Is the Schema Still Needed?

    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...

Viewing 3 posts - 61 through 63 (of 63 total)