Viewing 15 posts - 61 through 75 (of 13,733 total)
Running out, I'm afraid. I haven't used packages deployed to the file system for years. I would guess that there's something going on with .NET versions, but the errors you...
December 19, 2024 at 9:15 am
OK, got it!
My next suggestion would be to create a simple script task that does nothing external, eg
int z = 1;
and delete the script component and then try running it...
December 19, 2024 at 2:02 am
December 18, 2024 at 11:42 am
For the current day, what data changes are being made? Inserts, updates, deletes or all three?
December 18, 2024 at 3:37 am
Not that it helps you particularly, but the error message indicates that it is a script task which failed, not a script component, which is a different thing.
I would suggest...
December 18, 2024 at 3:33 am
That explains it. Copy of an old post with spam link added, perhaps. Thanks!
December 12, 2024 at 5:09 pm
I have query which is filling TEMPDB
I need suggestion how to modify this query to which can minimize the TEMPDB space to fill
update #TempShow1 set Name = case when...
December 11, 2024 at 5:57 pm
I copied the above sql ( as it is )....in a ssis variable and called it from execute sql task....it is still not working 🙁
You misunderstood my suggestion.
Create an...
December 3, 2024 at 4:07 pm
Build your dynamic SQL statement as an SSIS variable and then, within your ExecuteSQL task, set the SQLSourceType property to 'Variable' and designate your derived SQL variable as the 'SourceVariable'...
December 3, 2024 at 3:48 pm
It's not the same. The expected output is different in this case thats why. Table structure is also different. Hence posted as a new question.
Can you at least prove...
December 3, 2024 at 9:59 am
Are you saying that you do not know the name of the proc that was executed 27 times (and if so, I'd be interested in knowing what you are looking...
December 3, 2024 at 9:52 am
The error message seems clear. The connection from the SQL Server instance to the target server is different from the one from your machine. It could be a networking issue,...
December 3, 2024 at 9:47 am
My JSON handling is pretty dodgy, but the following query gets you part of the way.
DECLARE @x NVARCHAR(MAX)
= N'{
"metadata":...
November 28, 2024 at 6:58 pm
I believe the more common, and better, naming for tables is plural. I can't think of a major relational dbms that uses singular system table names.
For example: sys.objects (SQL...
November 28, 2024 at 9:14 am
I agree with the advice given so far, and have a couple more ideas for you to consider.
November 27, 2024 at 9:25 am
Viewing 15 posts - 61 through 75 (of 13,733 total)