Viewing 15 posts - 2,851 through 2,865 (of 13,870 total)
If you don't understand these steps, I'd suggest finding a tutorial on SSIS that includes setting variables, ForEach and Connection Managers.
That's why I'm asking people to write a...
March 17, 2020 at 3:30 pm
Spaces at the end of strings are usually ignored by SQL Server. Have a read here for some more detail.
--Neil beat me to it!
March 17, 2020 at 1:35 pm
Jeff, I think your bracket should be after 'AND', not before it.
March 16, 2020 at 8:27 pm
--OK, let me have another attempt at this post!
Your logic seems solid.
I think you need to compare the two sets of results, identify the differences and see whether you can...
March 15, 2020 at 1:55 pm
OK, it's not very elegant, but using this
SELECT RightNow = convert(VARCHAR(30),GETDATE(),21)
and saving to a string worked for me.
March 12, 2020 at 10:00 pm
Try using DT_DBTIMESTAMP as your SSIS datatype.
March 12, 2020 at 8:59 pm
Yes you are right and I thought you should be this totally works but mint does not.
And I agree totlay this should work, looks like what I am doing...
March 12, 2020 at 5:10 pm
as for the original topic of this forum. I've just wasted 30 minutes of oxygen to have to explain (after no details added) that emptystring is not the same...
March 12, 2020 at 5:06 pm
This varies from one organisation to the next. I've seen all combinations.
Having said that, you can usually apportion all of the "why is it so slow?" blame solely to DBAs,...
March 12, 2020 at 1:50 pm
Building the update query using dynamic SQL is one way. Alternatively, something like this should work:
UPDATE t
SET FirstName = IsNull(@first_name, FirstName),
LastName =...
March 12, 2020 at 1:44 pm
attached my package
To what? Certainly not this post.
If you are not prepared to answer any of the questions which people are directing at you, don't be surprised at the...
March 11, 2020 at 1:57 pm
I have an alternative approach for you to consider. It relies on the following assumptions:
March 10, 2020 at 7:50 pm
Did 'he' say whether this is a one-off requirement, or something which will need to run periodically?
March 10, 2020 at 5:52 pm
Thank you, Frederico. I'm at work again. Without local admin access, it seems I cannot adjust perms for those folders.
(I had already run the sp_MSset_oledb_prop commands though.)
March 10, 2020 at 1:32 pm
Regarding the bug ... is that the one where you hit 'Edit Script' only to find that you are presented with a blank script? I've seen that in 2017 too...
March 10, 2020 at 1:26 pm
Viewing 15 posts - 2,851 through 2,865 (of 13,870 total)