Viewing 15 posts - 2,341 through 2,355 (of 59,086 total)
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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....
--Jeff Moden
Change is inevitable... Change for the better is not.
December 5, 2022 at 10:03 pm
Lucky but logical guess on my part.
--Jeff Moden
Change is inevitable... Change for the better is not.
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.
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 2, 2022 at 5:58 pm
You're right. I misread the question.
Since there's no readily consumable data that we can copy and paste from (see the article at the first link in my signature line below...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 2, 2022 at 5:54 pm
Hello Jeff,
Sorry for that and got your point, I am using - Microsoft SQL Server 2017. Please fine the sample data in SQL format.
SELECT '-1010-----' AS...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 2, 2022 at 5:25 pm
Hello Team,
I have a input fields like below with fixed value separator (6) and the expected output like below, Please advice the same .
Thanks,
Don't post graphics. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 1, 2022 at 10:25 pm
The data you posed has nothing to compare.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 1, 2022 at 10:04 pm
Viewing 15 posts - 2,341 through 2,355 (of 59,086 total)