Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated in /homepages/8/d352291751/htdocs/sql313/site/libraries/vendor/joomla/application/src/Web/WebClient.php on line 406
SQL313
   

indexes

  • Data Warehouse Indexes

    A datawarehouse environment is used differently than a transactional environment, so architecture and indexing strategies should also be different. In this presentation, we review what the ultimate goal of an index really is, what the point of a data warehouse is, and how they relate to each other. You will also learn common practices for indexing the different types of warehouse tables, specifically dimension tables, fact tables, and staging tables. We will review cases when it is useful to have summary level fact tables, in addition to detail level fact tables. Then, lastly, we will look at the benefits, and gotchas, of using columnstore indexes.

    You can get to the presentation slide-deck by clicking here.  There are helpful notes on most of the slides.

    The script referenced in the slide deck can be downloaded by clicking here.

    Also, there have been a number of requests to be able to get the cute frog pics, so here they are!

    This session is also available via a recording, which can be found by clicking here.  It was presented to the Data Architecture Virtual PASS chapter (although it has been updated since then, the majority of the presentation is the same).

    Presented at:

    • August 2, 2014 - SQL Saturday Baton Rouge (Abstract)
    • May 6, 2014 - Data Architecture Virtual Chapter ** recording available (YouTube Recording)
    • March 12, 2014 - Baton Rouge SQL Server User Group
  • ETL - Index Maintenance - specific table

    First off, this script is still a work in progress.  It is something that I created while working with data warehouse indexes, and added to it when I was getting ready for my presentation.  It helps me specifically in the ETL process - I do NOT use this for overall index maintenance.

    What is nice about this script is that I am able to either disable or rebuild by using the same stored procedure.  That way, when I want to update the process, I only have 1 place to change it and all SSIS packages that use it will be affected.

    The process I am using it in is as follows:

    1. Disable Clustered Index (this also disables all non clustered indexes and saves me from having to specifically do them manually)
    2. Rebuild the Clustered Index
    3. Data Manipulation (insert, edit, delete, etc)
    4. Rebuild all of the NonClustered Indexes

    I am working on a full indexing strategy for the entire ETL process, but for now, I have specific needs and this takes care of all the problem children (tables) allowing the ETL process to continue largely unaffected, but these specific uses run much faster than without it.

    By accessing or using this code, you agree to be bound by the following: license

    Click here for the SCRIPT

    If you have feedback, or are interested in contributing, please email: This email address is being protected from spambots. You need JavaScript enabled to view it.

     

Thank you for visiting!