Viewing 15 posts - 931 through 945 (of 59,078 total)
Thank you Jeff,
I have been emailing them everyday since last week. Did not get any response, therefore started a thread here.
Any other email or person I can reach out...
November 19, 2023 at 10:04 pm
Although there is a solution provided to the OP that works, I have to ask what the original reason is for trying to build a string based GUID base on...
November 19, 2023 at 9:53 pm
If the clustered index has an ever increasing key and the inserts are following that key, you won't get page splits. If, however, the inserts are followed by "ExpAnsive" Updates,...
November 19, 2023 at 9:40 pm
To be honest, you need to challenge their design... this table is a HISTORY table! Why are they updating a HISTORY table? It should be an INSERT ONLY table that...
November 19, 2023 at 9:31 pm
You need to send an email to webmaster@sqlservercentral.com to get this fixed.
November 19, 2023 at 9:18 pm
You need to send an email to webmaster@sqlservercentral.com to get this fixed more expeditiously because they don't typically monitor this particular forum and I'm pretty sure they don't have actual...
November 19, 2023 at 9:16 pm
Thank you Jeff. 44.9% or 31%? Either way there's no implicit type conversion 🙂
Ken McKelvey's solution in the "Pivot with grouping intervals" topic is interesting. It cross join's a...
November 19, 2023 at 9:00 pm
You could test if the modulo .1 of HRS equals zero
;WITH cte_data AS (
SELECT CAST(50.10 AS numeric(5, 2)) AS HRS
...
November 18, 2023 at 9:32 pm
Nearly duplicate post with an incorrect improvement calculation removed.
November 18, 2023 at 9:31 pm
Very interesting to think of how differently this concept can be thought about 6 years later than it was originally published. Since then the fact that people use data...
November 16, 2023 at 12:17 am
Try installing the table valued function here: https://www.sqlservercentral.com/scripts/a-daterange-table-valued-function
Then to select 15 minute intervals as in your example:
SELECT Value
FROM dbo.DateRange('1900-01-01 00:00', '1900-01-01...
November 16, 2023 at 12:12 am
With all the automatic query tuning stuff they did in 2022, who knows how the optimizer estimates things now?
It'll be interesting if anyone shows up that actually knows.
November 14, 2023 at 3:41 am
It is joined on the Account numbers, which appears in the table multiple times. Problem is the Unique Primary Key is then mapped to these Account numbers multiple times.
So...
November 14, 2023 at 2:52 am
We "talked" on LinkedIn. I provided a link to "BULK INSERT" and introduced "BatchSize" and "Tablock" to you. You also found "Example f.", which is about how to do things...
November 13, 2023 at 4:13 pm
I have to admit, I'm totally amazed about the number of people that participate on the QoD and on Polls on linked in.
I'm also amazed at the number of wrong...
November 13, 2023 at 3:48 pm
Viewing 15 posts - 931 through 945 (of 59,078 total)