Viewing 15 posts - 1,501 through 1,515 (of 22,202 total)
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 you'll...
November 17, 2020 at 3:46 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 it....
November 17, 2020 at 1:50 pm
This year was my first PASS Summit. I've wanted to go for quite a while but there was no way my employer would spend the money needed to attend...
November 17, 2020 at 1:26 pm
Because all those objects and processes you list are not stored within SQL Server, there's not a query that's going to return them all. A given SSIS package can be...
November 16, 2020 at 1:26 pm
I doubt this will be a completely permanent situation. Humans are simply better at communication face to face. That efficiency will reassert itself over time. In short, we'll be back...
November 16, 2020 at 1:24 pm
The only attachments that survived are just pictures. They're not much use to look at execution plans. Try posting them as .txt files. I think that works.
November 16, 2020 at 1:18 pm
Slight bit of misunderstanding there. Let's say we have a VARCHAR(50). Now let's say that our data stored there is 'dog'. It doesn't use storage out to 50...
November 10, 2020 at 1:51 pm
SQL row/page compression is typically extremely helpful to reduce disk space. Before SQL 2016, I believe you must have Enterprise Edition for it to be available.
Yes, I know...
November 10, 2020 at 1:50 pm
Slight bit of misunderstanding there. Let's say we have a VARCHAR(50). Now let's say that our data stored there is 'dog'. It doesn't use storage out to 50 characters. It...
November 9, 2020 at 3:32 pm
For most of us, most of the time, that's way too much detail. It begs the question, what problem are you really trying to solve.
However, if you want crazy detail...
November 9, 2020 at 1:18 pm
I haven't experience this, but I'd make sure that I'm running the latest version of SQL Server Management Studio.
November 9, 2020 at 1:12 pm
Additionally understanding that the WHERE clauses and JOIN criteria (if any) for data manipulation queries are subject to all the same rules as a SELECT query. Something like a function...
November 9, 2020 at 1:10 pm
Here's a very thorough article on BULK INSERT. In general, it can be faster for large data moves. It may use less locking. It may use fewer log resources....
November 6, 2020 at 11:56 am
Make sure you're capturing the performance metrics on the server so that you're getting processing time there and eliminating the round trip measurement. You want to know which part of...
November 6, 2020 at 11:51 am
Thank you Grant Fritchey!
I don't have Web Service RDS, but I ran below SQL Statement on local SQL Server and got information as the file.
SELECT dl.deadlockgraph
FROM
(
SELECT dl.query('.') AS deadlockgraph
FROM...
November 6, 2020 at 11:18 am
Viewing 15 posts - 1,501 through 1,515 (of 22,202 total)