<?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>Welcome to ShanthaKumar&#039;s Blog &#187; Database</title>
	<atom:link href="http://ktskumar.com/blog/tag/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://ktskumar.com/blog</link>
	<description>SharePoint, Silverlight and more.........</description>
	<lastBuildDate>Thu, 10 Jun 2010 01:42:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SharePoint 2010 Search Databases</title>
		<link>http://ktskumar.com/blog/2009/10/29/sharepoint-2010-search-databases/</link>
		<comments>http://ktskumar.com/blog/2009/10/29/sharepoint-2010-search-databases/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 09:57:02 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint-2010]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Service]]></category>

		<guid isPermaLink="false">http://ktskumar.com/blog/2009/10/29/sharepoint-2010-search-databases/</guid>
		<description><![CDATA[We have two new databases for Search Service in SharePoint Server 2010 when compared to MOSS2007. One for Administration purpose, another for Crawling and other one for storing crawled contents, which is already available in MOSS 2007 .
In MOSS 2007, SSP database contains the search administration settings and Crawler information. But in SharePoint Server 2010, [...]]]></description>
			<content:encoded><![CDATA[<p>We have two new databases for Search Service in SharePoint Server 2010 when compared to MOSS2007. One for Administration purpose, another for Crawling and other one for storing crawled contents, which is already available in MOSS 2007 .</p>
<p>In MOSS 2007, SSP database contains the search administration settings and Crawler information. But in SharePoint Server 2010, we have the separate databases for storing configuration data, crawler information and for storing metadata or properties. Totally we have three databases for SharePoint Server 2010 Search Service.</p>
<p>They are, </p>
<ol>
<li><strong>Search Service Admin Database (New)</strong> </li>
<li><strong>Search Service Crawl Database (New)</strong> </li>
<li><strong>Search Metadata Database</strong> </li>
</ol>
<p><strong>1. Search Service Admin Database (New)</strong></p>
<ul>
<li>Only one Service Admin Database is allowed for Search Service Application. </li>
<li>Stores the Search Configuration data and ACL&#8217;s for the content crawled by crawlers. </li>
<li>During upgrade, Search Administration setting stored in SSP Database in MOSS is moved to this database. </li>
<li>Has one or many Crawl databases and Property databases </li>
</ul>
<p><strong>2. Search Service Crawl Database (New)</strong></p>
<ul>
<li>Stores the Crawl history and manages the crawl operations. </li>
<li>Each Crawl database can have one or more crawlers </li>
<li>During upgrade, Crawl history information stored in SSP database on MOSS is moved to this Crawl Database. </li>
</ul>
<p><strong>3. Search Metadata Database</strong></p>
<ul>
<li>Stores the properties or metadata for crawled data that are required for querying. </li>
<li>During upgrade, the contents of Search database is moved to new Search Metadata database.      </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ktskumar.com/blog/2009/10/29/sharepoint-2010-search-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Database SQL Query Tips1</title>
		<link>http://ktskumar.com/blog/2009/03/18/sharepoint-database-sql-query-tips1/</link>
		<comments>http://ktskumar.com/blog/2009/03/18/sharepoint-database-sql-query-tips1/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 11:56:48 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Lists]]></category>
		<category><![CDATA[Sql Query]]></category>

		<guid isPermaLink="false">http://ktskumar.wordpress.com/?p=123</guid>
		<description><![CDATA[Today onwards on daily basis, I decided to post the Sql Query to access the SharePoint Databases. To know more about the databases in Sharepoint , check my SharePoint Databases Post.
To retrieve all lists from the database, use the following query,
select AllLists.tp_Title as &#8216;List Title&#8217;,webs.Title as &#8216;Web Title&#8217;
from dbo.AllLists as AllLists
inner join dbo.Webs as webs
on [...]]]></description>
			<content:encoded><![CDATA[<p>Today onwards on daily basis, I decided to post the Sql Query to access the SharePoint Databases. To know more about the databases in Sharepoint , check my <a href="http://ktskumar.wordpress.com/2009/03/10/sharepoint-databases/" target="_self">SharePoint Databases </a>Post.<br />
To retrieve all lists from the database, use the following query,</p>
<p><span style="color:#0000ff;">select</span> AllLists.tp_Title <span style="color:#0000ff;">as</span> &#8216;List Title&#8217;,webs.Title <span style="color:#0000ff;">as</span> &#8216;Web Title&#8217;<br />
<span style="color:#0000ff;">from</span> dbo.AllLists <span style="color:#0000ff;">as</span> AllLists<br />
<span style="color:#999999;">inner join</span> dbo.Webs <span style="color:#0000ff;">as</span> webs<br />
<span style="color:#0000ff;">on</span> webs.Id=AllLists.tp_WebId<br />
<span style="color:#0000ff;">order by</span> webs.Title</p>
<p>dbo.AllLists Table contains all the lists available in WebApplication Level *</p>
<p>dbo.Webs Table Contains all the webs or sites available in WebApplication Level  *</p>
<div id="attachment_124" class="wp-caption aligncenter" style="width: 399px"><img class="size-full wp-image-124" title="sqlquery1" src="http://ktskumar.files.wordpress.com/2009/03/sqlquery1.jpg" alt="Sql Query Result" width="389" height="214" /><p class="wp-caption-text">Sql Query Result - Returns All Lists with Site</p></div>
<p>*If the Database configured for SiteCollection, then the table only contains the datas for SiteCollection Level.</p>
]]></content:encoded>
			<wfw:commentRss>http://ktskumar.com/blog/2009/03/18/sharepoint-database-sql-query-tips1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Databases</title>
		<link>http://ktskumar.com/blog/2009/03/10/sharepoint-databases/</link>
		<comments>http://ktskumar.com/blog/2009/03/10/sharepoint-databases/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 07:29:39 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Categories]]></category>

		<guid isPermaLink="false">http://ktskumar.wordpress.com/?p=101</guid>
		<description><![CDATA[I did some research on SharePoint Databases and how are they providing datas to SharePoint sites?. Here i am come up with some details of Databases used in SharePoint.



Database Name
Description
Availablity




SharePoint_AdminContent_
GUID
This is the Central Admin Content database, is used to store all WSS 3.0 / MOSS content.
WSS3.0, MOSS 


SharePoint_Config
The configuration database contains data about all the databases [...]]]></description>
			<content:encoded><![CDATA[<p>I did some research on SharePoint Databases and how are they providing datas to SharePoint sites?. Here i am come up with some details of Databases used in SharePoint.</p>
<table border="1" cellspacing="0" cellpadding="0" width="98%">
<thead>
<tr>
<td align="Center"><strong>Database Name</strong></td>
<td align="Center"><strong>Description</strong></td>
<td align="Center"><strong>Availablity</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td><strong>SharePoint_AdminContent_</strong><br />
<strong>GUID</strong></td>
<td>This is the Central Admin Content database, is used to store all WSS 3.0 / MOSS content.</td>
<td>WSS3.0, MOSS </td>
</tr>
<tr>
<td><strong>SharePoint_Config</strong></td>
<td>The configuration database contains data about all the databases used, all of the IIS Web sites, Web applications, solutions, Web Part packages, site templates, and Web application and farm settings specific to SharePoint technologies, such as default quota, blocked file types, and configuration.</td>
<td>WSS3.0, MOSS </td>
</tr>
<tr>
<td><strong>WSS_Search_ComputerName</strong></td>
<td>This database is used for the search services. It contains the information that is required for searching content.By using this database, Windows SharePoint Search services enables users to search all Web site content on the server.</td>
<td>WSS3.0, MOSS </td>
</tr>
<tr>
<td><strong>WSS_Content_GUID</strong></td>
<td>This database contains data specific to a Web application and its site collections. It contains the content data, such as the document uploaded to a list or a library. By default, a single content database is created for each Web application. All new site collections added to a Web application use the same database</td>
<td>WSS3.0, MOSS </td>
</tr>
<tr>
<td><strong>SharedServicesN_DB</strong></td>
<td>Each Shared Service Provider (SSP) requires a database for service-specific data.</td>
<td>MOSS</td>
</tr>
<tr>
<td><strong>SharedServicesN_Search_DB</strong></td>
<td>In addition to the SSP database, a separate database is required for frequently changing search-related data.</td>
<td>MOSS</td>
</tr>
<tr>
<td><strong>SharedServicesContent</strong></td>
<td>This database is dedicated for the shared services content.</td>
<td>MOSS</td>
</tr>
<tr>
<td><strong>SSO</strong></td>
<td>This database stores the settings and account information for single sign-on.</td>
<td>MOSS</td>
</tr>
</tbody>
</table>
<p>For more informations, visit <a class="wp-caption-dd" title="Windows SharePoint Services 3.0" href="http://technet.microsoft.com/hi-in/library/cc974471(en-us).aspx" target="_blank">Windows SharePoint Services 3.0</a> ,  <a class="wp-caption-dd" title="Microsoft Office SharePoint Server" href="http://technet.microsoft.com/en-us/library/cc678868.aspx" target="_blank">Office SharePoint Server</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ktskumar.com/blog/2009/03/10/sharepoint-databases/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
