Viewing 15 posts - 1 through 15 (of 23 total)
Can I answer a question 11 years later?
Its a very picky thing but I have found this will make it work. It can be used to do a...
November 1, 2017 at 1:32 pm
Operations that can be minimally logged are minimally logged in both simple and bulk-logged recovery so I think your good to go. I just realized you have this posted...
October 10, 2013 at 6:03 am
I am fairly confident your not getting over 2000 IOPS from 2 disk.
I have a similar situation as you for my UAT server that is a Dell 510 with...
October 9, 2013 at 7:44 pm
I would suggest you find out your percentage of reads to writes before deciding this. The limited hardware you have listed here isn't going to support a very busy database...
October 9, 2013 at 12:20 pm
To provide some followup on what is going on with this. I removed the table from the partitioning and test the query with much better results. In fact...
October 1, 2013 at 11:30 am
Your version of the query ran in 30 seconds without any high disk latencies observed.
September 6, 2013 at 6:39 am
Wow I am so impressed. This is of great help for me in knowing what is going on. I really need to read this forum more I have...
September 6, 2013 at 6:19 am
Plan using the hint still slow and very high latencies. So I guess I have achieved my objective to test the new hardware.
September 4, 2013 at 7:34 pm
Yes sir, the Current production server does it in about 1 min. The new one takes from 4 to 7 mins. I did use the hint which I...
September 4, 2013 at 6:39 pm
the query. Understand this was for a test of the server but I got more than I bargained for.
select top 10000 * from claims with (nolock) where...
September 4, 2013 at 4:07 pm
CREATE NONCLUSTERED INDEX [IX_Claims_RecordDate_INC_ClaimID_UserID] ON [dbo].[Claims]
(
[RecordDate] ASC
)
INCLUDE ( [ClaimID],
[UserID]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE =...
September 4, 2013 at 4:06 pm
Table.
CREATE TABLE [dbo].[Claims](
[ClaimID] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL,
[SenderID] [int] NOT NULL,
[UserID] [int] NOT NULL,
[FileID] [int] NOT NULL,
[StrProviderID] [varchar](50) NOT NULL,
[ProviderID] [int] NOT NULL,
[PayToProviderID] [int] NULL,
[PayerID] [int] NOT NULL,
[AccountNumber]...
September 4, 2013 at 4:02 pm
Absolutely understand and he said I can just now. So I will get all that together. There certainly wouldn't be a covering index for the query because we would...
September 4, 2013 at 3:54 pm
Actually the table is over 100GB in size just data not counting indexes. This is a very large database (5TB) and the servers are very powerful with over...
September 4, 2013 at 3:45 pm
Viewing 15 posts - 1 through 15 (of 23 total)