Viewing 15 posts - 7,981 through 7,995 (of 18,926 total)
Gianluca beat me to it, but this is straight from BOL (Create synonym).
Assuming you didn't reverse the db and server in your question, this should work :
EXEC sp_addlinkedserver '06dw';
GO
USE...
June 16, 2010 at 9:30 am
MelS-512196 (6/16/2010)
June 16, 2010 at 8:29 am
scott.pletcher (6/15/2010)
June 15, 2010 at 8:37 am
Easy, kick off the job that loads the data during the week-end at 4 PM friday rather than "off" hours. :hehe:
June 14, 2010 at 10:34 am
Jeff Moden (6/12/2010)
David Portas (6/12/2010)
June 12, 2010 at 12:11 pm
GilaMonster (6/12/2010)
Select * from table requires that SQL read the entire table. There's no index that can help with that operation.
100% correct with the exception that you need select *...
June 12, 2010 at 8:16 am
UMG Developer (6/11/2010)
lmu92 (6/11/2010)
For two reasons:
#1) it requires at least a little more effort to run it before answering (for those who...
June 12, 2010 at 8:11 am
webrunner (6/11/2010)
cathy.baker (6/11/2010)
June 11, 2010 at 8:47 am
davidshephard (6/11/2010)
Thanks Sir
:w00t:
That avatar photo is a bit misleading... Gail is well, more of the female type 😉
June 11, 2010 at 8:21 am
Just my 0.02$, I don't care about the points but I fail to see the learning opportunity (for me) here. Like hugo said, you'll get an error as soon...
June 11, 2010 at 6:11 am
SELECT MAX(CASE WHEN Flag_a = 'y' then DateA ELSE NULL END) AS Datea
, MAX(CASE WHEN Flag_b = 'y' then Dateb ELSE NULL END) AS Dateb
, MAX(CASE WHEN Flag_c = 'y'...
June 10, 2010 at 12:04 pm
Remake the plan would be an obvious one. Assuming you are able to edit the plan, then maybe add a db then take it out again should regenerate the...
June 9, 2010 at 8:55 am
james.massey (6/8/2010)
Ninja's_RGR'us (6/8/2010)
Are those rows returning more data than the other correct cases?
How...
June 8, 2010 at 11:03 am
Well just to be sure.
What I understand is that 99.9% of the queries, the plan is an index seek. However with a couple cases you get a...
June 8, 2010 at 11:01 am
How much rows (in % of the total rows in the table) are returned by those 1-2 cases?
Are those rows returning more data than the other correct cases?
How are the...
June 8, 2010 at 10:52 am
Viewing 15 posts - 7,981 through 7,995 (of 18,926 total)