Viewing 15 posts - 1 through 15 (of 82 total)
Scott,
Your function works but outputs in rows.
I want like this in fact:
declare @tag varchar(100)
set @tag = 'one-two-three-four'
select
upper(convert(varchar(10),ltrim(PARSENAME(REPLACE(@tag, '-', '.'), 4)))) as [Post0],
upper(convert(varchar(10),ltrim(PARSENAME(REPLACE(@tag, '-', '.'), 3)))) as...
January 29, 2024 at 8:11 pm
Scott,
Is it built in function in SQL 2016 SP3? it doesn't look like it's there.
Msg 208, Level 16, State 1, Line 3
Invalid object name 'DelimitedSplit8K'
Vn
January 29, 2024 at 7:46 pm
Thanks, Frederico.
The front-end CRM sees exactly what i see on SQL SSMS too.
e.g. O’brien
The CSV file when I open them in Notepad++, they are in UTF-8 encoding, hence they look...
May 23, 2023 at 2:14 pm
Mark,
The client PCs have no SQL tools at all. I did consider to install just the free SSMS client. But I was refused that request.
May have to go back to...
January 12, 2023 at 11:40 am
Hi Jeffrey,
yes, SSRS is a brilliant idea. not sure why it didn't occur to me. I had created few SSRS reports in past.
I will consider SSRS or a python script.
Thank...
January 12, 2023 at 9:54 am
Fredrico,
powershell is so restricted and gives me all kind of errors. Scripting is disabled on group policy.
I think I will try python route to access the SP and convert the...
January 12, 2023 at 9:52 am
At the moment there is no Data transformation. This is work in progress. Unlikely i may need it, but can't be sure.
I have not done a powershell script before.
Does the...
January 11, 2023 at 12:07 pm
Hi Fredrico,
The SSIS package calls a SP and outputs the CSV to a network folder. The end users need this CSV for further processing in some other CRM.
A couple of...
January 11, 2023 at 11:21 am
Hi Phil,
no, the SSIS is not deployed yet to SSISDB.
Also the client PCs/users will not have any SQL tools on there. I could install basic SQL client (free) on client...
January 11, 2023 at 10:47 am
Thank you Phil That works fine now.
October 24, 2022 at 4:52 pm
Thanks Bradley,
That worked perfectly fine. Apart from an added new prompt for "changes to your device", the Splash and login prompt comes up so quickly.
It was such an annoying thing...
March 3, 2022 at 5:10 pm
Thank you all for your inputs.
I have resolved the issue using Merge Join (Left Outer join) with Conditional Split (for column = NULL)
which produces exactly the new records I need...
May 17, 2021 at 6:19 pm
Phil,
Yes, there won't be any duplication in the file within itself because of the unique values(username).
However, regular importing the same CSV file with older data and new data, will make...
May 17, 2021 at 6:16 pm
Phil,
Yes, there is a unique non-numeric key (username). Can the conditional split be used against one field to check for duplication?
V
May 17, 2021 at 1:56 pm
Are you saying that the source file contains all the rows (new rows and old rows and is frequently updated with new rows) all the time and that you have...
May 17, 2021 at 1:04 pm
Viewing 15 posts - 1 through 15 (of 82 total)