Viewing 15 posts - 6,466 through 6,480 (of 8,416 total)
GSquared (12/14/2009)
It's essentially turning them into derived tables. Pretty common thing, just looks odd because it's all that's there in that particular query.
Sort of. A derived table attempt...
December 14, 2009 at 2:22 pm
Cheers Jason.
Now that we know more about the requirements, it may be that partitioning is not a good solution. The requirement to build ONLINE would certainly have been a...
December 14, 2009 at 2:13 pm
http://blogs.msdn.com/sqlserverstorageengine/archive/2006/05/17/Lock-escalation.aspx (5000 held locks, approximately)
December 14, 2009 at 2:10 pm
tacy.highland (12/14/2009)
But, wouldn't this theoretically just pull up...
December 14, 2009 at 2:06 pm
Liked the article thanks.
But, uh-oh, here we go again with the string-splitting debate...:laugh:
Like it or not, the overall best method ever is to use a CLR TVF. It just...
December 14, 2009 at 5:57 am
Similar to my own questions :laugh:
It's interesting because we have a NetApp box coming in the next few weeks - just to handle shared drives and such - so it's...
December 14, 2009 at 5:51 am
If you have a moment, run the following and post the results please.
select objtype,
count(*) as number_of_plans,
sum(cast(size_in_bytes as bigint))/1024/1024 as size_in_MBs,
avg(usecounts) as avg_use_count
from sys.dm_exec_cached_plans
group by objtype
It would also be...
December 14, 2009 at 2:46 am
You really need to analyse where the current bottlenecks are before embarking on such a bold project.
http://technet.microsoft.com/en-gb/library/cc966413.aspx
That White Paper is a great starting point. Depending on what your main...
December 14, 2009 at 2:29 am
One would tend to assume that lock contention was the issue, or maybe the waits are on log flushes? Hard to say without more information.
You will probably find the...
December 14, 2009 at 2:24 am
There are plenty of optimizations available here. The best solution will depend on your particular circumstances and priorities, but there's certainly no need to 'give up' and just put...
December 14, 2009 at 2:18 am
As Jason rightly points out, you can (usually) rebuild an index a partition at a time, or indeed for more than one partition in 2008. So long as no...
December 14, 2009 at 1:46 am
mrdenny (12/14/2009)
Using xp_cmdshell pretty much isn't ever a good idea, as for security reasons xp_cmdshell should be disabled.
It has the distinct advantage of at least being documented ;-). xp_cmdshell...
December 14, 2009 at 1:28 am
NetApp DP, why it can be (allegedly) as fast as RAID 10, even though typical RAID 6 is always slower than RAID 5...
December 14, 2009 at 1:24 am
Yes - partitioning is an Enterprise-only feature. You could indeed consider using a partitioned view, but you should probably take a step back before making such a big change....
December 14, 2009 at 1:07 am
SELECT definition
FROM sys.sql_modules
WHERE definition LIKE '%[0-9].[0-9].[0-9].[0-9]%'
OR definition LIKE '%[0-9].[0-9].[0-9].[0-9][0-9]%'
OR definition LIKE '%[0-9].[0-9].[0-9].[0-9][0-9][0-9]%'
OR ...
December 13, 2009 at 9:57 pm
Viewing 15 posts - 6,466 through 6,480 (of 8,416 total)