<?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>OmanDev &#187; sql</title>
	<atom:link href="http://www.omandev.net/tag/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.omandev.net</link>
	<description>Technical, computer related articles and projects.</description>
	<lastBuildDate>Sat, 17 Jul 2010 18:54:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SharePoint List data with SQL Server Reporting Services</title>
		<link>http://www.omandev.net/2009/05/sharepoint-list-data-with-sql-server-reporting-services/</link>
		<comments>http://www.omandev.net/2009/05/sharepoint-list-data-with-sql-server-reporting-services/#comments</comments>
		<pubDate>Fri, 15 May 2009 07:07:00 +0000</pubDate>
		<dc:creator>Ali AL Lawati</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[reports]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://66.147.242.194/~omandevn/wrd1/wordpress/?p=59</guid>
		<description><![CDATA[SharePoint is becoming more populler every day, companies from around the world are starting using it as main intranet site of their headoffice.

since sharepoint provide (as promissed by microsoft) the highest compatibility with Microsoft Office , exchange server, active directory and combine them all into a intranet portal.

many companies started using this software either publishing [...]


Related posts:<ol><li><a href='http://www.omandev.net/2008/11/sharepoint-splistitem/' rel='bookmark' title='Permanent Link: sharepoint SPListItem'>sharepoint SPListItem</a></li>
<li><a href='http://www.omandev.net/2008/08/increasing-performance-and-adding-flexibility-using-arrays-instead-of-recordsets-in-asp-with-databases/' rel='bookmark' title='Permanent Link: Increasing performance and adding flexibility using arrays instead of recordsets in ASP with databases'>Increasing performance and adding flexibility using arrays instead of recordsets in ASP with databases</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.sharepointmn.com/User%20Group%20Presentations/SharePoint%20Wheel.jpg"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 155px; height: 152px;" src="http://www.sharepointmn.com/User%20Group%20Presentations/SharePoint%20Wheel.jpg" alt="" border="0" /></a><br />SharePoint is becoming more populler every day, companies from around the world are starting using it as main intranet site of their headoffice.
<div></div>
<div>since sharepoint provide (as promissed by microsoft) the highest compatibility with Microsoft Office , exchange server, active directory and combine them all into a intranet portal.</div>
<div></div>
<div>many companies started using this software either publishing site ( where anouncements &amp; news could be easily shared with employees) , or team sites ( to manage work of small teams and assigning tasks to them) , or document center, or other many things.<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://powerofthought.files.wordpress.com/2008/12/sql_server_2005.jpg"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 128px; height: 164px;" src="http://powerofthought.files.wordpress.com/2008/12/sql_server_2005.jpg" alt="" border="0" /></a></div>
<div></div>
<div>Having huge amount of requirments of bespoke (custom) softwares that fullfill working enviroments needs developer having access to shareponit started using the lists &amp; content types capabilities to create small &amp; medium custom applications based on sharepoint lists </div>
<div>(well if that is good or bad is another issue but i think these two links clearify them <a href="http://stackoverflow.com/questions/250992/sharepoint-should-i-use-lists-or-a-database">link1 </a>, <a href="http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance#184816">link2 </a>).</div>
<div></div>
<div>Any how having these applications raise the need for reporting tool to genirated reports depending on the data entered in sharepoint lists/conent types, <span class="Apple-style-span" style="font-weight: bold;">and for my suprise </span> Microsoft&#8217;s <span class="Apple-style-span" style="font-weight: bold;">best reporting tool SSRS (SQL Server Reporting Services) </span><span class="Apple-style-span" style="font-weight: bold;"> don&#8217;t have a nice way to provide this functionality. </span>This thing made me search for ways of doing this and here are my findings:</div>
<div></div>
<div>eventhough SSRS do not connect in a straigh forward way to SQL server we can have workarounds :</div>
<p>
<div>1- C<span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  >onnecting to SharePoint web service out put XML, the problem here is it sometimes work and sometimes don&#8217;t, and also i couldn&#8217;t do inner join between different lists may be it is there but it will be trouble to do it.</span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  ><br /></span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  >2- <span style="font-weight: bold;"></span></span>C<span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  ><span style="font-weight: bold;"></span>reating a link table in MS Access 2007 that links to sharepoint lists (<span class="Apple-style-span" style="font-weight: bold;">amazingly this is very easy </span>), and then connect to the MS ACCESS link tables from SSRS 2005 : this will work but i am kind of scared of having ACCESS in the middle i always want to avoid using access (do you suggest this way please write comments)</span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  ><br /></span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  >3- </span>C<span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  >onnecting to the views provided in the sharepoints backend database (there is a view for all lists and another view for all list items) : here column names will be troublsome to create the query the clounm names are like (float1,float2,&#8230;,date1,date2,date3,&#8230;.) , also i am not sure if it is good thing to make SSRS talk directly to sharepoints backend database views</span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  ><br /></span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  >well these are the work arounds i could find for using SSRS as a reporting tool for SharePoint , but if you are willing to invest a bit to make this thing possible there are some plug-ins that provide this functionality such as  <span class="Apple-style-span" style="border-collapse: separate; line-height: 17px;font-family:Helvetica;font-size:13;"  > <a href="http://www.enesyssoftware.com/" rel="nofollow" style="color: rgb(0, 51, 102);">Enesys RS Data Extension </a><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  > but again not sure how good they are in performance and other stuff.</span></span></span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  ><br /></span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  >hope this post will help you if you are dealing with SharePoint , feel free to discuss any thing and leave comments.</span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  ><br /><span style="font-size:100%;"><span style="font-weight: bold;">update 16/5/2009<br /></span>4- the fourth way is to map the list directly to a database (Well i didn&#8217;t wrote that because two things first it is redundancy, second it is hard to keep updating both the database and sharepoint lists when-ever any change happens to any record, but Mr. Allan seems to have a great solution for that in the comments which is &#8220;SLAM<span style="font-weight: bold;"><span style="font-weight: bold;"><span style="font-weight: bold;"> </span>&#8221; </span></span></span></span> (http://slam.codeplex.com)</p>
<p>SLAM allows you to easily maintain SharePoint data by hooking up against lists (or content types!) and having the data automatically synchronized with SQL server in real time. Best of all, it converts SharePoint look-ups to associations (with any multiplicity, one to one, one to many, many to many) that you can easily built queries against.</p>
<p>Thanks a for letting us know about this tool<br /><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  ><span style="font-size:100%;"><span style="font-weight: bold;"><span style="font-weight: bold;">update 21/5/2009 :<br /></span></span><span><span>Well this time i tried the 2nd way on production (it works very well while it is on my machine in visual studio) but if we need to add it to the reporting services server it didn&#8217;t work on my enviroment not sure if it works on other enviroments<br /></span></span></span></span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  ><br /></span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; line-height: 18px;font-family:Arial;font-size:14;"  ><br /></span></div>
<div class="blogger-post-footer">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
omandev.net English feed</div>


<p>Related posts:<ol><li><a href='http://www.omandev.net/2008/11/sharepoint-splistitem/' rel='bookmark' title='Permanent Link: sharepoint SPListItem'>sharepoint SPListItem</a></li>
<li><a href='http://www.omandev.net/2008/08/increasing-performance-and-adding-flexibility-using-arrays-instead-of-recordsets-in-asp-with-databases/' rel='bookmark' title='Permanent Link: Increasing performance and adding flexibility using arrays instead of recordsets in ASP with databases'>Increasing performance and adding flexibility using arrays instead of recordsets in ASP with databases</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.omandev.net/2009/05/sharepoint-list-data-with-sql-server-reporting-services/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>تلميحات SQL 1 البحث السريع بدون استخدام like</title>
		<link>http://www.omandev.net/2009/01/%d8%aa%d9%84%d9%85%d9%8a%d8%ad%d8%a7%d8%aa-sql-1-%d8%a7%d9%84%d8%a8%d8%ad%d8%ab-%d8%a7%d9%84%d8%b3%d8%b1%d9%8a%d8%b9-%d8%a8%d8%af%d9%88%d9%86-%d8%a7%d8%b3%d8%aa%d8%ae%d8%af%d8%a7%d9%85-like/</link>
		<comments>http://www.omandev.net/2009/01/%d8%aa%d9%84%d9%85%d9%8a%d8%ad%d8%a7%d8%aa-sql-1-%d8%a7%d9%84%d8%a8%d8%ad%d8%ab-%d8%a7%d9%84%d8%b3%d8%b1%d9%8a%d8%b9-%d8%a8%d8%af%d9%88%d9%86-%d8%a7%d8%b3%d8%aa%d8%ae%d8%af%d8%a7%d9%85-like/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 06:47:00 +0000</pubDate>
		<dc:creator>Ali AL Lawati</dc:creator>
				<category><![CDATA[برمجة و تطوير]]></category>
		<category><![CDATA[عربي]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[تلميحات]]></category>
		<category><![CDATA[قاعدة بيانات]]></category>

		<guid isPermaLink="false">http://66.147.242.194/~omandevn/wrd1/wordpress/?p=86</guid>
		<description><![CDATA[السلام عليكم و رحمة الله و بركاته ، صارت فترة طويلة لم يكتب شيء في هذا الجزء من المدونة و هذا غالبا بسبب كسلي  
فكرت اضع بعض تلميحات ال اس كيو ال SQL  كون لا بد لأي مبرمج في هذه الفترة ان يستخدمها لكي يتصل بقاعدة بياناته
هنالك الكثير من الحركات الجميلة في هذه [...]


Related posts:<ol><li><a href='http://www.omandev.net/2007/07/sqltip1-search-database-faster-without-like/' rel='bookmark' title='Permanent Link: SQLTip1: search database faster without like'>SQLTip1: search database faster without like</a></li>
<li><a href='http://www.omandev.net/2008/08/%d8%aa%d9%84%d9%85%d9%8a%d8%ad%d8%a7%d8%aa-%d9%81%d9%8a-%d8%a7%d9%84%d9%84%d9%8a%d9%86%d9%83%d8%b3/' rel='bookmark' title='Permanent Link: تلميحات في اللينكس'>تلميحات في اللينكس</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div dir="rtl" style="text-align: right;">السلام عليكم و رحمة الله و بركاته ، صارت فترة طويلة لم يكتب شيء في هذا الجزء من المدونة و هذا غالبا بسبب كسلي <img src='http://www.omandev.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>فكرت اضع بعض تلميحات ال اس كيو ال SQL  كون لا بد لأي مبرمج في هذه الفترة ان يستخدمها لكي يتصل بقاعدة بياناته</p>
<p>هنالك الكثير من الحركات الجميلة في هذه اللغة التي نغفل عنها لقلة وقت الإطلاع و هذه أحد تلك الحركات</p>
<p> البحث السريع دون استخدام  like</p>
<p> في حالة اذا كان لدينا في احد جداول قاعدة البيانات عمود يحتوي على نص طويل مثلا نص قصة أو مثلا تدوينة أو رسالة او موضوع منتدى  طبعا هذا النص سيتكون من العديد من الكلمات &#8211; الآلاف منها &#8212; .</p>
<p>في حين الحاجة للبحث سنبحث عن كلمة معينة في جميع نصوص مواضيع المنتديات مثلا . فأسهل طريقة لعمل ذلك هي
<div style="text-align: left;"><span style="font-weight: bold;">&#8220;Select title from articles where body like &#8216;%database%&#8217;&#8221;</span><br /><span style="font-weight: bold;"></span></div>
<p><span style="font-weight: bold;"><br />ولكن ماذا لو كان لدينا الكثير من المواضيع (بالتالي رفوف كثيرة بالملاين في جدول الـ articles  ) حينها سيصبح البحث بطيئا جدا<br />فاذا كان الهدف من البحث لديك هو الوصول للنتيجة بأسرع طريقة فهذه إحدى الطرق التي اجدها جيدة في الـ MYSQL <br />أولا عليك جعل جدول الـ articles  من نوع الـ </span>MyIsam<br />ثانيا : علينا اضافة خاصية ارضفة للعمود body  و ذلك بالأمر التالي
<div style="text-align: left;">ALTER TABLE  articles ADD FULLTEXT(body);</div>
<p>الآن حين البحث اذا استعملنا الاستعلام التالي  الذي يبحث عن كلمة database  في عمود الـ body من جدول الـ</p>
<p><span style="font-weight: bold;">&#8220;select title , MATCH (body) AGAINST (&#8216;database&#8217;)  as rank from articles  ORDER BY rank desc;&#8221;</p>
<p>سنحصل على نتيجة مثل :</p>
<p></span>
<div style="text-align: left;">|title      | rank   |<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />|sqltip   | 1.3      |<br />| eclipse| 0            |<br />|.NET    | 0        |</p>
<div style="text-align: right;">هنا الرانك عبارة عن مدى تطابق النتيجة اثناء البحث وكلما كان اكبر كلما دل على تطابق اكثر طبعا الصفر تعني عدم الحصول على الكلمة في النص و يمككنا عدم اظهار النتائج التي تحتوي على صفر بالاستعلام التالي</p>
<p>&#8220;select title , MATCH (body) AGAINST (&#8216;database&#8217;) as rank from articles where MATCH (body) AGAINST (&#8216;database&#8217;) > 0  ORDER BY rank desc;&#8221;</p>
<p>اتمنى ان تكون هذه التلميحة مفيدة لكم</p>
<p>لرؤية التدوينة في نسختها الانجليزية تفضل <a href="http://www.omandev.net/2007/07/sqltip1-search-database-faster-without.html">هنا </a></div>
<p><span style="font-weight: bold;"></span></div>
<p></div>
<div class="blogger-post-footer">Omandev.net Arabic feed</div>


<p>Related posts:<ol><li><a href='http://www.omandev.net/2007/07/sqltip1-search-database-faster-without-like/' rel='bookmark' title='Permanent Link: SQLTip1: search database faster without like'>SQLTip1: search database faster without like</a></li>
<li><a href='http://www.omandev.net/2008/08/%d8%aa%d9%84%d9%85%d9%8a%d8%ad%d8%a7%d8%aa-%d9%81%d9%8a-%d8%a7%d9%84%d9%84%d9%8a%d9%86%d9%83%d8%b3/' rel='bookmark' title='Permanent Link: تلميحات في اللينكس'>تلميحات في اللينكس</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.omandev.net/2009/01/%d8%aa%d9%84%d9%85%d9%8a%d8%ad%d8%a7%d8%aa-sql-1-%d8%a7%d9%84%d8%a8%d8%ad%d8%ab-%d8%a7%d9%84%d8%b3%d8%b1%d9%8a%d8%b9-%d8%a8%d8%af%d9%88%d9%86-%d8%a7%d8%b3%d8%aa%d8%ae%d8%af%d8%a7%d9%85-like/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLTip1: search database faster without like</title>
		<link>http://www.omandev.net/2007/07/sqltip1-search-database-faster-without-like/</link>
		<comments>http://www.omandev.net/2007/07/sqltip1-search-database-faster-without-like/#comments</comments>
		<pubDate>Mon, 30 Jul 2007 04:45:00 +0000</pubDate>
		<dc:creator>Ali AL Lawati</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sqltips]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://66.147.242.194/~omandevn/wrd1/wordpress/?p=10</guid>
		<description><![CDATA[SQL tip 2, SQL tip 3well all of us need to deal with databases and sql query and most of the time we need to provide searching abilities to users.
well the easiest way is using like i.e  to search articles containing the word &#8220;database&#8221; this query is goo enough &#8220;Select title from articles where [...]


Related posts:<ol><li><a href='http://www.omandev.net/2009/01/%d8%aa%d9%84%d9%85%d9%8a%d8%ad%d8%a7%d8%aa-sql-1-%d8%a7%d9%84%d8%a8%d8%ad%d8%ab-%d8%a7%d9%84%d8%b3%d8%b1%d9%8a%d8%b9-%d8%a8%d8%af%d9%88%d9%86-%d8%a7%d8%b3%d8%aa%d8%ae%d8%af%d8%a7%d9%85-like/' rel='bookmark' title='Permanent Link: تلميحات SQL 1 البحث السريع بدون استخدام like'>تلميحات SQL 1 البحث السريع بدون استخدام like</a></li>
<li><a href='http://www.omandev.net/2009/01/sql-tip-3-getting-db-schema-in-mysql/' rel='bookmark' title='Permanent Link: sql Tip 3: getting DB schema in MYSQL'>sql Tip 3: getting DB schema in MYSQL</a></li>
<li><a href='http://www.omandev.net/2007/07/how-to-create-a-search-tool-in-a-few-steps-ms-access/' rel='bookmark' title='Permanent Link: How to create a Search tool in a few steps (MS Access)'>How to create a Search tool in a few steps (MS Access)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.omandev.net/2007/08/sqltip2-how-to-display-rows-as-columns.html">SQL tip 2</a>, <a href="http://www.omandev.net/2009/01/sql-tip-3-getting-db-schema-in-mysql.html">SQL tip 3</a><br />well all of us need to deal with databases and sql query and most of the time we need to provide searching abilities to users.</p>
<p>well the easiest way is using like i.e  to search articles containing the word &#8220;database&#8221; this query is goo enough <span style="font-weight: bold;">&#8220;Select title from articles where body like &#8216;%database%&#8217;&#8221;.</span></p>
<p>but what if we have the articles table so huge and contains lots of rows and each row has a huge article !!!!, well simply the database work will be slowed down and will effect the work of other functions of the applications.</p>
<p>if this is the situation indexing the body column of the table and searching the index would be much faster (( well yeah i know this is a basic knowledge for database experts but most of the developers dont use it that why i am mentioning it))</p>
<p>so lets see how this is done in MYSQL:</p>
<p>to create the index you have to do this</p>
<p>ALTER TABLE  articles ADD FULLTEXT(body);</p>
<p>then while searching the query will be something like</p>
<p><span style="font-weight: bold;">&#8220;select title , MATCH (body) AGAINST (&#8216;database&#8217;)  as rank from articles  ORDER BY rank desc;&#8221;</span></p>
<p>this will return some thing like<br />|title      | rank   |<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />|sqltip   | 1.3      |<br />| eclipse| 0            |<br />|.NET    | 0        |<br />____________</p>
<p>where rank is 0 where it didnt found the searching keyword<br />and it is bigger where-ever it finds the searching keyword more (more relivent)</p>
<p>so to get only the good results the query will be</p>
<p><span style="font-weight: bold;">&#8220;select title from articles where  MATCH (body) AGAINST (&#8216;database&#8217;)  > 0 ;&#8221;</span>
<div class="blogger-post-footer">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
omandev.net English feed</div>


<p>Related posts:<ol><li><a href='http://www.omandev.net/2009/01/%d8%aa%d9%84%d9%85%d9%8a%d8%ad%d8%a7%d8%aa-sql-1-%d8%a7%d9%84%d8%a8%d8%ad%d8%ab-%d8%a7%d9%84%d8%b3%d8%b1%d9%8a%d8%b9-%d8%a8%d8%af%d9%88%d9%86-%d8%a7%d8%b3%d8%aa%d8%ae%d8%af%d8%a7%d9%85-like/' rel='bookmark' title='Permanent Link: تلميحات SQL 1 البحث السريع بدون استخدام like'>تلميحات SQL 1 البحث السريع بدون استخدام like</a></li>
<li><a href='http://www.omandev.net/2009/01/sql-tip-3-getting-db-schema-in-mysql/' rel='bookmark' title='Permanent Link: sql Tip 3: getting DB schema in MYSQL'>sql Tip 3: getting DB schema in MYSQL</a></li>
<li><a href='http://www.omandev.net/2007/07/how-to-create-a-search-tool-in-a-few-steps-ms-access/' rel='bookmark' title='Permanent Link: How to create a Search tool in a few steps (MS Access)'>How to create a Search tool in a few steps (MS Access)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.omandev.net/2007/07/sqltip1-search-database-faster-without-like/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
