Viewing 15 posts - 31 through 45 (of 428 total)
Lots of interesting solutions.
I'd suggest though looking into doing this parsing in whatever is loading the data, so that it is set before it ever enters the database.
You...
February 9, 2018 at 8:09 am
February 6, 2018 at 1:52 pm
Here's some basic sample code that should get you going.
You'll have to account for edge cases like missing middle initials, extra spaces, prefixes/suffixes, etc...
DECLARE...
February 6, 2018 at 12:47 pm
Interesting, and definitely not what I expected.
Very curious.
December 19, 2017 at 7:25 am
How did you get away without equating your @max-2 variable within your query executed by sp_executesql with the @max-2 variable in your code that calls it?
July 6, 2017 at 11:25 am
Luis Cazares - Friday, January 13, 2017 7:30 AMI saw the "Select 2" after submitting my answer. :unsure:
Ugh, me too. :pinch::doze:
January 13, 2017 at 8:50 am
Revenant (1/4/2017)
Junior Galvão - MVP (1/4/2017)
In tests that I performed the bit in SQL Server Express SP1 2016 the correct answer was the alternative 9:01 (after finish of session 2).
Please...
January 4, 2017 at 9:43 am
Iulian -207023 (8/2/2016)
TomThomson (8/2/2016)
It indicates yet another piece of really sloppy human interface design on Microsoft's part. if Foreign Keys on temprorary tables are not enforced, allowing...
August 2, 2016 at 9:35 am
I always use a script task to check for the file and set a file name variable. I then add a condition on the connection to the next task...
July 19, 2016 at 7:23 am
One of the many reasons I never use this transform.
I do all my data conversion in a Derived Column task, which does let you handle truncation errors by column.
July 13, 2016 at 8:21 am
I'm currently using SSIS to load data from various sources into an Oracle database.
You definitely want to use the Attunity providers. They are orders of magnitude faster than the...
July 8, 2016 at 2:21 pm
Don't use an expression for the default value.
That expression will be evaluated every time the variable is referenced.
So what is happening is that your Expression task...
June 16, 2016 at 10:13 am
Like Jez, my initial thought was a package level event handler.
If you are running the package as an SSIS step in a job within SQL Server, you could also look...
June 8, 2016 at 10:17 am
Viewing 15 posts - 31 through 45 (of 428 total)