Lai atrastu kāda novecojusi funkcionalitāte tiek izmantota, var izmantot gan perfmon, gan SQL Server Profiler, gan Extended events. Plašāk ir aprakstīts, piemēram: SQL Server: Removing Deprecated Code and Future Proofing your Queries.
Ātrs veids ir izmantot DMV sys.dm_os_performance_counters:
SELECT [object_name], instance_name, cntr_valueMSDN saraksts ar novecojušo funkcionalitāti: Deprecated Database Engine Features
FROM sys.dm_os_performance_counters
WHERE [object_name] LIKE '%:Deprecated Features%'
And cntr_value > 0
Order By cntr_value desc
Pārsteigumiem labāk sagatavoties laikus :).
Nav komentāru:
Ierakstīt komentāru