Viewing 5 posts - 1 through 5 (of 5 total)
A co-worker analyzed CTE performance in SQL Server 2005 and determined it begins to degrade after, if I recall, 100,000 records.
As we encounter performance related issues in production which involve...
October 10, 2012 at 3:21 pm
We recently encountered the same issue in multiple production db's.
When re-inserting the data back in use BULK INSERT and remove the indexes, it is significantly faster.
October 3, 2012 at 8:58 am
Your batch count is really small. I would try at least 10k.
June 28, 2012 at 12:26 pm
declare
@STR nvarchar(max)
,@p1 int
set @STR = '/Folder/File/Name'
select @p1 = charindex('/', reverse(@str)) - 1
select right(@str, @p1)
June 14, 2012 at 1:56 pm
I've reviewed some information from a few of the sites.
I assume some are better than others.
June 3, 2010 at 12:16 pm
Viewing 5 posts - 1 through 5 (of 5 total)