Viewing 15 posts - 301 through 315 (of 687 total)
This is the way I would do it. Your font color switch would use the same data points as the background.
Say your switch function for the background color looks like...
March 1, 2012 at 6:31 am
Good read, thanks for the article.
February 28, 2012 at 5:58 am
Here is a KB that will provide some guidance for your rolling patch process.
February 27, 2012 at 7:44 am
Backup/restore and detach/attach will only move the database objects. Jobs, logins, operators, and other instance level objects will need to be scripted and moved separately.
February 27, 2012 at 7:40 am
depending on your business rules, it could be as simple as a concatenation and replace function.
select '0'+REPLACE(code,'.','.0') from
This concatenates a '0' on the front and replaces every '.' with...
February 24, 2012 at 11:57 am
DDL scripts, sample data, and expected results would be extremely helpful in troubleshooting your query.
February 24, 2012 at 11:44 am
anthony.green (2/23/2012)
mohammed moinudheen (2/23/2012)
February 23, 2012 at 6:14 am
Oh man! Here we go!
Spring training is HERE! Bryce Harper thinks he's an all-star for the Nats, Wake retires, Veritek still not signed, Ortiz is on a year for 12...
February 21, 2012 at 12:11 pm
yep, a valid concern. I would cross that bridge when I come to it. No sense in paying money for licensing an instance you won't use or potentially breaking legacy...
February 21, 2012 at 11:23 am
It is not necessary to go to 2008R2 if you find no pressing reason to upgrade. There are upgrade paths from 2005 and 2008 to 2012, so if you decided...
February 21, 2012 at 10:51 am
Depending on your licensing you should only need to license the active instances. Now there are rules governing this process so be sure to consult microsoft documentation or give them...
February 21, 2012 at 10:06 am
oh, same shared disks for two instances... I'm going to say no. Someone with more knowledge might say differently.
The reason I say no is because the shared disks are removed...
February 21, 2012 at 9:35 am
I can't tell you what the "best practice" would be but you'd share the same storage with the third node and add it to the windows cluster. You would then...
February 21, 2012 at 9:32 am
Yes, if node C is allowed to host all the resources, it will host the two instances. Be sure that node C has enough umph to handle running two instances...
February 21, 2012 at 9:11 am
From a stackoverflow article, OPENQUERY is used to query the active directory
select *
from OpenQuery(ADSI,
'SELECT objectCategory, cn,...
February 21, 2012 at 7:55 am
Viewing 15 posts - 301 through 315 (of 687 total)