Viewing 15 posts - 1,261 through 1,275 (of 13,838 total)
Then it's a puzzle. You could try setting DelayValidation = True on the CM.
You could also check the All Executions report to look for any other clues. Does the error...
July 22, 2022 at 1:13 pm
Sorry, I missed that.
Does your script task use the connection manager? Are you disposing it?
July 22, 2022 at 12:59 pm
That's a very common error, so don't expect it to correlate well to whatever the problem is!
Are you trying to read anything in parallel, eg, two or more sheets in...
July 22, 2022 at 12:45 pm
In SSMS, that is not possible – it is seen as a query tool, not a presentation tool.
July 22, 2022 at 9:29 am
I'd probably use a Script Component (source) to do this. It will perform all of the parsing and output redirection for you.
The above advice would also work (except for the...
July 21, 2022 at 6:34 pm
What is the format of the value in the CSV file? (Use a text editor, like Notepad++, to check this. Do not use Excel.)
July 21, 2022 at 12:59 pm
From the ROWVERSION help:
Each database has a counter that is incremented for each insert or update operation that is performed on a table that contains a rowversion column within the database. This...
July 21, 2022 at 9:05 am
No problem.
Are there any deletes happening in the remote table?
July 21, 2022 at 8:54 am
Your suggested code looks fine to me. You could simplify it a little:
SELECT @LatestChange = MAX(VerCol) from localtable
July 21, 2022 at 8:43 am
Ok yeah I wasn't sure if it's as simple as just using the dmk. Read a post that made me think there was more going on with the encryption.
I...
July 21, 2022 at 7:31 am
Presumably you Googled the error & found a load of posts relating to TLS config? What have you tried?
July 21, 2022 at 7:29 am
I've never tried, but do you have the password used when the SSISDB database was created? If you do, you could try the sort of stuff which is detailed
July 20, 2022 at 5:00 pm
thanks for the reply.
It is really simple isolated table, just for testing
PriKey INT, VerCol rowversion, FieldB varchar(50)
I have now also copied this to another box that does not get...
July 20, 2022 at 4:54 pm
The documentation seems clear on this:
Modifies the contents of an XML document. Use this method to modify the content of an xml type variable or column. This method takes an XML...
July 20, 2022 at 8:53 am
Fixing your PoSh script is probably a good way to proceed.
July 20, 2022 at 7:42 am
Viewing 15 posts - 1,261 through 1,275 (of 13,838 total)