Viewing 15 posts - 166 through 180 (of 13,661 total)
A formatted version of the OP's query:
SELECT service_form_name = selected_sfs.sfName
,age = c.agingDays
,documents.document_id
...
July 8, 2024 at 9:27 pm
Calling Excel from SSIS is possible, though it requires Excel to be installed on the server next to where SSIS is running and I would not encourage that.
I cannot think...
July 6, 2024 at 1:59 pm
Dear Friends,
Would be grateful if anybody can advise why one of my servers, doesnt allow a connection anymore from SSMS on my terminal. The IP address is the unchanged....
July 5, 2024 at 9:20 am
I wanted to test this, but after running the two 2022 installation files (from here), the PQ connector did not appear for me in VS2022. Can't see anything which...
July 5, 2024 at 8:22 am
The image you have posted is of an OLEDB Destination.
What does your source look like? Does it have output columns?
July 4, 2024 at 9:15 am
If you're going to create a temp table, at least make it temporary!
DROP TABLE IF EXISTS #sat_temp;
CREATE TABLE #sat_temp
(
Domain NVARCHAR(255)
);
INSERT #sat_temp
(
...
July 3, 2024 at 8:22 am
EXISTS will do it. But as you have not provided consumable data, I can't code it for you.
July 1, 2024 at 6:36 pm
WITH bunch
AS (SELECT caseid
,anotherid
,locked
...
July 1, 2024 at 4:04 pm
First I want to thank anyone who takes a moment to help with this. I really appreciate all the help I've gotten here over the years and I wish...
July 1, 2024 at 8:06 am
I've not heard of anything like that, not that I've looked.
But if you are able to pull together some sample data and desired results, someone here might have a go...
June 27, 2024 at 9:27 am
You can use CASE in ORDER BY and you can get variable sorting to work. You can also get round the varchar/numeric issue by using an expression in the ORDER...
June 27, 2024 at 8:42 am
Thank you, Jeff. That would only require installing Office, or at least Excel, on the server, correct? I could document which version of Excel is used.
No, this is not...
June 27, 2024 at 8:14 am
If you can recreate the issue in a test environment, can you try removing the index, performing the problematic insert & then looking at the results?
Or could the source data...
June 25, 2024 at 1:08 pm
Rather than setting the column types, I suggest you add a data conversion component after the source to convert from source to target datatypes. It is these converted columns which...
June 24, 2024 at 8:00 am
Thank you for elucidating. It's a really interesting problem.
June 19, 2024 at 3:51 pm
Viewing 15 posts - 166 through 180 (of 13,661 total)