Viewing 15 posts - 16 through 30 (of 275 total)
BIN2 does distinguish between uppercase and lowercase, it just sorts them differently from CS collations.
March 18, 2024 at 1:29 pm
Just in case someone comes here with a similar problem, the article below has an explanation of a possible scenario and the solution.
TRY_CAST Arithmetic Overflow Error - Purple Frog Systems
March 13, 2024 at 11:28 am
The decision on whether or not to pre-approve when I've suggested changes depends on a few things for me.
February 28, 2024 at 10:34 am
I like this idea in theory, but it could cause a bit of drag in practice due to people having to re-skill. At my current employer, I started as a...
February 13, 2024 at 3:30 pm
I tend to update SSMS fairly soon after the new version is announced. Same for the Red Gate add-ins.
For Visual Studio, I tend to wait quite a while because I...
February 2, 2024 at 3:19 pm
If you drop the brackets around (2002 AS year), it would work. Alternatively, you could SELECT from the Books table first and then the SELECT against New would inherit the...
January 5, 2024 at 10:52 am
Removed duplicate post.
November 1, 2023 at 12:28 pm
The syntax I've used in the past for this type of thing is below. Because TRUNCATE needs higher permissions than DELETE, we had to create a special user for procedures...
November 1, 2023 at 12:28 pm
There's nothing to stop you from having the normalised model and building a dimensional model on top of that. Then you have the best of both worlds when it comes...
October 4, 2023 at 8:02 am
I also think "We can't guess" is correct, but for a different reason. Rows could have been inserted by other users in the time between the insert statement and the...
August 2, 2023 at 8:16 am
You are declaring @TrackingNO as a variable when there is already a parameter by that name in the procedure declaration.
July 12, 2023 at 10:58 am
The only thing the original article tells me is that some PhDs in Computability Theory are worth jack sh1t.
July 7, 2023 at 8:47 am
The amount of computation could be reduced by restricting the list of divisors to just the prime numbers already found that are <= SQRT(candidate). The problem is that the IO...
June 19, 2023 at 1:24 pm
I've recently been using Snowflake and the SQL there is very similar, but not quite the same. The main problem I have is not with the flavour of SQL, but...
June 19, 2023 at 7:12 am
You only need to test up to the square root of a number to test for primality, which is quite a saving:
declare @n ...
June 14, 2023 at 2:00 pm
Viewing 15 posts - 16 through 30 (of 275 total)