Viewing 15 posts - 676 through 690 (of 728 total)
Pretty interesting. So thats how trigger always work ? Can't we force trigger to not use the version based operation ?
June 3, 2011 at 9:56 am
we have pinpoint the process which is creating tempdb space issue. While we are purging the tables, the records are going to audit tables. For big tables it is creating...
June 3, 2011 at 8:29 am
If a table contains 5-10 statistics and some performance issue arises because of statistics, then is there a way to nail down to the level where we can get the...
June 3, 2011 at 7:11 am
If you check DBCC SHOW_STATISTICS for any clustered index or nun clustered index of a table, you'll see data sampling for only first column of the index [If an index...
June 3, 2011 at 6:37 am
Thanks Gail, It means if we have READ_COMMITTED_SNAPSHOT set to ON and we use SET TRANSACTION ISOLATION LEVEL READ COMMITTED, then it will disable READ_COMMITTED_SNAPSHOT for that session and not...
June 3, 2011 at 5:05 am
We are using READ_COMMITTED_SNAPSHOT isolation on database level. Can we still force some stored procedure within the same database to not use row versioning ?
June 3, 2011 at 4:12 am
Great knowledge feast on statistics these days. I was checking that statistics on any index maintains informaiton based on the first column of the index only. Now if our query...
June 3, 2011 at 3:17 am
Doing some more R&D on Statistics... Really exciting. DBCC SHOW_STATISTICS is wonderful. Cross verofying it with execuiton plan as well. However can anyone tell where to get colmodctrs value ?
June 2, 2011 at 10:08 am
Ninja, Updating the stats with 20% may faten the process. However In our scenario, it may not resolve the issue entirely. There are two points:
1. The entire dataset on which...
June 2, 2011 at 4:32 am
Ninja, I had already gone through the link. It's pretty useful. I agree with your point in having Update Stats job after the loading of tables, that is, in between...
June 1, 2011 at 12:24 pm
Hello Ninja, We do rebuild for all the indexes in the tables [which I think updates the stats on those indexes as well].
Thereafter our batch starts which populates further...
June 1, 2011 at 11:42 am
We already have a job created before our batch starts to rebuild the indexes. However the main thing is that one of the procedure within the batch populates data in...
June 1, 2011 at 10:54 am
We are facing tempdb space issue again. After observing through perfmon graphs, I found that version cleanup rate is zero while generation rate is over 1000 Kb/s at times. How...
June 1, 2011 at 3:03 am
Thanks a lot again Gail. I got it now. There was a varchar(max) field on the table. 🙂
May 26, 2011 at 5:35 am
While checking the indexes on few of the tables I found that one clustered index shows two entries. One for IN_ROW_DATA and another for LOB_DATA. Though there are only two...
May 26, 2011 at 2:06 am
Viewing 15 posts - 676 through 690 (of 728 total)