Viewing 3 posts - 1 through 3 (of 3 total)
Excellent solution ! I like your SQL code !
March 14, 2012 at 10:26 am
#1459345
You can use this:
create table numbers(n int)
insert into numbers(n)
select 10*t2.y + t1.x
from (select 1 as x
union all
select 2
select 3
select 4
select 5
select 6
select 7
select 8
union...
March 13, 2012 at 10:33 am
#1458649
One question: must the "sa" login be granted to connect to database engine in order for internal processes to function correctly ?
My situation is: "sa" appears in sp_who output loginame...
March 13, 2012 at 10:24 am
#1458643