Viewing 15 posts - 211 through 225 (of 359 total)
and one non clustered index
CREATE NONCLUSTERED INDEX [IX_SmsJob_PriorityStatus] ON [dbo].[SmsJob]
(
[Status] ASC,
[Pri] ASC
)
INCLUDE ( [Size],
[MessagesCompleted]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF,...
January 4, 2012 at 2:27 pm
Sure:
CREATE TABLE [dbo].[SmsJob](
[JobID] [uniqueidentifier] NOT NULL,
[Name] [nvarchar](50) NOT NULL,
[OwnerAppName] [nvarchar](50) NOT NULL,
[OwnerAppVersion] [nvarchar](50) NOT NULL,
[Pri] [int] NOT NULL,
[Status] [int] NOT NULL,
[Size] [int] NOT NULL,
[MessagesSent] [int] NOT NULL,
[MessagesCompleted] [int] NOT NULL,
[PackagedAt]...
January 4, 2012 at 2:18 pm
The complete select is listed below (captured from the trace)
SELECT
[Project2].[JobID] AS [JobID],
[Project2].[Name] AS [Name],
[Project2].[OwnerAppName] AS [OwnerAppName],
[Project2].[OwnerAppVersion] AS [OwnerAppVersion],
[Project2].[Pri] AS [Pri],
[Project2].[Status] AS [Status],
[Project2].[Size] AS...
January 4, 2012 at 1:49 pm
ok. The problem is I cant modify the EF generated scripts since they are generated dynamically. I meant if these scripts are hardcoded with the isolation level as serializable and...
January 4, 2012 at 12:47 pm
The other point that I would like to bring in is if i query on the database the DBCC USerOptions I get the isolation level as read commited snapshot but...
January 4, 2012 at 12:27 pm
apologize for the delay:
deadlock-list
deadlock victim=process3ed3948
process-list
process id=process3ed3948 taskpriority=0 logused=0 waitresource=KEY: 6:72057594055229440 (c85b14958736) waittime=4753 ownerId=267795423 transactionname=user_transaction lasttranstarted=2012-01-04T14:02:25.960 XDES=0x4fcb4b950 lockMode=S schedulerid=6 kpid=156 status=suspended spid=159 sbid=2 ecid=0 priority=0 trancount=1 lastbatchstarted=2012-01-04T14:02:25.963 lastbatchcompleted=2012-01-04T14:02:25.960 clientapp=.Net SqlClient Data...
January 4, 2012 at 12:12 pm
Pasting the deadlock information again to remove the emoticons:
Deadlock encountered .... Printing deadlock information
Wait-for graph
Log Viewer could not read information for this log entry. Cause: Data is Null. This method...
January 4, 2012 at 10:28 am
Hi Gail,
First off I wish you a happy new year!!!
deadlock information:
Deadlock encountered .... Printing deadlock information
Wait-for graph
Log Viewer could not read information for this log entry. Cause: Data is Null....
January 4, 2012 at 10:27 am
ok...this is a daily running job and I also have the auto update stats enabled...is it a good practice to have it enabled while i have this job running daily??
January 2, 2012 at 10:41 am
Hi Ron,
Thanks for the script. That really helps a lot. The sum(rowmodctr) column is returning records more than 45000 for some tables. But is there a way to know which...
January 2, 2012 at 7:57 am
Hi okbangas,
I did not get an option of selecting the option of fullscan or sample for the update stats as it is part of a maintenance plan and since...
January 2, 2012 at 7:40 am
Hi Ron,
I used the maintenance plan wizard to create this update statistics and I have selected only the required user databases. I am not rebuilding or reorganizing any indexes along...
January 2, 2012 at 7:29 am
Thanks Alburaj. Do you have any urls for using the for loop with a collection of input parameters, like in my case i will be using the same parameter with...
December 31, 2011 at 6:39 am
Hi
First of thanks for the reply.
Yeah I tried the method which you already proposed. It didnt work. All I got was the error that I pasted earlier. Hence I...
December 28, 2011 at 4:09 pm
I am attaching the document with the flow of screenshots and the error I am facing when entering multiple variable values. Hope this will clear you what I am exactly...
December 28, 2011 at 3:07 pm
Viewing 15 posts - 211 through 225 (of 359 total)