<?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>SQL Entry Count &#8211; Sibeesh Passion</title>
	<atom:link href="https://www.sibeeshpassion.com/tag/sql-entry-count/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Sun, 31 May 2015 14:23:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>SQL Entry Count &#8211; Sibeesh Passion</title>
	<link>https://www.sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Get the Count of Entries in Each Table in a DB in SQL</title>
		<link>https://www.sibeeshpassion.com/get-the-count-of-entries-in-each-table-in-a-db-in-sql/</link>
					<comments>https://www.sibeeshpassion.com/get-the-count-of-entries-in-each-table-in-a-db-in-sql/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sun, 31 May 2015 14:22:32 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Entry Count]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=3621</guid>

					<description><![CDATA[Hi All, This code will helps you to get the count of entries in each table in a DB in SQL: [sql] SELECT sysobjects.Name , sysindexes.Rows FROM sysobjects INNER JOIN sysindexes ON sysobjects.id = sysindexes.id WHERE type = &#8216;U&#8217; AND sysindexes.IndId &#60; 2 ORDER BY sysobjects.Name [/sql] OR [/sql] SELECT sum(sysindexes.Rows),GETDATE() FROM sysobjects INNER JOIN sysindexes ON sysobjects.id = sysindexes.id WHERE type = &#8216;U&#8217; AND sysindexes.IndId < 2 [/sql] Kindest Regards]]></description>
										<content:encoded><![CDATA[<p>Hi All,</p>
<p>This code will helps you to get the count of entries in each table in a DB in SQL:<br />
[sql]<br />
SELECT<br />
    sysobjects.Name<br />
    , sysindexes.Rows<br />
FROM<br />
    sysobjects<br />
    INNER JOIN sysindexes<br />
    ON sysobjects.id = sysindexes.id<br />
WHERE<br />
    type = &#8216;U&#8217;<br />
    AND sysindexes.IndId &lt; 2<br />
ORDER BY<br />
    sysobjects.Name<br />
  [/sql]<br />
OR<br />
[/sql]<br />
SELECT<br />
   sum(sysindexes.Rows),GETDATE()<br />
FROM<br />
    sysobjects<br />
    INNER JOIN sysindexes<br />
    ON sysobjects.id = sysindexes.id<br />
WHERE<br />
    type = &#8216;U&#8217;<br />
    AND sysindexes.IndId < 2  
[/sql]

Kindest Regards
</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/get-the-count-of-entries-in-each-table-in-a-db-in-sql/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
