<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MemoSoup &#187; row count</title>
	<atom:link href="http://www.memosoup.com/tag/row-count/feed" rel="self" type="application/rss+xml" />
	<link>http://www.memosoup.com</link>
	<description>Mix of the things I always forget</description>
	<lastBuildDate>Thu, 09 Feb 2012 12:24:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Quick calculation of the row count</title>
		<link>http://www.memosoup.com/20090915/quick-calculation-of-the-row-count.html</link>
		<comments>http://www.memosoup.com/20090915/quick-calculation-of-the-row-count.html#comments</comments>
		<pubDate>Tue, 15 Sep 2009 21:59:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Sybase]]></category>
		<category><![CDATA[row count]]></category>

		<guid isPermaLink="false">http://www.memosoup.com/?p=111</guid>
		<description><![CDATA[<p>Warning! It depends on the statistics and could be not accurate!</p> <p>Sybase</p> select user_name&#40; obj.uid&#41;, obj.name , rowcnt&#40;doampg&#41; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; from sysindexes idx, sysobjects obj &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; where idx.indid &#60; 2 and idx.id = obj.id [...]]]></description>
			<content:encoded><![CDATA[<p><em>Warning! </em>It depends on the statistics and could be not accurate!</p>
<p><strong>Sybase</strong></p>
<div class="codecolorer-container tsql default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:100%;"><div class="tsql codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0000FF;">select</span> <span style="color: #FF00FF;">user_name</span><span style="color: #808080;">&#40;</span> obj.<span style="color: #202020;">uid</span><span style="color: #808080;">&#41;</span>, obj.<span style="color: #202020;">name</span> , rowcnt<span style="color: #808080;">&#40;</span>doampg<span style="color: #808080;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />
<span style="color: #0000FF;">from</span> sysindexes idx, sysobjects obj &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
<span style="color: #0000FF;">where</span> idx.<span style="color: #202020;">indid</span> <span style="color: #808080;">&lt;</span> <span style="color: #000;">2</span> and idx.<span style="color: #202020;">id</span> <span style="color: #808080;">=</span> obj.<span style="color: #202020;">id</span> and obj.<span style="color: #202020;">type</span> <span style="color: #808080;">=</span> <span style="color: #FF0000;">'U'</span><br />
<span style="color: #0000FF;">order</span> <span style="color: #0000FF;">by</span> <span style="color: #000;">1</span>,<span style="color: #000;">2</span><br />
go<br />
<br />
<span style="color: #0000FF;">select</span> <span style="color: #FF00FF;">object_name</span><span style="color: #808080;">&#40;</span> idx.<span style="color: #202020;">id</span> <span style="color: #808080;">&#41;</span>, rowcnt<span style="color: #808080;">&#40;</span>doampg<span style="color: #808080;">&#41;</span><br />
<span style="color: #0000FF;">from</span> sysindexes idx<br />
<span style="color: #0000FF;">where</span> idx.<span style="color: #202020;">indid</span> <span style="color: #808080;">&lt;</span> <span style="color: #000;">2</span> <br />
and <span style="color: #FF00FF;">object_name</span><span style="color: #808080;">&#40;</span> idx.<span style="color: #202020;">id</span> <span style="color: #808080;">&#41;</span> in <span style="color: #808080;">&#40;</span><span style="color: #FF0000;">'object1'</span>,<span style="color: #FF0000;">'object2'</span><span style="color: #808080;">&#41;</span><br />
go</div></div>
<p><strong>Oracle</strong></p>
<div class="codecolorer-container oracle8 default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:100%;"><div class="oracle8 codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #993333; font-weight: bold; text-transform: uppercase;">SELECT</span> OWNER<span style="color: #66cc66;">,</span> TABLE_NAME<span style="color: #66cc66;">,</span> NUM_ROWS <br />
<span style="color: #993333; font-weight: bold; text-transform: uppercase;">FROM</span> dba_tables <br />
<span style="color: #993333; font-weight: bold; text-transform: uppercase;">WHERE</span> TABLE_NAME <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold; text-transform: uppercase;">UPPER</span><span style="color: #66cc66;">&#40;</span> <span style="color: #ff0000;">'&amp;what_tbl.'</span> <span style="color: #66cc66;">&#41;</span>;<br />
<br />
<span style="color: #993333; font-weight: bold; text-transform: uppercase;">SELECT</span> OWNER<span style="color: #66cc66;">,</span> TABLE_NAME<span style="color: #66cc66;">,</span> NUM_ROWS<br />
<span style="color: #993333; font-weight: bold; text-transform: uppercase;">FROM</span> dba_tables<br />
<span style="color: #993333; font-weight: bold; text-transform: uppercase;">ORDER</span> <span style="color: #993333; font-weight: bold; text-transform: uppercase;">BY</span> <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">,</span><span style="color: #cc66cc;">2</span>;</div></div>
<div style="height:33px; padding-top:2px; padding-bottom:2px; clear:both;" class="zare366"><div style="float:left; width:100px; " class="zare366_facebook_like"> 
				<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.memosoup.com%2F20090915%2Fquick-calculation-of-the-row-count.html&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light&amp;height=27" 
					scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:27px;" allowTransparency="true"></iframe>
			</div><div style="float:left; width:90px; padding-left:10px;" class="zare366_google1"> 
				<g:plusone size="medium" href="http://www.memosoup.com/20090915/quick-calculation-of-the-row-count.html" ></g:plusone>
			</div><div style="float:left; width:110px; padding-left:10px;" class="zare366_twitter"> 
				<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
					data-text="Quick calculation of the row count" data-url="http://www.memosoup.com/20090915/quick-calculation-of-the-row-count.html">Tweet</a> 
			</div></div>
		<div style="display:none;"><a href="http://www.news365live.com">news and informations</a>&nbsp;<a href="http://news365online.com">automotive,business,crime,health,life,politics,science,technology,travel</a><a href="http://worldnews365online.com">automotive,business,crime,health,life,politics,science,technology,travel</a></div><div style="clear:both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.memosoup.com/20090915/quick-calculation-of-the-row-count.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

