home  »  Blogs  »  MarkGStacey  »  Scripting Indexes with FIlters and schemas

To rate this blog entry please  register or login

Author

MarkGStacey MarkGStacey (Member since: 12/10/2009)

View MarkGStacey 's profile

Comments (1)

  • PatrickLeBlanc 1/15/2010 10:18:16 AM by:  PatrickLeBlanc
    Mark how are you? I have seen this question asked so many times. Can you send me your email address, pleblanc@pragmaticworks.com? I will send you a link to an application that should help. It is a work in progress, but with the help of the SQL Server community I think we can make a solid application.

Post a comment

Comment (No HTML)  

Type the characters:
 *
 
   

Join Business Intelligence Developer Network for FREE Today!

It's fast, easy and free! Submit articles, get your own blog, ask questions & give answers in the forums, and become a better developer, faster.

enter your email address:

MarkGStacey's latest blog posts

  • Chart Analyis
    3/3/2010
    Chart analysis. So, BI in the terms of something that is known to us all: browser wars !     OK, so the stats themselves are fairly interesting (Chrome eats Opera at launch), lets have a look at the chart itself: Firstly, choice of chart:We’re tracking va...
  • Altering Foreign Key constraints
    1/29/2010
    http://www.bidn.com//Assets/Uploaded-CMS-Files/2180394a-380c-419f-a0a6-2570eb8c76beAlteringForeignKeys_1_PrepTables.zip       http://www.bidn.com//Assets/Uploaded-CMS-Files/631a6a0e-8cf1-494e-b609-094c7c08e9deAlteringForeignKeys_2_CreateAlter.zip   This i...
  • SQL 2008 Compression
    1/29/2010
    Hmmmm. Just a quick anecdote about SQL's backup compression.   I backed up a DB, tiny one, no compression, resulted in a size of 5636 KB. I was mailing it out, so I quickly 7Zipped it, and got a size of 434KB. Pretty impressive ratio actually, but I've al...
  • Automatically clearing data in a db with foreign keys
    1/22/2010
    Well, this isn't going to be a long blog post.   One of the tasks facing many of us is how to clear tables with foreign keys : we want to truncate those without any foreign keys referencing them, and delete the rest in the correct. Here's a script I've us...
  • Filtered indexes - a low maintenance option to replace partitioning?
    1/18/2010
    A preface: this wont' always replace partitioning.   But in those in between cases, where performance needs a small boost, filtered indexes may well be enough of an advantage to NOT need to partition   So here's an example   CREATE NONCLUSTERED INDEX Part...

Latest community blog posts

  • MikeMollenhour Using Temp Tables in Data Flow Source Stored Procedure
    3/11/2010
    Many times while working with SSIS I have had issues where I would like to add a temp table to a stored procedure that is a source for my SSIS dataflow. One work around for this is create a temp table variable instead. The issue with this is if many rows ...
  • BradSchacht SQL REPLACE for editing Configuration Tables
    3/10/2010
    Package Configurations in SSIS are key to making your packaged portable across the entire development process.  The problem you being to face with configuration files is the quantity that you collect.  Recently I was working on a project where we had paca...
  • BradSchacht Calculate the Date of the Previous Sunday
    3/10/2010
    There are a number of ways that you can calculate dates using T-SQL.  A common practice is to find the first day of the week which can be accomplished easily by using the following function.select DATEADD(wk, DATEDIFF(wk,0,getdate()), 0)However, you will ...
  • Bevans Back to Basics
    3/10/2010
    Today I figured I go back to basics with this blog since a majority of the visitors to this site are primarily DBA's and Database Guru's. This may turn into a series but for now we will discuss a bit of a feared power of sql server, and that is the fact t...
  • PatrickLeBlanc Using a CTE with a T-SQL Pivot Statement
    3/9/2010
    During a T-SQL class that I was recently teaching I was asked if a PIVOT could be performed using a Common Table Expression (CTE).  In other words, instead of using the method outlined in SQL Server Books Online that uses a derived table, replace the deri...