Reorganise index vs Rebuild Index in Sql Server Maintenance plan

The reorganize and rebuild are different things. Reorganize: it’s a defrag for indexes. Takes the existing index(es) and defragments the existing pages. However if the pages are not in a contiguous manner, they stays like before. Only the content of the pages are changing. Rebuild: actually it drops the index and rebuilds it from scratch. … Read more

Difference between Rebuild and Clean + Build in Visual Studio

Rebuild = Clean + Build (usually) Notable details: For a multi-project solution, “rebuild solution” does a “clean” followed by a “build” for each project (possibly in parallel). Whereas a “clean solution” followed by a “build solution” first cleans all projects (possibly in parallel) and then builds all projects (possibly in parallel). This difference in sequencing … Read more