Viewing 15 posts - 3,391 through 3,405 (of 13,882 total)
Unfortunately, your flexible architecture has resulted in a performance trade-off which is not easily remedied.
If you can buy and install third party products, you might like to think about
August 21, 2019 at 8:20 pm
Indeed I did. I believe that yours demonstrates that you did not read mine.
Why are you persisting with Results to Text after I told you (implicitly) that this does not...
August 20, 2019 at 10:21 pm
did i miss something??
Did you even read my response?
August 20, 2019 at 10:14 pm
You mean 'Results to File'?
You will be prompted for a file name/location when you execute the query.
Results to Text puts the results into the Results pane, in text format.
August 20, 2019 at 10:10 pm
I'm just waiting for Jeff to chime in on this one ...
August 20, 2019 at 3:37 pm
One possibility would be to add a 'WorkerNumber' (INT) column to your JobExecution table. Let's say you have 20 jobs, which would equate to 4 groups, each containing 5 jobs.
Now...
August 20, 2019 at 3:36 pm
I don't have any links to hand.
But what I will say is that you should think of SSIS as a streaming tool.
Transformations are applied to data as it streams along...
August 20, 2019 at 1:44 pm
A SQL transform would require access to a DB engine. To make use of that engine would require the passing of data to the engine and the subsequent retrieval of...
August 19, 2019 at 6:34 pm
You can't. If you want to use T-SQL, you need to use the DB engine (and not SSIS). You'll likely have to rewrite your existing code to make best use...
August 19, 2019 at 6:04 pm
What are the exact criteria for defining a row as 'Inactive'?
August 19, 2019 at 1:51 pm
Do any of your dealer names contain an ampersand (&)? That might do it.
August 19, 2019 at 1:44 pm
Well, this is a big one (for this data set), at ~200-450K rows. So, maybe not _tiny_, but certainly not huge, compared to a lot of others out there.
The...
August 16, 2019 at 2:44 pm
Most people here won't open Excel documents from the Internet.
Can you use text files, or simply cut & paste the code, instead?
August 16, 2019 at 2:41 pm
Hi
The 2nd table will only have 1 entry for the person employment status from the first table whether it would be "Manager", "Fired" or "Enjoy Life". It will not...
August 16, 2019 at 2:39 pm
Don't use OLEDB Command for updates ... unless your number of updates is tiny. It's dog slow.
Instead, direct all of your update rows to (yet) another staging table (as INSERTs),...
August 16, 2019 at 12:58 am
Viewing 15 posts - 3,391 through 3,405 (of 13,882 total)