February 3, 2017 at 2:31 pm
I have a stored procedure that works when it is a small amount of data returned but times out when a large amount of data is returned. It times our both in SSMS and via the application.
We migrated from 2008 r2 to 2014 but was left it in compatibility mode. The code isn't the greatest but it should still be returning records as it does in current prod. the number of records is over 135k
The function CONTAINSTABLE and the use of Full-Text are the concerns I have. in thins new environment. I have tweeked configurations and such to deal with these 2 items and nothin has worked.
The new environment is went from 16 cpu to 40 cpus for starters and ram is now at 128 from 64 so this should be doing better not worse.
At ideas would be appreciated.
--Susan
February 3, 2017 at 3:45 pm
post migration, it's mandatory to rebuild all your indexes ; the statistics are different than the new sql engine expects, andyou'll see poor performance until you rebuild your indexes and get your statistics updated to the new 2014 expectation.
Lowell
February 4, 2017 at 4:24 pm
IIRC, you'll need to rebuld the full text indexes in their entirety.
EDIT... Crud... didn't see Lowell's post, which says the same thing.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply