• coolchaitu - Wednesday, January 24, 2018 11:24 PM

    Good Morning Experts,

    We had a database on SQL Server 2012. INSERTS were running fine. We migrated this database to 2016 and noticed same INSERTS taking very very long time. Could it be due to different settings on SQL 2016? Please help

    Did you do the following after migration
    Use DB;
    DBCC UPDATEUSAGE(DB);
    GO
    EXEC sp_updatestats;
    GO

    Alex S