<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Open SQL vs Native SQL</title>
	<atom:link href="http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/</link>
	<description>The SAP Consultant's Journey</description>
	<pubDate>Sun, 01 Aug 2010 09:18:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Anil</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-76889</link>
		<dc:creator>Anil</dc:creator>
		<pubDate>Fri, 16 Apr 2010 11:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-76889</guid>
		<description>very interesting topic</description>
		<content:encoded><![CDATA[<p>very interesting topic</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: divs</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-72663</link>
		<dc:creator>divs</dc:creator>
		<pubDate>Mon, 30 Nov 2009 07:24:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-72663</guid>
		<description>thanks......the vas easy to understand since it is in simple words....it helped to know something</description>
		<content:encoded><![CDATA[<p>thanks&#8230;&#8230;the vas easy to understand since it is in simple words&#8230;.it helped to know something</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL Tutorials</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-62367</link>
		<dc:creator>SQL Tutorials</dc:creator>
		<pubDate>Fri, 01 May 2009 02:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-62367</guid>
		<description>Does anyone know if there is another language or set of commands beside SQL for talking with databases? 

I'm working on a project and am doing some research thanks</description>
		<content:encoded><![CDATA[<p>Does anyone know if there is another language or set of commands beside SQL for talking with databases? </p>
<p>I&#8217;m working on a project and am doing some research thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guru</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-53074</link>
		<dc:creator>guru</dc:creator>
		<pubDate>Mon, 08 Dec 2008 05:11:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-53074</guid>
		<description>awesome......keep updating the website..so that useful 4 every one.</description>
		<content:encoded><![CDATA[<p>awesome&#8230;&#8230;keep updating the website..so that useful 4 every one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kush</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-51647</link>
		<dc:creator>kush</dc:creator>
		<pubDate>Fri, 28 Nov 2008 05:39:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-51647</guid>
		<description>nice info !!!!</description>
		<content:encoded><![CDATA[<p>nice info !!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Premal Mistry</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-47861</link>
		<dc:creator>Premal Mistry</dc:creator>
		<pubDate>Thu, 25 Sep 2008 11:11:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-47861</guid>
		<description>A very neat and clean explanation. Good Work.</description>
		<content:encoded><![CDATA[<p>A very neat and clean explanation. Good Work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos Baeza</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-45159</link>
		<dc:creator>Carlos Baeza</dc:creator>
		<pubDate>Tue, 05 Aug 2008 16:22:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-45159</guid>
		<description>Hi Guys,
I need to implement a  very complex requeriment in ABAP:
The Problem:
- I receive a String variable, this string contains a complex sql statement like as (for example)
query = 'SELECT *
  FROM sflight AS f
  UP TO 10 ROWS
  INTO CORRESPONDING FIELDS OF TABLE wa_sflight
  WHERE seatsocc &#60; f~seatsmax
        AND EXISTS ( SELECT * FROM spfli
                       WHERE carrid = f~carrid
                         AND connid = f~connid
                         AND cityfrom = 'FRANKFURT'
                         AND cityto = 'NEW YORK' )
        AND fldate BETWEEN '19990101' AND '20080701'.
'.
- I mus this string parsed and carry out to Open SQL statements and then to execute.
My problem is why can I parse any query and perform this dynamic sql build ??
Thanks Guys !</description>
		<content:encoded><![CDATA[<p>Hi Guys,<br />
I need to implement a  very complex requeriment in ABAP:<br />
The Problem:<br />
- I receive a String variable, this string contains a complex sql statement like as (for example)<br />
query = &#8216;SELECT *<br />
  FROM sflight AS f<br />
  UP TO 10 ROWS<br />
  INTO CORRESPONDING FIELDS OF TABLE wa_sflight<br />
  WHERE seatsocc &lt; f~seatsmax<br />
        AND EXISTS ( SELECT * FROM spfli<br />
                       WHERE carrid = f~carrid<br />
                         AND connid = f~connid<br />
                         AND cityfrom = &#8216;FRANKFURT&#8217;<br />
                         AND cityto = &#8216;NEW YORK&#8217; )<br />
        AND fldate BETWEEN &#8216;19990101&#8242; AND &#8216;20080701&#8242;.<br />
&#8216;.<br />
- I mus this string parsed and carry out to Open SQL statements and then to execute.<br />
My problem is why can I parse any query and perform this dynamic sql build ??<br />
Thanks Guys !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mandar Kulkarni</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-36642</link>
		<dc:creator>Mandar Kulkarni</dc:creator>
		<pubDate>Thu, 27 Mar 2008 09:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-36642</guid>
		<description>Correct information with much simplicity making others to understand the basic concept. Excellent!!!
Keep providing such texts.</description>
		<content:encoded><![CDATA[<p>Correct information with much simplicity making others to understand the basic concept. Excellent!!!<br />
Keep providing such texts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: girish</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-25951</link>
		<dc:creator>girish</dc:creator>
		<pubDate>Mon, 12 Nov 2007 05:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-25951</guid>
		<description>good explainations thanks</description>
		<content:encoded><![CDATA[<p>good explainations thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-24251</link>
		<dc:creator>Rajesh</dc:creator>
		<pubDate>Sat, 20 Oct 2007 09:12:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-24251</guid>
		<description>magnificent information.........keep doing !!
kudos ........!!! gr8 man</description>
		<content:encoded><![CDATA[<p>magnificent information&#8230;&#8230;&#8230;keep doing !!<br />
kudos &#8230;&#8230;..!!! gr8 man</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tarun rajani</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-19767</link>
		<dc:creator>tarun rajani</dc:creator>
		<pubDate>Tue, 17 Jul 2007 05:52:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-19767</guid>
		<description>cool information... keep updating web with such useful info....thanx again</description>
		<content:encoded><![CDATA[<p>cool information&#8230; keep updating web with such useful info&#8230;.thanx again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Punam</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-18822</link>
		<dc:creator>Punam</dc:creator>
		<pubDate>Fri, 06 Jul 2007 10:27:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-18822</guid>
		<description>Wonderful and to the point information has been given.......................too good.</description>
		<content:encoded><![CDATA[<p>Wonderful and to the point information has been given&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..too good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sfclusmqab</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-18411</link>
		<dc:creator>sfclusmqab</dc:creator>
		<pubDate>Mon, 02 Jul 2007 09:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-18411</guid>
		<description>Hello! Good Site! Thanks you! </description>
		<content:encoded><![CDATA[<p>Hello! Good Site! Thanks you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LOKESH</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-17384</link>
		<dc:creator>LOKESH</dc:creator>
		<pubDate>Fri, 22 Jun 2007 17:14:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-17384</guid>
		<description>worthfull information ..............Thanq</description>
		<content:encoded><![CDATA[<p>worthfull information &#8230;&#8230;&#8230;&#8230;..Thanq</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prabhash Nambiar</title>
		<link>http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-13979</link>
		<dc:creator>Prabhash Nambiar</dc:creator>
		<pubDate>Mon, 14 May 2007 05:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.itcserver.com/blog/2006/06/26/open-sql-vs-native-sql/#comment-13979</guid>
		<description>usefull explanation....</description>
		<content:encoded><![CDATA[<p>usefull explanation&#8230;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
