Viewing 15 posts - 1,171 through 1,185 (of 49,571 total)
To monitor the real index usage I mostly use the below std query....
July 7, 2017 at 2:32 pm
July 7, 2017 at 10:52 am
On closer look, it's a case of needing to aggregate before the join, not afterwards.
SELECT OPP.ID,
OPP.NAME,
OPP.AMOUNT,
...
July 7, 2017 at 10:50 am
What's often helpful to debug something like this is to take the aggregation off, and look at the full resultset.
SELECT OPP.ID,
OPP.NAME,
OPP.AMOUNT,
OPP.ATRC1,
OPP.ATRC2,
OPP.TRC1,
July 7, 2017 at 10:41 am
Ok Jeff, I'll interrupt my Friday evening... 🙂
There's two main reasons to split up a database into multiple filegroups.
1) Performance
2) Restore times/recoverability.
Splitting for performance...
July 7, 2017 at 10:13 am
July 7, 2017 at 7:17 am
I wonder if it was malware, or if someone intentionally installed it on the server to make some profit on the side from the cryptocurrency mining.
July 7, 2017 at 7:04 am
July 7, 2017 at 7:03 am
July 7, 2017 at 6:30 am
In general, there's nothing wrong with derived tables, in views or elsewhere.
My general rule is to write any query in the simplest, most obvious way, and tweak it for...
July 6, 2017 at 6:55 am
July 6, 2017 at 5:59 am
DesNorton - Wednesday, July 5, 2017 11:13 PM@Grant FritcheyI believe that congratulations are in order, sir.
Or condolences, whiskey and a shoulder to...
July 6, 2017 at 5:55 am
July 6, 2017 at 5:20 am
July 6, 2017 at 3:11 am
Viewing 15 posts - 1,171 through 1,185 (of 49,571 total)