Viewing 9 posts - 31 through 39 (of 39 total)
Sure.
I have separate scripts for creating table and for creating indexes.
SET ANSI_PADDING ON
GO
CREATE NONCLUSTERED INDEX [IX_User_LastName] ON [dbo].[User]
(
[LastName] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB =...
January 13, 2021 at 2:27 pm
@Grant
Do you know how I can identify "Parallel query worker thread was involved in a deadlock"? I saw such a message in the SQL Server Profiler but didn't see any...
January 12, 2021 at 2:29 pm
@Mr. Brian Gale, @Grant Fritchey, @jeff Moden
thanks a lot.
1. Can I conclude about the appropriateness of the index based on scans, seeks and lookups in this table?
2. Do...
January 12, 2021 at 1:23 pm
First of all, I saw that we have Amazon RDS for SQL Server.
Regarding script for index maintenance (https://ola.hallengren.com/) it looks like the same as what I want to...
December 31, 2020 at 2:24 pm
We don't have any maintenance on DB.
It is a virtual machine. I saw that a lot of indexes take a lot of space:
Everything works very slow. The...
December 30, 2020 at 5:11 pm
I have a Standard Edition.
I have poor performance of my SQL Server and saw that a lot of tables had fragmentation more than 90 %.
December 30, 2020 at 4:16 pm
Unfortunately, I didn't see any blocks. Can it be some locks? Because there is a lot of information and I can't understand what is better to concentrate on. I saw...
December 17, 2020 at 12:14 pm
I saw that my queries and SP with the same execution plan have different time execution.
I would like to investigate maybe something can block it...
December 16, 2020 at 1:03 pm
Viewing 9 posts - 31 through 39 (of 39 total)