Viewing 15 posts - 181 through 195 (of 7,597 total)
Actually, partitioning came sometimes accidentally (or coincidentally) help performance. For example, the data was originally clustered by id, but to partition you cluster it first by a date. IF you...
May 10, 2024 at 2:57 pm
Remove the second column from the first IN subquery:
SELECT minutes FROM dbo.timeaccountmovement WHERE ownertype = 1 AND timeaccountid = 8 AND ownerid IN
(
SELECT ownerid FROM dbo.timeaccountmovement WHERE timeaccountid = 73...
May 9, 2024 at 7:41 pm
Yes, I've used CDC. I ended up creating my own proc to view change data (basically pre-prepping the params for the MS proc) because the MS proc itself is so...
April 25, 2024 at 5:17 pm
I see "emp." being referenced, but I don't see "emp" anywhere in the supplied query.
You would have to check each of the joined tables to see if there is an...
April 24, 2024 at 8:01 pm
You don't really need to partition, assuming you re-cluster, although you could. What will happen is that you will partition on date, so you will have to add date to...
April 22, 2024 at 1:26 pm
If avol is actually numeric. If it's varchar, could be an issue.
April 21, 2024 at 5:49 pm
Cluster both tables by ( StartDateTime, ID ) rather than just ID. Then, since you'll be moving data in cluster key order, you can just use a standard copy-then-delete approach.
Btw,...
April 21, 2024 at 5:47 pm
Another possibility is, assuming that:
(1) column avol was NULL before this UPDATE
(2) your server still has the default FILLFACTOR 0f 0 (=100)
Then this UPDATE could a lot of leaf page...
April 20, 2024 at 5:20 am
You *might* also want some background process to remove carts after a certain period of time, or maybe not. For example, I can go into Amazon, put something in my...
April 16, 2024 at 6:17 pm
Creating and dropping tables is significant overhead. You'd be much better of, as others have noted, with a permanent table. You could key rows in that table by user id...
April 16, 2024 at 2:42 pm
Just use a method that works under any/all DATEFIRST settings, much simpler and safer:
/* calc immediately previous Sunday; day 0 = Monday, so day 6 = Sunday...
April 15, 2024 at 1:22 pm
With 20 name columns, how do you verify that all the names are unique across all rows? And, if they're not unique, how do you know which id to assign...
April 11, 2024 at 2:33 pm
The CHECKPOINT is one of the steps required before SQL can mark the existing log space as reusable. Since you're in SIMPLE recovery model, the only thing that could prevent...
April 8, 2024 at 5:26 pm
Also, you should issue an explicit CHECKPOINT on the db when you want logs to clear. Part of the requirement for freeing log space, SIMPLE recovery, is that a CHECKPOINT...
April 8, 2024 at 1:47 pm
Scott, How do I add the tablename to this query? So it displays the tablename with the result of the max().
SET @sql_template = N'SELECT...
April 5, 2024 at 6:00 pm
Viewing 15 posts - 181 through 195 (of 7,597 total)