Viewing 15 posts - 1 through 15 (of 29 total)
Yes, of course by a stored proc, sorry for errors )) The simplest architecture I am considering is the python client application is running on the same machine and there...
April 8, 2020 at 8:32 pm
Someone without a surname has to be a good fortuneteller to make predictions using a last name
April 15, 2019 at 11:25 am
This behavior:
SELECT V.String,
CASE WHEN V.String COLLATE Latin1_General_100_BIN LIKE '%[a-z]%' THEN 'Yes' ELSE 'No' END AS ContainsLowerCase
FROM (VALUES('This has lowercase letters'),('THIS...
April 11, 2019 at 10:54 am
Should this be considered as an error in earlier collations before 100?
April 11, 2019 at 10:41 am
As I know, there is no true REGEX in SQL Server. Is the method to solve the question with "like" and wildcard?
April 11, 2019 at 10:15 am
Perhaps, I did not put the question clearly. The initial question is how to check whether the string contains lower case letters.
April 11, 2019 at 9:43 am
I don't want to store pass in plain text. I would like to check it strength in DB and then hash it as I wrote in the first post.
April 6, 2019 at 10:03 am
Ok, let's put aside password storing. I just would like to check whether lower or upper case letters exists in a string and distinguish them.
April 5, 2019 at 9:28 pm
November 30, 2018 at 10:36 am
You may see the warning in the execution plan
November 30, 2018 at 9:03 am
June 16, 2017 at 3:00 am
I've just updated both statistics. The result is the same.
June 15, 2017 at 8:50 am
Viewing 15 posts - 1 through 15 (of 29 total)