Viewing 10 posts - 1 through 10 (of 10 total)
Grant,
Got it. Good advice about testing from all.
And it looks like I can us ALTER to create a non-clustered index after the table was created.
October 5, 2021 at 1:58 pm
Grant,
I think that is what I am doing. The primary path AFTER sign in is by UserId - the identify column. However, at sign in it looks for the User...
October 5, 2021 at 1:26 pm
Scott, fyi...I do have a clustered index defined for the column that is the primary key - an IDENTITY column.
[UserId] [int] IDENTITY(1,1) NOT NULL,
CONSTRAINT [PK_User] PRIMARY KEY CLUSTERED
(
[UserId] ASC
)WITH (PAD_INDEX...
October 4, 2021 at 9:14 pm
I agree I can try it...but I was looking for best practice when doing lookups on a table that already has a primary index and hence a clustered index.
If I...
October 4, 2021 at 7:15 pm
We ran a Windows update and did a reboot and it fixed the problem. Thanks to all though for your input.
October 21, 2016 at 8:42 am
We ran a Windows update and did a reboot and it fixed the problem. Thanks to all though for your input.
October 21, 2016 at 8:33 am
Looks like their is an update missing. We will apply that and see if that resolves it. Will let you know. Thanks for all the suggestions.
October 19, 2016 at 9:11 am
Stephanie,
1.) I added the code to loop threw the SqlErrors Collection.
But all I get is: Index #: 0 Error: System.Data.SqlClient.SqlError: A severe error occurred on...
October 18, 2016 at 1:23 pm
Phil,
Yes, I tried increasing it to 2 minutes. But it still fails after the 3rd poll.
Yes, I redesigned the logic so that it uses a "table valued parameter" passed to...
October 18, 2016 at 1:06 pm
Viewing 10 posts - 1 through 10 (of 10 total)