Viewing 15 posts - 2,491 through 2,505 (of 13,870 total)
Your SELECT includes 5 items, yet your Result section includes only one (per instance). Can you change your result to match the query (or vice versa)?
Also, are you aware that...
August 4, 2020 at 6:31 pm
Can you please clarify exactly what you want by providing an example showing
a) Original text and
b) Desired text?
July 31, 2020 at 6:21 pm
Can you provide sample (sanitised) XML for one single student's data?
July 30, 2020 at 11:45 pm
I noticed that for those tables with non-unique cluster key columns, SQL adds an internal unique identifier. Is there a way to retrieve a single row using this internal...
July 29, 2020 at 5:51 pm
I am going to try the local files with remote GIT source control.
The way I've been working for the last few years is to have the 'remote git' part...
July 29, 2020 at 5:50 pm
I have not seen package files disappear, though I've certainly seen the text in Script Tasks disappear in the past.
Hopefully you've got source control (even if it's just a local...
July 28, 2020 at 9:19 pm
There is no Except. You need to name your columns.
INSERT B (Col1, Col2)
SELECT Col1, Col2
FROM A
July 28, 2020 at 8:04 pm
Thank for the many replies....the idea is show the first row of others. The point is that I need to "call" same columns just to apply a filter into...
July 27, 2020 at 2:54 pm
Multi tenant didnt work due to business contract rules. We only have 3 clients. I do have a question though. Would using the other enviroment in the SQL agaent...
July 27, 2020 at 1:48 pm
Could you provide an example of the source data in the three tables, also what you are currently seeing, followed by what you would like to see?
July 27, 2020 at 1:31 pm
OK, but what is your question?
Your desired format is difficult to understand, can you make it clearer?
July 27, 2020 at 1:29 pm
There is more than one way, but you could do the following:
July 27, 2020 at 1:25 pm
"for some reason..."
SUBSTRING() does not work with wildcards.
Something like this should do the trick:
upper(left(token( @FileName,"\\",tokencount( @FileName, "\\" )), 3)) == "XYZ" && upper(right(token( @FileName,"\\",tokencount( @FileName, "\\" )),4))...
July 26, 2020 at 4:09 pm
Even if different server specs does turn out to be the reason, it seems that you have learned quite a lot of new things during the whole investigative process, which...
July 24, 2020 at 4:22 pm
Just tested Chris' solution and it seems to do the job.

July 24, 2020 at 1:22 am
Viewing 15 posts - 2,491 through 2,505 (of 13,870 total)