Viewing 15 posts - 46 through 60 (of 212 total)
Another way of doing this is to use a For Each Loop Container. Set the enumerator to Foreach File, Folder and Files as appropriate.
If the file exists, the container...
May 20, 2016 at 1:55 am
We had a similar problem with our VM when it was upsized. The infrastructure guys said that it was "just a config change" but afterwards performance was dreadful. ...
May 16, 2016 at 6:39 am
Generally the account had DBO rights in each DB. Where the SSIS package needs to access data on a remote server or sFTP we would use login details stored...
May 5, 2016 at 7:19 am
Did you consider sequence tables? I've not used them myself but would they have done what you wanted?
https://msdn.microsoft.com/en-us/library/ff878091.aspx
Jez
May 5, 2016 at 6:30 am
As Lowell said, one service account to run all SQL Agent jobs whether than is an SSIS package or stored procedures for batch process.
Jez
May 5, 2016 at 6:14 am
Personally, I think this is overkill. Usually I have a single service account to run all SQL Agent jobs and ensure that job has appropriate permissions.
If you are doing...
May 5, 2016 at 3:10 am
Are you using a UNC path or a local drive? If it is a local drive it might be that the drive/folder exists on Server A but does not...
May 5, 2016 at 3:00 am
Many of the generic triggers that I have seen, including Pop Rivett's, create an SQL statement for each column in the table so with a wide table of say 100...
May 5, 2016 at 2:24 am
Have you thought about using Broker Services?
Jez
April 29, 2016 at 6:00 am
Why do you want to do SELECT/INSERT/DELETE via a job? What is wrong with a series of stored procedures?
Jez
April 29, 2016 at 3:12 am
Output the new facts to a working table. Then use T-SQL to insert the new records and update the old ones.
Jez
April 27, 2016 at 2:31 am
Strictly speaking I think this should reside in the data layer as it is an attribute of each fact.
IMHO, the KPI would be more along the lines of "What proportion...
April 19, 2016 at 6:31 am
One way to do this is to create a variable with an expression which includes the value that you want. You can then use the variable as SQLSourceType in...
April 18, 2016 at 4:08 am
The OP already has a SSIS package that loads 140+ files sequentially.
I doubt that there are 140+ separate tasks I guess that this has already been solved.
Jez
April 15, 2016 at 7:57 am
Probably the best solution would be to put all 140+ file names into a queue table and then have 4 separate For Each Loops taking one record at a time...
April 15, 2016 at 1:54 am
Viewing 15 posts - 46 through 60 (of 212 total)