Click here to monitor SSC
SQLServerCentral is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
 
 
 

SQLRunner

This blog is syndicated from SSIS - SQL Server Tidbits(http://josef-richberg.squarespace.com)

SSIS : Using the VariableDispenser object within Script Components

 I have become accustom to modifying package variables within my Script Task using the VariablesDispenser  object.  It is convenient and powerful.  I started working with this object due to issues I found while hacking my way through SSIS2005.  I would put the variables in the ReadOnly…

Read more

0 comments, 339 reads

Posted in SQLRunner on 26 April 2010

SSIS : Using the VariableDispenser object within Script Components

 I have become accustom to modifying package variables within my Script Task using the VariablesDispenser  object.  It is convenient and powerful.  I started working with this object due to issues I found while hacking my way through SSIS2005.  I would put the variables in the ReadOnly…

Read more

2 comments, 736 reads

Posted in SQLRunner on 26 April 2010

SSIS : Conditional Split optimization

I have built an enormous number of packages for this project over the past few weeks (just over 60) and wondered if a conditional split case without a destination was efficient.  I have been using the Conditional Split component with one case going nowhere as a way to 'throw' out… Read more

0 comments, 143 reads

Posted in SQLRunner on 26 April 2010

Indexed Views

Views are used quite often within SQL Server for a number of reasons.  They can be used to restrict access to tables (restrict the columns viewable or the records returned) , combine multiple tables into a single 'virtual table', or apply specific sets of formulas(like avg cost or an item).… Read more

0 comments, 100 reads

Posted in SQLRunner on 26 March 2010

Simple Series : SSIS Conditional Split

Conditional Split is a very powerful component, enabling you to send records in different directions or exclude them from the downstream altogether.  I use this component quite often in my SSIS packages.  In the industry I work in, publishing, there are many times we'll get a file in from…

Read more

0 comments, 269 reads

Posted in SQLRunner on 26 March 2010

Simple Series : SSIS Conditional Split

Conditional Split is a very powerful component, enabling you to send records in different directions or exclude them from the downstream altogether.  I use this component quite often in my SSIS packages.  In the industry I work in, publishing, there are many times we'll get a file in from…

Read more

1 comments, 316 reads

Posted in SQLRunner on 25 March 2010

Virtual Presentation : Index Statistics

I just gave a virtual presentation, courtesy of Pass and the appdev group.  The recorded presentation is available here:

Recorded Presentation

 

A copy of the slide deck is available in the download section:

Index Statistics

 

  Read more

0 comments, 115 reads

Posted in SQLRunner on 23 March 2010

Business needs vs dirty reads

I have worked in many industries, but most of my time has been in the publishing industry.  For those not familiar with this industry it is rather interesting.  The main objective is to "sell" as many books as possible to as many retailers and distributors as possible.  I put sell… Read more

0 comments, 65 reads

Posted in SQLRunner on 12 March 2010

Managing user data and response through 'drop boxes'

There are a few ways to get data from a client to your system; FTP or email.  Internally we tend to use email for two reasons: everyone has it and  it provides an audit trail (I know who sent what and when).  The corporate email standard is MS Outlook, which… Read more

0 comments, 103 reads

Posted in SQLRunner on 24 February 2010

SSIS 2008 Script Component variable gotcha..

In a previous post I showed you how to access variables from within an SSIS script component.  More specifically I showed you how to access variables from within an Script Destination Component.  You can not access the read/write variables using the standard Dts.VariableDispenser that you are familiar with… Read more

0 comments, 143 reads

Posted in SQLRunner on 17 February 2010

SSIS 2008 Script Component variable gotcha..

In a previous post I showed you how to access variables from within an SSIS script component.  More specifically I showed you how to access variables from within an Script Destination Component.  You can not access the read/write variables using the standard Dts.VariableDispenser that you are familiar with… Read more

3 comments, 1,510 reads

Posted in SQLRunner on 16 February 2010

I've been published on Simple-Talk.

 I am excited to say I have been published on Simple-Talk.  This was my first foray into being professionally edited.  I will say the experience was not what I imagined.  I guess everyone has different ideas of what it is like to have an editors review your…

Read more

0 comments, 61 reads

Posted in SQLRunner on 9 February 2010

I've been published on Simple-Talk.

 I am excited to say I have been published on Simple-Talk.  This was my first foray into being professionally edited.  I will say the experience was not what I imagined.  I guess everyone has different ideas of what it is like to have an editors review your…

Read more

2 comments, 62 reads

Posted in SQLRunner on 8 February 2010

Service Broker, Triggers, CLR. and SSIS Threading Framework

I have been trying for a few days to implement a Service Broker implementation to, service the threading framework I built for SSIS.  When you build the threading framework you have a set number of threads running and I have been looking for a way to modify the number of… Read more

0 comments, 78 reads

Posted in SQLRunner on 7 February 2010

Service Broker, Triggers, CLR. and SSIS Threading Framework

I have been trying for a few days to implement a Service Broker implementation to, service the threading framework I built for SSIS.  When you build the threading framework you have a set number of threads running and I have been looking for a way to modify the number of… Read more

6 comments, 573 reads

Posted in SQLRunner on 7 February 2010

Sending SSIS Errors to the Windows Event Log

 In a previous post I explained how to trap for errors in your Script Task and Components and send the information to the SSIS Log (link).  A good friend of mine and system engineer extraordinaire Eugene L. (last name withheld to protect the guilty :) ) suggested that…

Read more

3 comments, 943 reads

Posted in SQLRunner on 1 February 2010

Try Catch within an SSIS Script Tasks and Components

 Using a Try/Catch/Finally within your Script Components and Script Tasks is just good coding practice.  The thing you want to be able to do is push any errors you trap to a log file.  The syntax is somewhat simple, but it took me some…

Read more

0 comments, 514 reads

Posted in SQLRunner on 30 January 2010

Working with ADO.Net variables in SSIS scripts

I am always looking to improve the performance of my SSIS packages.  I try to do as much work within the package as possible, only going to external stores (databases, flat/raw files) as little as possible.  There are a number of reasons for this.  Raw files are incredibly fast and…

Read more

0 comments, 95 reads

Posted in SQLRunner on 25 January 2010

Working with ADO.Net variables in SSIS scripts

I am always looking to improve the performance of my SSIS packages.  I try to do as much work within the package as possible, only going to external stores (databases, flat/raw files) as little as possible.  There are a number of reasons for this.  Raw files are incredibly fast and…

Read more

2 comments, 1,153 reads

Posted in SQLRunner on 25 January 2010

Implement a stack in SQL Server using stored procedures

In this article I will show you how to implement a stack.  In programming, stacks are a great way to manage data or work.  Everyone pulls from the same pool and there is no duplication (once a unit is pulled off the stack, it is no longer available to any…

Read more

9 comments, 982 reads

Posted in SQLRunner on 10 January 2010

Newer posts

Older posts