Viewing 15 posts - 586 through 600 (of 13,838 total)
Have you ever been in the situation that you need to keep the Data Flow as Delay validation = True because otherwise VS hangs...?
I haven't had this, as far...
February 8, 2024 at 1:53 pm
I first added an 'Expression task' to the Control flow but then nothing was passed to the Source Editor query window...I wonder why? What is it for then...
The Expression Task allows...
February 8, 2024 at 12:12 pm
Looks like I spent time yesterday trying to do the impossible.
I've been having lots of days like that recently. Then again, I am working with Azure Data Factory.
February 7, 2024 at 9:32 am
I don't think you can control the format of Agent history messages. But maybe you could write any errors to a table and then query that.
February 7, 2024 at 9:16 am
Have you checked the All Executions report?
I suspect that the tasks are not being skipped, rather that they are not executing successfully, which would be in line with TangoVictor's post...
February 6, 2024 at 11:04 pm
Create a calculated variable to hold the SQL statement you need
"Select * from BIG_view where Value_Date = '" + @ValueDate + "'"
Wouldn't it make more sense...
February 6, 2024 at 2:46 pm
First step is to create a variable to hold Value_Date. Despite the underlying datatype being (presumably) a date, you may find it easier to work with strings within SSIS expressions.
Then...
February 6, 2024 at 1:54 pm
I do know one way to address this is to create a variable and populate it with the result of this calculation and pass that variable as a parameter
As far...
February 6, 2024 at 8:34 am
Thank you. I'll have to add the unique constraint. I would remove the composite key, but in this case I'm a bit more wary as it might affect their...
February 5, 2024 at 6:33 pm
Adding in a UNIQUE constraint makes this work. Without it, SQL does not know that it is unique, despite the IDENTITY property.
DROP TABLE IF EXISTS dbo.REPORTS_GROUPS_MAP;
DROP TABLE...
February 5, 2024 at 6:19 pm
Great, problem solved.
February 5, 2024 at 6:12 pm
So if you select File/New Project and then type 'SSIS' in the search bar, what do you see?
February 5, 2024 at 5:20 pm
After installing VS2022, go to Extensions and install the
SQL Server Integration Services Projects 2022
extension. That should get you going.
February 5, 2024 at 4:41 pm
Phil, why subtract the average? Seems like this could be conditionally summed. Also, I agree with what Jeff wrote
Because it's a CROSS JOIN, but I only want to subtract...
February 5, 2024 at 4:37 pm
Well, if REPLACE(e.eligibility_ud,'-01','') is a very common operation in your system, you could create it as a PERSISTED COMPUTED column.
You could also see what happens if you replace that inner...
February 5, 2024 at 4:34 pm
Viewing 15 posts - 586 through 600 (of 13,838 total)