I have Sql sever 2012. In production I am seeing slowness in database.
How do I find slow running queries.
How do we check the CPU usage.
How do I see any deadlock.
Do we have queries to check this?
Any other metrics to check?
Also we have few SSIS packages. They load lot of new data from the files. The DB size is 1.5 TB.
I wouldn't mind much with CPU usage when dealing with databases. Resources as Memory, Disk and Network are more important. CPU should be the last resource to watch to.
But first of all check your queries performance. If the database design is poor (not normalized, lack of indexes, ...) then is highly possible that your queries will be unperformed. You can start by using SQL Server Profiler to capture the long running queries and analyze them, one by one.
Pavel Celba
No need to reinvent the wheel.
Use Task Manager and Resource Monitor to check the overall computer functionality and bottle necks.
Scripts for SQL Server also exist - look e.g. here: https://www.brentozar.com/ and download and test all sp_Blitz.... scripts. They are perfect for people like you (and me).
But first of all check your queries performance. If the database design is poor (not normalized, lack of indexes, ...) then is highly possible that your queries will be unperformed. You can start by using SQL Server Profiler to capture the long running queries and analyze them, one by one.