Viewing 15 posts - 1 through 15 (of 602 total)
Of course, once again...it depends.
Studies performed by VMware have shown that SQL performs from 88 to 99 percent as fast as physical under virtualization, provided that the host has CPUs...
June 12, 2014 at 2:33 pm
Hmmm....Try this
Create table #foo (col1 int null, col2 int null)
insert #foo
select NULL,1 union select 1,NULL
select COUNT(*) from #foo
select COUNT(1) from #foo
select COUNT(col1) from #foo
select COUNT(2) from #foo
select COUNT(col2) from #foo
select...
October 17, 2013 at 2:37 pm
roman.asadovsky (10/15/2013)
MyDoggieJessie (10/15/2013)
You know that doing COUNT(*) on a table with a lot of columns and a lot of rows can take a lot of time and memory
There is virtually...
October 15, 2013 at 8:02 am
I've been known to use "SELECT COUNT(*) from SomeTable with (INDEX=1)" so that I DO load the entire table.
Generally this would only be in a situation...
October 15, 2013 at 7:44 am
Although it's hard to find this information until you've selected which SQL Enterprise 2012 you're downloading from the VLSC, (It doesn't even tell you on MSDN) the "Core" edition is...
April 24, 2012 at 6:21 pm
While it may be an overly simplistic view of the situation, consider this: Each thread, in isolation, can run on a single core, which is now clocked at 2.1...
July 4, 2011 at 5:17 am
The author did a fine job discussing the different approaches. The article shows once again that never and always are both almost always never the correct answer.
May 20, 2010 at 4:40 am
The problem existed in SQL 2005 as well. The query plan generator treats the literal 1 as an integer, and implicitly converts the in-row data to integer....
February 10, 2010 at 6:51 pm
I appreciate the response, but I don't think you understand what I was asking. I don't want to share a machine between two clusters.
I want to make a three...
October 13, 2009 at 3:25 am
None of the provided answers are statements, therefore the correct answer should be none of the above.
August 19, 2009 at 8:08 am
I would suggest verifying that the recovery model is in line with how the backups are being taken. All too often I have taken over a server that is...
June 22, 2009 at 8:23 am
I'm pretty sure that the DBA doesn't need to know the physical architecture behind a SAN. I do, because I'm both the DBA and the storage engineer, but that's...
December 12, 2007 at 7:48 am
Have you checked the IO performance of your disks? There's a tool called IOMeter that is very handy for seeing if your drives are slow.
Sometimes a slow drive is...
November 28, 2007 at 1:57 pm
I believe the errors you are seeing are the "access denied" part of "server does not exist or access denied".
Did you remove the builtin\Administrators group from the SQL server logins...
November 6, 2007 at 6:43 am
It is very unlikely that the CPU or RAM have very much to do during a restore. The Network is not suspect in this case, because there is a...
October 30, 2007 at 6:49 am
Viewing 15 posts - 1 through 15 (of 602 total)