Viewing 15 posts - 91 through 105 (of 147 total)
Interesting. Thanks for testing it...
I only tested against a few rows and noticed that logical I/Os were lower than the other two options. I suspect the performance hit...
September 19, 2009 at 2:09 am
My problem with the quirky update solution is the requirement to add a column to the original table, which may not be practical in reality.
I've got an alternative that does...
September 18, 2009 at 3:02 pm
Redgate SQLCompare. You can download a 14-day trial from their website.
March 31, 2009 at 12:06 pm
March 28, 2009 at 4:58 pm
Also discussed here:
http://weblogs.sqlteam.com/tarad/archive/2008/08/05/How-to-get-physical-CPU-count-on-a-server.aspx
March 28, 2009 at 4:05 pm
I also run predeployment tests with SQLIO, and later tests for comparison are always a good idea. But what if you use a SAN? An hour's downtime would...
March 28, 2009 at 3:34 pm
Don't drop BUILTIN\Administrators on a clustered instance without explicitly adding the cluster service account first.
March 25, 2009 at 12:56 pm
The message you have listed is not an error. It is the normal informational output from CHECKDB and that is why is suggested specifying WITH NO_INFOMSGS, so you can...
March 24, 2009 at 2:20 am
It looks like you want to apply each function to every row in PropData.
I guess there is a column in PropData to pass as a parameter??
If you only have a...
March 23, 2009 at 1:45 pm
Start->Run secpol.msc
Expand Local Policies->User Rights Assignment
Double Click "Lock Pages in Memory" and add your service account in there.
March 23, 2009 at 1:25 pm
Max memory setting(MB)
...is not a valid setting.
Use "max server memory"
March 23, 2009 at 12:32 pm
Why so complicated?
Just use this:
select [db]=name, [model]=databasepropertyex(name, 'Recovery')
from master..sysdatabases
where name not in ('master','model','tempdb','msdb')
order by 2, 1
March 23, 2009 at 12:21 pm
Viewing 15 posts - 91 through 105 (of 147 total)