Viewing 15 posts - 196 through 210 (of 13,840 total)
If your question is as simple as "can data be moved from one database to another in SQL Server?" the answer is yes and there are numerous ways of doing...
November 14, 2024 at 1:57 pm
However, it's worth noting that FOR XML PATH has some advantages in specific cases, such as handling complex string concatenation, concatenating multiple data points, and managing special characters more...
November 13, 2024 at 4:10 pm
As for SSIS, I really do not understand why some smart people believe it does better job than other methods, good old bulk insert for example. MS SQL never...
November 13, 2024 at 9:51 am
Without sample data and DDL it's not easy to provide working code.
But in pseudo-code, something like this
select sum(iif(date in last month), value, 0)
November 12, 2024 at 11:36 am
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
Viewing 15 posts - 196 through 210 (of 13,840 total)