Tag

#SQL

SQL Check Index Fragmentation

2014-11-20

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

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 fix orphaned SQL Server users

2014-10-10

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…