Viewing 15 posts - 2,716 through 2,730 (of 13,870 total)
Please tell us what this function does, in words.
April 29, 2020 at 1:02 pm
Your request seems to be the equivalent of "I would like a way of importing delimited text files. For each file, I do not know what the delimiter is, nor...
April 29, 2020 at 1:00 pm
This might work.
INSERT tUser (Name,Email)
SELECT DISTINCT Name,Email
FROM tUSER_NEW tnew
WHERE NOT EXISTS (SELECT * FROM tUser t where t.Email = tnew.Email)
But if the same e-mail exists in tUSER_New...
April 27, 2020 at 10:12 pm
Your code does not 'skip' anything, nor is there any concept of anything 'running until the end'. Can you state the problem more clearly? Feel free to add sample data...
April 27, 2020 at 9:05 pm
Please provide sample DDL, INSERT statements and desired results (based on the sample data provided) if you would like people to provide a working solution.
April 27, 2020 at 6:43 pm
I rarely use absolutes, but I feel comfortable using one here.
Given the generic nature of that error message, no one here is going to be able to solve this for...
April 27, 2020 at 2:10 pm
Jeez, 13150 points and you still haven't learned how to present your code in a code block.
All you need to do is click on the Insert/edit code sample button...
April 24, 2020 at 6:02 pm
That worked thanks I really appreciate your help.
Thank you
Great, my pleasure and thanks for posting back. So many people just disappear without trace once they have a solution.
April 24, 2020 at 3:18 pm
With thanks to Itzik Ben-Gan for the inline tally table, how about this?
DECLARE @Day TINYINT = 4;
DECLARE @NumberOfPayments INT = 20;
DECLARE @StartDate DATE = DATEADD(DAY, @Day -...
April 24, 2020 at 2:16 pm
Every month since when? Until when?
April 24, 2020 at 1:49 pm
Please read this article.
It's a lot easier to view the run logs from the All Executions report than by querying SSISDB directly.
April 24, 2020 at 1:38 pm
"I need a way to calculate, the date of every month, for whatever combination that they send in here."
Not sure what this means. Define 'every'. Something like this?
April 24, 2020 at 1:29 pm
You've been here long enough to know the drill. Please provide sample DDL, INSERT statements and desired results if you want others to write SQL for you.
April 24, 2020 at 1:14 pm
"While seeing the operation log found that it is getting failed on "OnPostExecute"step."
Please describe what this 'operation log' is, thanks.
April 24, 2020 at 2:05 am
Can you include the file sizes in the screen shot?
April 23, 2020 at 10:37 pm
Viewing 15 posts - 2,716 through 2,730 (of 13,870 total)