Viewing 15 posts - 4,321 through 4,335 (of 59,067 total)
I wasn't build one file group for each index... it was for one table and it's related indexes but only if those indexes require index maintenance.
You say you have hundreds...
November 9, 2021 at 10:07 pm
Jeff Moden wrote:As a bit of a sidebar, wouldn't adding more files add to the problem you spoke of previously?
I'm not sure which specific "problem" you're referring to.
The...
November 9, 2021 at 6:08 pm
I have a working query within MySQL based on (Managing Hierarchical Data in MySQL - http://mikehillyer.com/articles/managing-hierarchical-data-in-mysql/). The problem I have is that I need to implement the same functionality on another...
November 6, 2021 at 9:28 pm
I whole-heartedly agree Michael. Collecting data and knowing what to do with it are two very different things.
I'll also state that while extended events can be useful, it's a total...
November 6, 2021 at 8:52 pm
I want to know stages of testing.
I know this post is half a decade old but, since it was necro'd and bubbled to the surface, I have to ask......
November 6, 2021 at 8:34 pm
For performance reasons, I wouldn't use a "straight" SELECT from a linked server. Instead, I normally use OPENQUERY as the source for an INSERT INTO.
INSERT INTO...
November 6, 2021 at 8:20 pm
This should work, I think:
UPDATE t
SET t.CarStatus = '2'
FROM #Test t
INNER JOIN (
SELECT CarID, MIN(Id) AS Id
FROM #Test
...
November 6, 2021 at 8:10 pm
We are setting up Idera SQL DM system to monitor our SQL Server's. So we have availability group setup for the repositories at database level. Looking for option to...
November 6, 2021 at 7:40 pm
These are MySQL forums https://forums.mysql.com/
As a bit of a side bar, I just took a look at that. It's quite extensive but, lordy... try scanning all of the...
November 6, 2021 at 7:31 pm
Since the table is an unordered set, the concept of a previous record doesn’t apply in SQL.
That's not actually true but, even if it was, the logical selection...
November 6, 2021 at 7:26 pm
I was careful to preserve as much of the original code as possible and to document this as well as the original code was. 😉
UPDATE Codes
...
November 6, 2021 at 7:08 pm
Jeff Moden wrote:As a bit of a sidebar, wouldn't adding more files add to the problem you spoke of previously?
I'm not sure which specific "problem" you're referring to.
The one below,...
November 6, 2021 at 3:12 pm
But still cant figure out why its very slow at times.
It's probably because the triggers that feed it are written incorrectly as some form of dynamic SQL that materialize...
November 5, 2021 at 7:10 pm
Here's one simple way. It'll really help things if you have an index on the TimeInterval column.
DECLARE @InputParameter [decimal](15, 6) = 691195
;
SELECT TOP 1 *
...
November 5, 2021 at 6:48 pm
You should play the lottery tonight. 😀 You just proved that you're one of the luckiest people on the whole planet. 😀
With that (and I know you get it but...
November 5, 2021 at 6:32 pm
Viewing 15 posts - 4,321 through 4,335 (of 59,067 total)