Viewing 15 posts - 1 through 15 (of 8,760 total)
Without comparing the different execution plans, further comparison is futile!
😎
My guess is that in this case, the cost of parallel execution went through the roof, but then again, that's only...
June 24, 2025 at 5:10 pm
The first thought would be adding a NOT NULL constraint on any column that should not contain any NULLs, and removing any tests from the code.
😎
Not certain how MySQL implements...
May 16, 2025 at 12:36 pm
Thank you for this clear write-up!
😎
There is one important thing to add, which is the difference in the difference in the implementation / execution of those two operators.
UNION ALL implies...
April 7, 2025 at 11:56 am
The infrastructure folks created an arbitrary set of standards for free space.
So you are forced to write SQL shorthand... 😉
😎
This always bothers me when one cannot spend $...
April 3, 2025 at 5:11 pm
....Being a pro-active guy, he went in and cleared out a couple profiles...
Why didn't he simply expand the disk?
😎
April 3, 2025 at 11:51 am
As much as one appreciates your enthusiasm replying to a 10-year-old topic, April Fool's Day might not be the right time.
😎
On your point on recovering a corrupt Access Database, such...
April 1, 2025 at 2:51 pm
Don't you absolutely love it when someone has a problem but cannot elaborate on what the problem really is?
😎
See more: String or Binary Truncation Error Strange Behavior (SQL 2019)
March 28, 2025 at 4:32 pm
LOL... love seeing people ask for that. Unfortunately, this is proprietary, so we cannot. I was hoping someone with more in-depth SQL internals might have some insight?
He he he,...
March 28, 2025 at 4:28 pm
Could you please provide more information?
😎
Versions, Recovery Modes etc.
March 28, 2025 at 2:50 pm
Can you provide the relevant table structure and an insert statement that fails?
😎
Keep in mind that the string manipulation functions, such as LEFT,RIGHT and SUBSTRING do imply trimming of non-printable...
March 28, 2025 at 2:46 pm
Reviving 10 year old zombie threads should probably be a no-no.
If it provides a good answer, especially a more effective good answer, I don't mind. It'll help others...
March 7, 2025 at 12:58 am
SQL Server is not the right tool for this task!
😎
The ambiguities of natural language rule out any direct string or pattern-matching approaches unless strict upstream contextual restrictions are applied, i.e.,...
February 6, 2025 at 12:58 pm
What editions and versions are the servers?
😎
Few things could be a problem, the place to start is to compare server settings, schema and then the code. Codepage could be a...
January 16, 2025 at 4:58 pm
Here is a quick example that should work on all the servers 😉
😎
USE TEEST;
GO
SET NOCOUNT ON;
GO
-- Create a encryption key for this exercise
IF NOT EXISTS (SELECT *...
January 16, 2025 at 1:41 pm
Quick thought, try using VARBINARY(MAX) for the encrypted value.
😎
The encrypted hash is always going to be much larger than the actual input, truncated values may return NULL.
January 16, 2025 at 1:04 pm
Viewing 15 posts - 1 through 15 (of 8,760 total)