Viewing 15 posts - 46 through 60 (of 114 total)
Line breaks meaning carriage returns. I have an SSIS package that dumps out tables from a database into flat files and I have to verify the counts in the...
April 11, 2013 at 7:18 am
A day and a half later, I have a slightly improved solution that is inspired by this site:
http://www.bidn.com/blogs/BradSchacht/ssis/1575/batch-files-command-lines
In my Execute Process task I have removed the value for...
March 13, 2013 at 2:26 pm
http://www.sqlservercentral.com/Forums/Topic365090-148-3.aspx
http://codingstuffs.blogspot.com/2007/03/pgp-inside-ssis-package.html
There are plenty of examples of PGP encryption being called from an Execute Process task where the PGP server is on the same box as...
March 13, 2013 at 1:23 pm
Something like:
create function dbo.Conditional_Lookup
(
@vID int
)
RETURNS varchar(255)
as
BEGIN
declare @vOutput varchar(255)
declare @v1 varchar(255)
declare @v2 varchar(255)
select...
March 13, 2013 at 7:48 am
Have you tried writing a SQL scalar function to accomplish it? That would be the way I'd begin.
March 13, 2013 at 7:17 am
Once in a while, SSIS loses my VB code too. I don't have an explanation other than the product is a little buggy.
March 13, 2013 at 7:12 am
One possible work-around is to perform all of the stored procedure calls from a single umbrella procedure; i.e.,
create procedure Call_them_all
as
exec sProc1;
exec sProc2;
...
This way you don't need...
March 13, 2013 at 7:05 am
Well, I have a solution that works. I gave up on the FTP task. Instead, I create a batch file on the FTP server. I have shared...
February 11, 2013 at 8:52 am
I'm trying to imagine any single chore harder in this world of IT then getting the SSIS FTP task to work when run as a job. Why does Microsoft...
February 7, 2013 at 1:29 pm
Karen, Google is our friend. I just did a quick search and found these pages:
http://microsoft-ssis.blogspot.pt/2011/05/download-source-file-from-website-with.html
January 30, 2013 at 6:15 am
I discovered this page:
http://sqlserverdownanddirty.blogspot.com/2011/07/ssis-execute-process-task-hangs-when.html
I added the SEE_MASK_NOZONECHECKS environment variable to the server that houses the SQL installation where my package resides. It now works as a job!...
January 29, 2013 at 12:49 pm
Well, that certainly is a complex spreadsheet. You could see if you can download the spreadsheet using a script task. (I don't know how it can be done,...
January 29, 2013 at 11:33 am
Karen,
You could try downloading the spreadsheet to a location that your SQL Server can see. Then run the import/export wizard on the file you downloaded.
January 29, 2013 at 9:36 am
Phil,
That is why I'm putting this command at the top of the batch file:
pushd "\\PGPServer\temp"
I'm trying to avoid that context issue. What seems to be happening is that...
January 29, 2013 at 8:41 am
Viewing 15 posts - 46 through 60 (of 114 total)