Viewing 15 posts - 46 through 60 (of 7,597 total)
It depends. You'd need to look at the available indexes and whether SQL uses them for the query. So, look at the query plan and see what it "tells" you. ...
December 9, 2024 at 3:21 pm
To reduce space usage in that db, you can specify SORT_IN_TEMPDB = ON in the index create.
Also, to save time, pre-allocate additional log space, if needed. If you must get...
December 9, 2024 at 3:18 pm
The CostKeyDeletes tables should be clustered on CostKey, not on ID. It's best for it to match the original table's key. You can keep the ID, if you want, just...
December 6, 2024 at 7:19 pm
The SELECT INTOs will hold locks. Those might be causing issues.
One good way to avoid that is to an initial SELECT TOP (0) ... INTO to create the table, then...
December 2, 2024 at 6:41 pm
Wow, that's exceptional. I've never been at a place that had, say an "order" table vs. an "orders" table.
November 29, 2024 at 5:42 am
I wasn't sure StatusDate included a time. If it's just a date, it's not safe to ORDER BY it.
November 27, 2024 at 3:04 pm
I believe the more common, and better, naming for tables is plural. I can't think of a major relational dbms that uses singular system table names.
For example: sys.objects (SQL Server),...
November 27, 2024 at 2:52 pm
Yep, definitely remove ID. The key to a "relationship" table should be the relationship keys, NOT an ID column.
November 26, 2024 at 10:09 pm
;WITH ctePrevPrStatus AS (
SELECT *, LAG(PrStatus) OVER(PARTITION BY PrID ORDER BY StatusID) AS PrPrevStatus
FROM dbo.tblPresentationStatus
)
SELECT *
FROM ctePrevPrStatus
WHERE
...
November 26, 2024 at 7:26 pm
I'd suggest the clustered index on ( trade_date, symbol ) and not the other way around. You want the clus key to be unique, so, if it's not, you'll want...
November 25, 2024 at 2:39 pm
The TaskNames would have to be contiguous for that method to work. I wanted to also handle some other TaskName appearing between "Distribute" and "Print", just in case.
November 22, 2024 at 12:50 am
SELECT JobID
FROM dbo.tblPrintTask
GROUP BY JobID
HAVING MAX(CASE WHEN TaskName = 'Distribute' THEN TaskID END) <
MAX(CASE WHEN TaskName = 'Print' THEN TaskID END)
November 21, 2024 at 8:25 pm
(page bump needed?)
November 20, 2024 at 7:31 pm
You could easily have an order of magnitude more rows in SG table than in T, and if you have a phone app waiting for the response, I would still...
November 20, 2024 at 7:31 pm
Viewing 15 posts - 46 through 60 (of 7,597 total)