Viewing 15 posts - 16 through 30 (of 13,658 total)
That's good advice from Frederico.
Sorts in SSIS are to be avoided if possible, as they are blocking components and perform very much worse than in-database sorts.
If your tables reside on...
November 12, 2024 at 9:49 am
You could build the pivot dynamically in T-SQL (sample link), but getting that out of SSIS and into Excel is extremely tricky, because SSIS likes to know its columns...
November 11, 2024 at 9:58 pm
It's been a while since I've had to do this, so I just created a dummy package to work it out again.
Here are the steps that I took:
November 11, 2024 at 1:08 pm
Are you confirming that you have done as I suggested and that the same error occurs?
November 7, 2024 at 4:22 pm
If you don't need NAME at all, take it out of the data flow by going into the data source advanced editor / column mappings and setting Output Column to...
November 7, 2024 at 4:05 pm
OK, those errors are actually pretty helpful.
There must be one or more occurrences of the column NAME in file
ADAP.O#Adaptimmune Therapeutics ADR Representing 6 Ord Shs (D).csv
where the data is longer...
November 7, 2024 at 9:23 am
Were you logged in as a SQL Server user or a Windows user when you tried this?
Are the 'could not find' objects still present? Eg, Is_Valid_Name should be here:
November 6, 2024 at 8:49 am
I'm trying to run through SQL Agent job. Only issue is coming in the packages where transformations like Multicast, conditional Spilt etc. are being used.
When run directly through Visual...
November 4, 2024 at 8:56 am
Can people please use the {} Code tags when posting code, as it makes it so much easier to read.
DROP TABLE IF EXISTS #SomeData;
CREATE TABLE #SomeData
(
...
November 3, 2024 at 10:38 am
Thanks for clarifying. No idea where those square brackets are coming from ... I just played around with some connections and cannot reproduce what you are seeing. I even tried...
October 31, 2024 at 6:25 pm
Like said, nothing special, other than that the named instance does not work when set in PROJECT Connection manager.... see my text and pics.
Ville
I've looked again at your pics...
October 31, 2024 at 5:26 pm
Hi Phil,
Yes, I opened the XML's as well and saw that they are not there but in the Connection Managers window they are...
"You can rename the connection manager without...
October 31, 2024 at 4:59 pm
First of all, I find it odd/annoying that I can't exclude a Project level connect from a package Connection Managers... at least I can not do it. Why should they...
October 31, 2024 at 3:49 pm
Create a variable and add an expression which evaluates to the exact query you want to execute. Use that variable as your source query.
October 30, 2024 at 3:09 pm
If you modify the source query for the Oracle data to select where
StartDate <= LoginDate <= EndDate
, can you then do the lookup in the way that you wish?
October 30, 2024 at 2:28 pm
Viewing 15 posts - 16 through 30 (of 13,658 total)