home  »  Blogs  »  sqlscottgleason  »  What three events brought you here?

To rate this blog entry please  register or login

Author

Comments (2)

  • 1/17/2010 8:52:20 PM by: 
    Thanks for such a good read Scott. I responded to this very interesting topic at my blog as well at http://troygallant.com/?p=266
  • PatrickLeBlanc 1/18/2010 7:48:22 AM by:  PatrickLeBlanc
    So I am up next. Coming soon!!!

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:

sqlscottgleason's latest blog posts

  • How to Transfer SQL Logins Between SQL Servers
    1/26/2010
    If your building a new sql server, you'll need to move the SQL user accounts and their passwords to the new server.  This works for sql 2005 and sql 2008 servers. Here is the link to the orginal article http://support.microsoft.com/kb/918992     This arti...
  • What three events brought you here?
    1/17/2010
    Recently Paul Randal posted What three events brought you here ?  He bascially ask "what three life-direction-changing-events" have brought you to where you are today? Which is a very interesting question that comes up from time to time at the 'After Even...
  • Configure Group Policy to keep RDP session to a minimum on your SSIS boxes.
    1/4/2010
    Configure Group Policy to keep RDP session to a minimum on your SSIS boxes Active Directory Group Polices overwrite local policies on a windows server.  With that fact in mind, if you know that here are no AD policies for RDP Session time limits, and you ...
  • Where are my “Indent” and “Un Indent” icons within Bids “Script Task Editor”?
    12/15/2009
    Where are my “Indent” and “Un Indent” icons within Bids “Script Task Editor”? On the default toolbar, you have comment and uncomment code, but Indent and Un Indent are missing. You'll have to customize your tool bar and add them. From the Menu click thru ...

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...