Viewing 15 posts - 1,921 through 1,935 (of 14,953 total)
I usually have the OS and SQL Server binaries on a separate drive than the data files or log files.
What I'm mostly looking at these days is:
C: (internal drive) OS...
February 27, 2012 at 2:22 pm
jcrawf02 (2/27/2012)
February 27, 2012 at 2:14 pm
I don't think a stats update could be done in parallel. It pretty much needs to count values in columns, and spreading that out to multiple threads doesn't seem...
February 27, 2012 at 2:11 pm
MyDoggieJessie (2/27/2012)
February 27, 2012 at 1:04 pm
Have you tried using LinkedIn to contact any connections from that area? I've found that useful in researching this kind of thing.
February 27, 2012 at 12:05 pm
It's going to be the same as installing Enterprise Edition on a cluster. Are you familiar with that?
If it's an active/passive cluster, then start here: http://msdn.microsoft.com/en-us/library/ms189134.aspx
February 27, 2012 at 12:02 pm
The bit about procs being pre-compiled is actually the IT version of an urban legend.
But the bit about refactoring a proc being easier than rebuilding and redeploying a report is...
February 27, 2012 at 11:51 am
Will this suffice?
DECLARE @XML XML = '<root><Books><Book><ID>2</ID><Name>Sql Server Admin</Name>
<Author><Name>Joseph</Name><Age>35</Age></Author></Book></Books></root>' ;
SELECT @XML.query('/root/Books/Book/Author') ;
If not, you'll need to query the values within the Author node, and then recompose it into XML with...
February 27, 2012 at 11:48 am
patrickmcginnis59 (2/27/2012)
February 27, 2012 at 11:43 am
If it has to be done for each load, then you either need to add that to the script/proc that puts data in that table, or you need to make...
February 27, 2012 at 11:34 am
LutzM (2/27/2012)
And, thank you, Brandie. Now I know there's a key required. So the area seems to be locked. I'll keep asking...
February 27, 2012 at 11:32 am
Lynn Pettis (2/27/2012)
Just got off the phone with my new employer. I start work on March 5th, which gives me a nice one week vacation.
Sounds about perfect.
February 27, 2012 at 9:41 am
GilaMonster (2/27/2012)
GSquared (2/27/2012)
Amusingly, that reminds me of one of the more common scam issues in EVE Online. The scam artist claims to be doing research on trust between strangers...
February 27, 2012 at 9:24 am
I have a couple of lookup databases (like lookup tables, but it's the whole database). I'm not sure if that's what you mean.
I have one database called "Common", that...
February 27, 2012 at 9:21 am
How are you determining that the rows aren't there? A separate query?
February 27, 2012 at 9:16 am
Viewing 15 posts - 1,921 through 1,935 (of 14,953 total)