Viewing 15 posts - 181 through 195 (of 2,568 total)
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
why don't you try it on dev, on a copy of the table with all required indexes? asking us here for something you can try yourself is a waste of...
March 7, 2024 at 6:51 pm
as ratbak said you will need to change the clustered index to have the partitioned column as its first (not sure if unique) column.
and in order to allow for the...
March 7, 2024 at 6:32 pm
and did you bother googling for it or even asking the vendor? just searching for the error message gave me lots of hits including the solution.
March 5, 2024 at 9:34 pm
SSIS catalog DOES NOT allow for double hop - so if you execute on server A (through SSMS on your own PC) and the package needs to run as YOURSELF...
March 4, 2024 at 5:44 pm
what I would suggest is adding a hashbytes (SHA-1) for the document name - and another for fullpath - and use those in both incoming and permanent tables to do...
March 4, 2024 at 11:27 am
that was a very important aspect to omit.
try this - without the current explain plan its impossible to know if it will help
WITH MaxD AS (select t1.*...
February 29, 2024 at 7:37 pm
having explain plan would be the best thing for us to help - there are a few things on your query that don't look right.
-- original query...
February 29, 2024 at 4:10 pm
issue is connectivity between your SQL server and your AD domain controllers , and potentially a few more network issues.
when using Windows Authentication the Server needs to validate with a...
February 29, 2024 at 1:34 pm
Viewing 15 posts - 181 through 195 (of 2,568 total)