Viewing 15 posts - 736 through 750 (of 4,081 total)
Merry Christmas and/or Happy Holidays to everybody who survives.
December 19, 2012 at 2:18 pm
GSquared (12/13/2012)
The Dixie Flatline (12/13/2012)
Budget cuts are the reason the first Death Star didn't have a grate or something covering the exhaust port.
Really? I always just assumed a Jawa...
December 13, 2012 at 3:03 pm
I think Jawas and Ewoks must be descended from common ancestry. They both have an identical IIEEEEYAAAA war cry.
December 13, 2012 at 3:02 pm
Budget cuts are the reason the first Death Star didn't have a grate or something covering the exhaust port.
December 13, 2012 at 1:38 pm
Think maybe changing from [mirroring_state] to [mirroring_role] had something to do with it? Your where clause could be logically rewritten as
WHERE (d.database_id >= 5)
...
December 10, 2012 at 11:07 am
I feel compelled to add this. As a general rule, you should not test against functions like ISNULL, because that can prevent the optimizer from taking advantage...
December 7, 2012 at 9:04 pm
Select
d.name,
d.compatibility_level,
m.mirroring_state,
mirroring_role_desc
FROM
sys.database_mirroring M inner join SYS.DATABASES d
on m.database_id = d.database_id
where D.database_id >=5
and ISNULL(mirroring_role_desc,'') like CASE WHEN M.mirroring_state is NOT NULL...
December 7, 2012 at 4:43 pm
sunshine-587009 (12/7/2012)
Select
d.name,
d.compatibility_level
FROM
sys.database_mirroring M inner join SYS.DATABASES d
on m.database_id = d.database_id
where D.database_id >=5
...
December 7, 2012 at 4:08 pm
sunshine-587009 (12/7/2012)
I'm not a regular developer so please excuse my question for being easy for what would be a good developer.
I'm trying to create a statement that returns...
December 7, 2012 at 3:34 pm
Viewing 15 posts - 736 through 750 (of 4,081 total)