Viewing 15 posts - 16 through 30 (of 145 total)
Our fix was to rollback the version of Symantec and remove NTP (network threat protection). This seems to have stopped the file locking issues and unstoppable SSIS packages.
MWise
May 28, 2013 at 6:13 pm
Bids runs fine or at leastwise stops when you request it to. Running in 64bit still results in the process hanging and the DTExec process not stopping when the...
January 10, 2013 at 5:36 pm
Yes there is logging and it clearly hangs on File System Tasks either native or written as a Script task. The most recent time was when it was hanging...
January 9, 2013 at 2:50 pm
There is no Office automation going on. The packages are pretty standard: FTP task to download, File load to SQL Server in standard data flow task, File Copy...
December 13, 2012 at 6:57 am
Michael Meierruth (11/8/2012)
November 8, 2012 at 2:24 pm
We use an environmental variable too to point to the configuration database. It's a pretty cool method.
Right now for your problem you might want to look into...
November 1, 2012 at 2:54 pm
cmcc (11/1/2012)
\\johnson\clientFTP\users\UBM\ATOM\GEN_V2_DAT_ENT_IUXA9_PRE_20121101_888888.txt
I set the...
November 1, 2012 at 2:46 pm
Instead of a loop, I'd say it's more like a pipeline with the records flowing through each component in the data flow task. Check out the 2nd article in...
November 1, 2012 at 2:39 pm
The For Each loop is used for things like looping through a set of files in a folder, or a list of records from a table usually for some sort...
November 1, 2012 at 11:09 am
Try putting your sql statement in a view and then select from the view in the BCP statement.
MWise
October 30, 2012 at 12:00 pm
danielfountain (10/16/2012)
October 17, 2012 at 5:59 pm
If you are doing data driven subscriptions, then you have to have Enterprise edition. You can fire a subscription to run right after the package finishes. IIRC you...
October 9, 2012 at 1:28 pm
Lee Crain (10/3/2012)
One more thing: I would sit in on the technical interviews to observe the candidate's demeanor when answering questions. Observations of body language can often reveal things about...
October 3, 2012 at 3:22 pm
You might just be able to use a CASE statement to determine which datepart to use in your DATEADD:
select todo_date, CASE interval_type
WHEN 'day' THEN DATEADD(day, interval_freq, todo_date)
WHEN 'month' THEN...
September 21, 2012 at 1:16 pm
1. Load the full file to a staging table.
2. Then use a SQL task to populate a recordset variable using a "SELECT DISTINCT CITY_NAME FROM StageTable"....
September 21, 2012 at 12:30 pm
Viewing 15 posts - 16 through 30 (of 145 total)