Before you start reading this article, I suggest you read the article “Index Concept and Performance Effect on SQL Server” for more detailed information about …
Read More »MSSQL
Create Index On Join Columns
Before you start reading this article, I suggest you read the article “Index Concept and Performance Effect on SQL Server” for more detailed information about …
Read More »How To Find a Column or a Word in Whole Database in SQL Server
Find a Column Name in Whole Database Sometimes you may want to search for a column name in whole database. Instead of looking all the …
Read More »How To List Databases Not Included in the Availability Group(Standalone Databases)
In particular, if you are using Always On Availability Group and you haven’t included some of your databases to an always on availability groups, in …
Read More »How To Find Unused Tables in SQL Server
One of the first steps a good database administrator should take when looking at a database system is to find and remove unused indexes and …
Read More »How To Find Unused Indexes in SQL Server
Index is an object that improves performance in the database in general. Many inexperienced database administrators or application developers create too much index thinking that …
Read More »How To Find Missing Indexes in SQL Server
In the database, especially during the new development phase, indexes are the most important performance providers for us. You should be familiar with the index …
Read More »How To Find Most Expensive Queries in SQL Server
One of the first things that we look at to improve performance in systems that have performance problems is the ones that finding queries that …
Read More »How To Deny Backup to Database Owners in SQL Server
When you authorize logins as db_owner in the database, your disks may be full at an unexpected time. Because a login who has the db_owner …
Read More »How To Create Database Role in SQL Server
When authorizing users in databases, you can use system-defined roles such as db_datareader, db_datawriter, db_owner, or database-level permissions, such as Execute, View Definition. If there …
Read More »