Viewing 15 posts - 601 through 615 (of 13,849 total)
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
You could create a database project in VS and then import the database structure into that. Doing so will create the individual files you need (though not with IF EXISTS...
February 5, 2024 at 4:23 pm
Given your >13,000 points, I need to confirm with you whether this is a joke?
February 5, 2024 at 4:03 pm
Actually i want to do sum of qty in subitem_id 203 and 299 and subtract it form item_id 103 group by item_id.
OK, based on this description, try this
February 5, 2024 at 12:08 pm
Nice try, but there are a few issues.
...
February 5, 2024 at 9:14 am
Viewing 15 posts - 601 through 615 (of 13,849 total)