Viewing 15 posts - 91 through 105 (of 1,390 total)
Volumes are better, especially across time. Getting a consistent set of emails across time is good.
Your posts here (forwarded) did get a meeting set and some movement on upgrading...
May 20, 2024 at 6:44 pm
It's tl;dr with the data. The real questions are: 1) what is your data access pattern, and 2) how are you handling identity and access management?
May 18, 2024 at 1:46 pm
Maybe you're looking for rows WHERE the SkidStatus and the LEAD SkidStatus are unequal within a common row key partition. In this case left(SKIDNUMBER, 10) effectively truncates the _NOTAPPLICABLE suffixes
May 15, 2024 at 7:24 pm
The issue here is although there is an apparent pattern there are no constraints on uniqueness other than the surrogate key ID. The query you're suggesting to write creates a...
May 15, 2024 at 12:52 pm
Also a few other potential issues. If there are any gaps in the depth measurements this method won't fill them in. Also if there are equal thicknesses this method will...
May 8, 2024 at 2:20 pm
To get the thickness calculation correct it needs to account for the boundary conditions. Instead of expanding across the entire sequence and then joining (with inequalities) to the resultant intervals...
May 8, 2024 at 1:00 pm
Thanks Phil. Interesting maybe. The real answer is don't use cursors 🙂
May 7, 2024 at 12:57 pm
One of these, and only one, can be selected by a user as the default row
Why not store the user's default in the users table?
April 30, 2024 at 6:45 pm
split the recipe into two parts in the CTE. Part 1 is all the ingredients, weights for everything except the starter UNION ALL (For each ingredient in the Starter,...
April 30, 2024 at 2:24 pm
A data model to store the recursive relationships and to resolve them with a common table expression could include tables: ingredients, recipes, recipe_inputs, recipe_input_ingredients, recipe_input_recipes. With recipe_input_recipes you could store...
April 29, 2024 at 10:02 pm
Out of curiosity, our 2017 box shows a CPU cap of 25% with 4 CPUs which leads me to believe that it's not able to use all 4 CPUs...
April 25, 2024 at 8:01 pm
Excellent query Jeff. Thank you, thank you! Multiplying by 'combo' within the TOP clause is very nice
April 9, 2024 at 1:24 am
Well maybe the allocation is unavoidable. I was hoping for pixie dust or a magic trick 🙂
April 8, 2024 at 4:35 pm
It's difficult to know much based on the explanation. The SQL code provided isn't valid SQL Server syntax (afaik) and appears to be embedded strings for which the parameters are...
March 29, 2024 at 4:28 pm
Introducing Copilot in Azure SQL Database (Private Preview)
Of course, of course ready or not here it comes. As others have noted AI is quite useful for ginning up boilerplate...
March 29, 2024 at 4:08 pm
Viewing 15 posts - 91 through 105 (of 1,390 total)