• declare @n varchar(64)

    set @n='';

    ;with MyCTE1 as (

    select N, newid() as rid from tally),

    MyCte2 as (

    select top(64) char(n%84+32) randchar from MyCTE1 order by rid)

    select @n=@n+randchar

    from MyCTE2

    select @n

    ----------------------------------------------------------------------------------
    Your lack of planning does not constitute an emergency on my part...unless you're my manager...or a director and above...or a really loud-spoken end-user..All right - what was my emergency again?