Viewing 15 posts - 1,786 through 1,800 (of 59,067 total)
Yep...
Here's the cleaned up test data with a couple of extra rows for the "xx:00" proof...
-- DROP TABLE IF EXISTS dbo.Sell
GO
CREATE TABLE dbo.SELL...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 3, 2023 at 12:30 am
Hello, so Microsoft has two Feb 2023 SQL updates listed under the same CVE. 5021128 Security update for SQL Server 2016 SP3 Azure Connect Feature Pack+GDR, and 5021129 Security...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 10:43 pm
If the hierarchies are DAGs (Directed Acyclic Graphs) with no loop backs, no "crossed legs", and are true "Adjacency List" (parent/child only) hierarchies, then I recommend that you study the...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 10:41 pm
I just wanna know what he actually wants. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 10:33 pm
#1) In terms of I/O and time, which is faster? running Index Rebuilds or Running Updatestats or is it depens on case to case?
#2) I have a database called...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 10:22 pm
p.s. This is really going to be fun when they need another 10 million unique random values to fold into the first 10 million. 😀
It shouldn't be too...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 9:56 pm
Agreed. That would also decide if the last 5 minute period appeared to be in the next hour or not if hourly calculations from the original average calculations needed to...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 9:20 pm
p.s. This is really going to be fun when they need another 10 million unique random values to fold into the first 10 million. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 9:16 pm
I read it as "the number should be between 10 and 15 digits in length and the first two digits must be 11".
Some clarification from the OP would be...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 9:09 pm
Yep... and he never got an answer to his question on any of those. On one of the earlier ones, he did a work around by using VBA , but...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 9:01 pm
Your timestamp column is a UNIX timestamp based on Seconds. Just use integer division to divide that number by 300 and you'll get the GROUP BY value for...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 8:43 pm
reduce the length to
The numbers should begin with 11. The minimum length of the number should be 10 The maximum length of the number should be 15...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 8:40 pm
Your timestamp column is a UNIX timestamp based on Seconds. Just use integer division to divide that number by 300 and you'll get the GROUP BY value for your Average.
Edit: ...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 7:43 pm
reduce the length to
The numbers should begin with 11. The minimum length of the number should be 10 The maximum length of the number should be 15 Need to...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 7:32 pm
Is it possible to have a function that is stored somewhere other than in Programmability-> Functions -> Scalar-valued Functions of each database like in the master database and...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 2, 2023 at 6:52 pm
Viewing 15 posts - 1,786 through 1,800 (of 59,067 total)