Viewing 15 posts - 1,096 through 1,110 (of 1,995 total)
WiRL (5/24/2012)
I hope someone can help me.
I have a table that holds peoples jobs and their deadlines. I want to email the people on a daily basis whose jobs...
May 24, 2012 at 4:06 am
not addressing the main point of the post, but in a parent/child hierarchical type query have you considered using the hierarchyid data type..?
i only say this because i saw code...
May 24, 2012 at 4:02 am
im curious,
a lot of the resistance to cloud usage comes from a financial standpoint or a good old fashioned control of hardware need... but has anyone looked at this...
May 24, 2012 at 3:55 am
michael vessey (5/24/2012)
sqlbee19 (5/23/2012)
michael vessey (5/23/2012)
May 24, 2012 at 2:52 am
sqlbee19 (5/23/2012)
michael vessey (5/23/2012)
May 24, 2012 at 2:48 am
GilaMonster (5/23/2012)
Index physical stats doesn't run showcontig, more the other way around. Showcontig is deprecated and just...
May 24, 2012 at 2:45 am
Koen Verbeeck (5/24/2012)
Schadenfreude-Mei (5/24/2012)
Robert Davis (5/23/2012)
May 24, 2012 at 2:40 am
Lynn Pettis (5/23/2012)
michael vessey (5/23/2012)
The person who wrote the original code or the tester that allowed it to make it into production?
ahem.... the tester didn't put the defect...
May 24, 2012 at 2:36 am
...anything that necessarily iterates over 1 row at a time and cannot be made to iterate of more than 1 row at a time (you can read that as processes...
May 24, 2012 at 2:29 am
oh and a recursive CTE may be an iterative operation, but when cross joined for an insert the "Insert" is not iterative..... it's still a set based operation in the...
May 24, 2012 at 2:24 am
Jeff Moden (5/23/2012)
michael vessey (5/23/2012)
with x (id) as
(select 1 as id
union all
select ID+1 from X as id
where id<10000
)
insert into fooTable
select d.name from sysdatabases d cross join...
May 24, 2012 at 2:22 am
The person who wrote the original code or the tester that allowed it to make it into production?
ahem.... the tester didn't put the defect there (the developer did)...
May 23, 2012 at 9:59 am
see my example
create table footable (name varchar(1000))
go
select 'aaaaa';
with x (id) as
(select 1 as id
union all
select ID+1 from X as id
where id<10000
)
insert into fooTable
select d.name from sysdatabases d cross...
May 23, 2012 at 9:54 am
any code before the "WITH x as" must be terminated with a ;
May 23, 2012 at 9:52 am
the multiple rows returned in your select statement are corrupting the @cmd value - in theory the value returned should be correct (although if you use any fields from sys.server_principals...
May 23, 2012 at 9:49 am
Viewing 15 posts - 1,096 through 1,110 (of 1,995 total)