Viewing 15 posts - 1 through 15 (of 26 total)
In general, I don't like calling web services (especially synchronous calls) from an SSIS box, because that ties the performance of the SSIS box to that of the client (the...
May 13, 2013 at 9:00 am
Before we go down the SSIS path, I just want to verify that Data Driven Subscriptions are not an option for you, because it seems like that should be your...
May 10, 2013 at 9:24 pm
You didn't mention where in your pipeline you were trying to accomplish this. If you are in a Script Task, you could do something simple like:
string checkString = "0z700";
while (checkString.StartsWith("0"))...
May 10, 2013 at 1:15 pm
I think this is what you are looking for: Working with Variables Programmatically. You will be able to read and write to the variables collection.
April 19, 2013 at 1:47 pm
Which part are you having problems with, gathering the data with PoSh or pushing it back in SQL?
March 21, 2013 at 8:34 am
Just eyeballing that string, two things that I would try:
1. put a space before the 2nd /SET
2. lose the trailing \ in "C:\Users\mydir\Documents\SRM_IS\IS\ETL\". I seem to recall seeing DTEXEC having...
March 13, 2013 at 12:22 pm
Try not to use SQL Server's resources for this type of thing. Do it on the client side, something like this:
//This assumes you have already populated a DataTable named
//dataTableFromSQL, and...
March 9, 2013 at 1:36 pm
My advice would be to look at TFS no differently than a share out on a file server. Think about each database as a folder. Its subfolders will be tables,...
March 8, 2013 at 6:42 am
The first thing I would check is the Package ProtectionLevel. The appropriate setting for you will be specific to the environment you are running in, but it sounds like you...
March 6, 2013 at 3:00 pm
Using the OUTPUT clause is a common pattern for something like this.
December 4, 2012 at 3:27 pm
My favorite way to get rid of dupes is with a Common Table Expression (CTE).
WITH GroupedDupes AS
(SELECT RowNumber = ROW_NUMBER() OVER (PARTITION BY FirstName ORDER...
August 7, 2012 at 7:26 am
For upgrades, it can depend on how you use it, and if you are currently using Database Projects. One example, if you have leveraged Database Unit Tests, the current version...
July 12, 2012 at 9:47 am
So, are you saying if you select a line in SSMS and press CTRL + K, C it doesn't comment the line (which doesn't match your subject)? If that doesn't...
July 10, 2012 at 9:30 am
Do you mean CTRL + K, C ?
July 10, 2012 at 8:32 am
I've seen that error when the text qualifier gets modified. Check out this blog post from @JamieT.
July 5, 2012 at 10:43 pm
Viewing 15 posts - 1 through 15 (of 26 total)