Category

MS SQL

6 articles in this category

SQL Check Index Fragmentation

2014-11-20 2 min read

Thanks to Ola Hallengren, here is a simple scrip to report the fragmentation level of you database’s index One thing to note, if you don’t see any results…

SQL Index Maintenance Script

2014-11-20 2 min read

Small simple scrip to automate SQL Index maintenance. Of course, the best scripts to accomplish this is Ola Hallengren’s SQL Server Maintenance Solution, that you can find here…

How to move the SQL tempDB database files

2014-11-04 1 min read

Open SSMS (If you don’t know what is SSMS, you shouldn’t be doing this…) Paste and execute this query, modifying it to your needs USE master GO ALTER…

How to fix orphaned SQL Server users

2014-10-10 1 min read

Make sure to run all listed commands from the database you are fixing, not from Master. List the orphaned users in the database EXEC sp_change_users_login 'Report' To assign/repair…