Clustered Vs Non-Clustered Index

The difference between the index clustered et Non-clustered in a database is one of the most popular questions in SQL.

Indexes are a very important concept, it makes the execution of your queries fast and if you are comparing a query SELECT which uses an indexed column than one that doesn't, you will see a big difference in performance.

Read More Clustered Vs Non-Clustered Index

 

Run an SSRS subscription with SSIS

A quick post to see how to launch an SSRS subscription from SSIS.

It can be used as in my case for example to send by mail a report on the execution status of an SSIS package. Of course after inserting the logs of this package in a table, create a restitution report of these logs as well as a subscription which sends the report by email.

So how?

Read More Run an SSRS subscription with SSIS

 

Useful SQL queries

In this article, I will explain some general queries to you. I think every developer should be aware of these queries. These queries are not related to a specific SQL topic. But knowing about such queries can solve some complex tasks and can be used in many scenarios, so I decided to write an article about these queries.

Read More Useful SQL queries

 

What is fragmentation?

What is fragmentation? How to detect fragmentation and how to eliminate it?

A fragmented table is a table where some of its data pages point to pages that are not immediately following pages in the extent, and if all its pages are contiguous in both the allocation plan and the extents, then the table is not fragmented.

Read More What is fragmentation?