Viewing 15 posts - 1 through 15 (of 757 total)
Thank you for your insights.
Maybe I am confused.
I thought the difference between Mixed and Uniform Extents was that
Uniform: All pages from the same object
Mixed: Pages from different objects
Your definition is
Uniform:...
January 10, 2024 at 7:54 am
Thanks
Yes, I use DBATools for most of my day to day things as it is.
I was just looking for a complete T-SQL script.
Thanks
August 25, 2021 at 3:53 pm
An alternative would be to use DBATools and use their permission scripting capabilities, which do a lot more than the script you have provided.
Thanks
I have been using DBATools for...
August 18, 2021 at 1:10 pm
I'm trying to get a flow of exactly what happens.
Am I on the right track here.....
April 14, 2021 at 3:58 pm
(6) Yes. Yes, potentially. More likely it has not written either but it still allows the transaction to finish. You get more speed and throughput but at a...
April 14, 2021 at 3:51 pm
Thanks
(3) Data in memory (in a buffer) that is forcibly written to disk is said to be "flushed". This does not mean any type of problem/error has occurred. SQL...
April 14, 2021 at 3:32 pm
Thanks
I had a look at the XML of the problematic report and I cannot see anything obvious. My knowledge of developing reports is very limited though.
I took the ReportServer &...
March 9, 2021 at 2:33 pm
You got it. sp_updatestats uses a sample method instead of full scan. It means it's faster, but it's less accurate. There's always a tradeoff deciding which to use, so...
November 17, 2020 at 3:57 pm
Fragmentation and statistics are two completely different, though somewhat related, things.
Fragmentation is simply about storage on the system. A page gets allocated to an index. Data gets put into...
November 17, 2020 at 2:04 pm
...
sum(CAST(size AS bigint))/128.0 AS File_Size_MB,
sum(CAST(FILEPROPERTY(name, ''SpaceUsed'') AS bigint))/128.0 as Space_Used_MB,
SUM(CAST(size AS bigint))/128.0 - sum(CAST(FILEPROPERTY(name,''SpaceUsed'') AS bigint))/128.0 AS Free_Space_MB
...
Great, thanks
October 1, 2020 at 5:56 pm
Thanks, they're huge files
I tried changing to BIGINT but same error
October 1, 2020 at 1:49 pm
I've narrowed it down to this statement...
exec sp_msforeachdb
'use [?];
select DB_NAME() AS DbName,
CONVERT(varchar(20),DatabasePropertyEx(''?'',''Status'')) ,
...
October 1, 2020 at 1:22 pm
Thanks
I hope I'm not missing something here because I really want to pursue this in our organization.
Are you aware of any edition limitations?
March 13, 2020 at 1:40 pm
Viewing 15 posts - 1 through 15 (of 757 total)