Viewing 15 posts - 46 through 60 (of 179 total)
I do something that might be what you want.
In your table above, does RegenerateFlag tell whether that country/vendor should be run? If so, then you need a process to set...
May 5, 2020 at 12:46 pm
You know what today is, using GETDATE(). You can use EOMONTH() to get the last day of the current month. Then use DATEADD to add one day to that. Save...
May 5, 2020 at 12:07 pm
I should have gotten it right, except for that critical word "not" that I missed seeing .......
Reminds me of debugging code - we don't see the obvious.
May 4, 2020 at 11:22 am
Alphabetical by what? Table name, or order in the joins?
I suspect the latter. Which means in one query you might have
Order as a
Join OrderItem as b
And in...
April 28, 2020 at 11:13 am
Also note that you have misspelled abbreviation.
That may not be the OP's fault. It might be inherited from whenever the tables were created.
I've run across it many times in...
March 23, 2020 at 11:24 am
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...
March 17, 2020 at 3:54 pm
Not an article, but here's a short outline of what an SSIS package to do this would look like.
March 17, 2020 at 11:30 am
Often queries will return the "first" x items. But just as a query without an ORDER BY doesn't necessarily return the "first" items, neither does STRING_SPLIT always return items in...
March 17, 2020 at 11:13 am
Also beware of any queries, views, procedures or reports that use "SELECT * FROM ..." one of these tables you propose to change.
February 11, 2020 at 12:13 pm
What are the rules for which digits should be kept and which discarded?
January 3, 2020 at 12:33 pm
Trybbe, what are the results you want to see for your 3 examples?
The issue is confused by the 8 in the 8th position of the last account. Is that 8...
January 3, 2020 at 12:08 pm
You need to define your rules for removing zeroes. In your first example, you removed 5 of the 6. In the second, you removed all of them. How can we...
December 27, 2019 at 12:14 pm
I'm guessing, even though you say it has the same account and permissions, it has something to do with your connection manager definitions.
That could be due to rights issues -...
November 26, 2019 at 12:13 pm
I generally like identities as primary and foreign keys, just because that's my preference. And sometimes it's easier to maintain, say for when the natural key of a collection is...
November 18, 2019 at 12:44 pm
Use project connection managers for your db connections in the SSIS package.
Deploy the SSIS from your development tool (e.g. Visual Studio) to Integration Services Catalog SSISDB in your dev environment.
Once...
October 31, 2019 at 11:49 am
Viewing 15 posts - 46 through 60 (of 179 total)