Viewing 15 posts - 1 through 15 (of 562 total)
Thank you Jeffrey and Phil,
This is even better (was already happy with the solution), but this is even more elegant,
Thanks,
Ben
February 5, 2021 at 8:11 pm
Similar result (see remark)
INSERT #SomeData (LongString)
VALUES
('dlfkjh zlghz lhzg ljshfgv ljhg "IsFso":truezxvlkzçfbhkjzçfbhxçdbjhzxddçjbkh')
,('dlfkjh zlghz lhckljshdf sdjkfsdfhgsdjkdhfgsdjhfgzg ljshfgv ljhg "IsFso":falsezxvlkzçfbhkjzçfbhxçdbjhzxddçjbkh')
,('nothing to be found here');
select *, 'true' IsFso from #SomeData where...
February 5, 2021 at 3:06 pm
Thanks,
Passed this information on to the team.
We just made a connection to the database, with some struggles. But succeeded. Next problem. Although the table names were the same the default...
February 5, 2021 at 2:52 pm
Thanks Scott,
This is what I was looking for. Remembered that something like this was possible. But it had escaped from my memory bank How to do it. (Trying all different...
February 3, 2021 at 12:24 pm
Thanks,
After puzzling a bit (a lot realy), and trying some construction, during a coffee break I decided that :In these modern times, there is often a solution on line, so...
February 1, 2021 at 7:46 pm
Well no, but there were no parameters in your script, nor was it provided as a Procedure; I wouldn't have recommended it as a "fix" if that were the...
January 15, 2021 at 4:38 pm
Perhaps a synonym would work for you here.
Why do the created tables have to have the same name? Presumably it's because some common code needs to run against the...
January 12, 2021 at 7:54 pm
-- EXEC SP_DROP XXX -- For older versions of SQLserver
DROP TABLE IF EXISTS XXX
select top 11 * INTO XXX from...
January 12, 2021 at 7:43 pm
I do not know the answer, but out of interest, under what circumstances do you choose to use global temp tables in preference to 'normal' session-scoped temp tables?
I like...
January 12, 2021 at 6:08 pm
Jeffrey and ratbak, thanks for your pointers.
Sorry for this late response. The question came up because of a wish and not a hard requirement. And something came up with a...
November 24, 2020 at 10:09 am
Thank you DesNorton,
It goes beyond Fuzzy Matches. It is not only 'single' fields like name address etc. which have to be compared, but complete 'free texts', it's a kind of...
October 27, 2020 at 8:32 am
Thanks this link does help quite a lot.
Especially with 'realising' that if there is not update timestamp of any kind this will not be possible. And second even with an...
March 23, 2020 at 3:43 pm
Yes I did read that document, but fast, most of the texts I have seen in other documents.
To my knowledge the capture and the datastorage is done on the instance...
March 17, 2020 at 3:38 pm
Oops typo.
Change Data Capture. (Sorry 🙁 )
Ben
March 17, 2020 at 3:20 pm
In general when using the cases of overlap, people tend to forget specific cases because there multiple overlap situations. In the above I am missing for...
February 23, 2020 at 9:06 pm
Viewing 15 posts - 1 through 15 (of 562 total)