Viewing 15 posts - 91 through 105 (of 205 total)
GilaMonster (1/31/2013)
Rowmodctr = row modification counter, number of rows changed since that statistic was last updated. Set to 0 when the index is rebuilt or...
January 31, 2013 at 9:39 am
GilaMonster (1/31/2013)
The row count in sysindexes is not related to statistics updates.
This quote from the MSDN page I referenced seems to indicate some relation.
"Counts the total number of inserted, deleted,...
January 31, 2013 at 9:21 am
Lowell (1/31/2013)
January 31, 2013 at 9:12 am
This is the fastest and most reliable way I have found.
SELECT SUM (row_count)
FROM sys.dm_db_partition_stats
WHERE object_id = OBJECT_ID('dbo.MovimentosFuncionarios')
AND (index_id=0 or index_id=1);
Enjoy!
January 31, 2013 at 8:26 am
Good editorial Steve!
I vaguely remember a similar debate, many years ago, regarding 16 or 32 bit. I guess the more things change the more they stay the same. :laugh:
There may...
January 28, 2013 at 7:21 am
prathibha_aviator (1/22/2013)
+')'+ 'from'+ @dbname + '.dbo.Organization'+ 'where OrganizationID =' + @orgid;
Above is the...
January 22, 2013 at 11:03 am
Hugo Kornelis (1/22/2013)
January 22, 2013 at 10:38 am
venkat9.sql (1/22/2013)
I checked the messages tab and didnt get the 1 row affected message.
I...
January 22, 2013 at 9:34 am
venkat9.sql (1/22/2013)
I am a starter in sql server..Can some one let me know why i dont get the 1 row(s) affected message as stated but simply
Command(s) completed successfully message..
Hello,...
January 22, 2013 at 8:07 am
L' Eomot Inversé (1/18/2013)
January 19, 2013 at 10:10 am
bitbucket-25253 (1/18/2013)
...I guess the best we can do is agree to disagree and leave it at that...
I don't even agree with this statement because I gave a clear and...
January 18, 2013 at 3:06 pm
bitbucket-25253 (1/18/2013)
...
Been there done that ... the message tab is NOT, let me repeat, the message tab in NOT part of the estimated execution plan
I think the message tab is...
January 18, 2013 at 12:54 pm
L' Eomot Inversé (1/18/2013)
...So either I am missing something, or there's been a change in behaviour between 2008+SP3 and 2008R2+SP3.
Try this:
1) Paste code into SSMS query analyzer
2) Click...
January 18, 2013 at 11:10 am
Mighty (1/18/2013)
... Not sure why it would matter that I am a member since 2005 ...
Because I would expect that someone who has been visiting this site longer than me...
January 18, 2013 at 8:23 am
SanDroid (1/18/2013)
... If more that 80% don't get your question right, you should reconsider what you are asking and how you re asking it. 😉
That sounds logical. But of course...
January 18, 2013 at 8:11 am
Viewing 15 posts - 91 through 105 (of 205 total)