Viewing 15 posts - 256 through 270 (of 2,651 total)
BSEG is a heap - why don't you have a Clustered index on it?
and reason for not using any of the other indexes may also be related to not having...
March 14, 2024 at 2:59 pm
I would consider this a duplicate post - and as mentioned on the other ones you are the one that needs to figure out what your SSIs package does and...
March 14, 2024 at 11:33 am
you said " DB is set to read committed" - does this mean your db has Read Committed Snapshot Isolation on? if so this is likely why.
March 14, 2024 at 11:28 am
you have already been given some answers on your original post - https://www.sqlservercentral.com/forums/topic/eliminating-csv-conversion-step
with regards to the errors, they are standard SSIS errors, which you can both read manuals and google...
March 14, 2024 at 8:50 am
so you are asking us to do your work for free?
one thing is to help with particular issues or problems. Error you may get with code for example.
But this is...
March 13, 2024 at 7:54 pm
easy - would help if you had created a script task (as instructed on the link) instead of a script component.
so do it correctly - script component does NOT allow...
March 13, 2024 at 6:09 pm
in addition to what Phil supplied - which may mislead you into thinking you can set it up to bypass this particular issue.
SSIS catalog DOES NOT allow for double hop...
March 13, 2024 at 3:10 pm
and as I said on my prior post - it will not work like that as it is a double hop situation - only way for this execution to work...
March 13, 2024 at 2:44 pm
the way it is done, on many companies, is to restore the DB on a PROD server (can be same server as the source if server has the required capacity)),...
March 13, 2024 at 12:20 pm
let me put it in a different way.
do those packages access any server other than the one where SSIS package is installed and running, and is the connection to those...
March 13, 2024 at 12:11 pm
that message is a typical windows authentication double hop issue (which SSIS Catalog does NOT support).
has NOTHING to do with permissions just to be clear.
so... when you execute the package...
March 13, 2024 at 10:22 am
this is why you should supply consumable data and desired output.
so on above example, how do we link between tbl1 and tbl2? this is assuming that there are more than...
March 12, 2024 at 10:40 am
error is very clear - your bulk insert is failing because of data conversion between input (your file) and the output (#TEMP_TABLE).
it has Nothing to do with that flag or...
March 11, 2024 at 8:20 am
its a matter of choice - but I personally do not use project connections, only project parameters.
Connections are all defined within each package that needs them - and the connection...
March 10, 2024 at 2:35 pm
as Phil said - don't save sensitive parameters. e.g. set packages to "DontSaveSensitive"
while this has a downside in that sensitive parameters are not saved, there are ways around it so...
March 8, 2024 at 6:17 pm
Viewing 15 posts - 256 through 270 (of 2,651 total)