Viewing 15 posts - 2,296 through 2,310 (of 59,066 total)
Post withdrawn. Found something odd.
December 7, 2022 at 1:41 am
So do you have another column that would enforce the order of the data you posted or doesn't the order in the resulting rows matter?
December 6, 2022 at 11:20 pm
Awesome info, Grant. Thanks.
December 6, 2022 at 11:11 pm
Post withdrawn. Found something odd.
December 6, 2022 at 6:35 pm
From the original results posted for sys.db_db_index_physical_stats, I think it's pretty clear that ghost rows are an issue. The fast inserts "feature" may also be an issue.
You first need to...
December 6, 2022 at 2:47 pm
Neither a Pivot nor a nasty fast CROSSTAB can be done without an aggregate. The good new for you is, MAX() is an aggregate. Do the Pivot using MAX(). You'll...
December 6, 2022 at 2:32 pm
If you want to post a query plan use something like:
https://www.brentozar.com/pastetheplan/
Would you download a unknown file from the internet?
The trouble with that is that can go away and...
December 6, 2022 at 2:29 pm
It sounds like there are multiple years (maybe 6 or so?) stored in the table. Column Store or not , I'd split it up into multiple tables, at least by...
December 6, 2022 at 2:18 pm
If you search for interview questions for DBAs, you'll find a wealth of questions. I also want you to be aware that, while the questions can be pretty good, some...
December 5, 2022 at 10:35 pm
Please look into the database ROLES for MSDB. There a 3 that are totally different than they are in any other database. They'll be obvious to you. Then, look them...
December 5, 2022 at 10:12 pm
For this example I would probably use ISNULL(airport_city, '') not in
That would make sure that you don't ever have to worry about the query using an index to seek....
December 5, 2022 at 10:03 pm
Lucky but logical guess on my part.
December 5, 2022 at 12:54 am
Lordy... my apologies. Really bad day or two, apparently. I totally missed the fact that this was for SSRS 2016. I don't even know how to spell SSRS.
December 3, 2022 at 2:52 am
Good question but...
The actual correct answer should be... "None of the above because there's no such thing as sys.backupset. The correct schema for the table is dbo"... unless...
December 2, 2022 at 6:13 pm
I can confirm this issue. I was actually going to post about it but Homebrew01 beat me to it.
That and it now takes about a thousand years for the system...
December 2, 2022 at 5:58 pm
Viewing 15 posts - 2,296 through 2,310 (of 59,066 total)