Viewing 15 posts - 586 through 600 (of 13,841 total)
Might be a bit to powerful for what you need but check out dSeries workload automation from Broadcom, used that in the past for this type of centralised job...
February 9, 2024 at 1:47 pm
Thanks for responding. I'm hoping to find something a bit prettier than SQL Agent, and ideally a product which is independent of SQL Server, as it may be used for...
February 9, 2024 at 12:30 pm
Note to self: remember to rent a Lambo one day.
February 9, 2024 at 11:17 am
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
Viewing 15 posts - 586 through 600 (of 13,841 total)