<?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>bearparc - Softwareentwicklung und Projektmanagement &#187; SQL</title>
	<atom:link href="http://www.bearparc.info/category/oracle/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bearparc.info</link>
	<description>A software development blog for the qualified developer</description>
	<lastBuildDate>Thu, 04 Feb 2010 13:55:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Codebeispiel Oracle : Anzahl doppelter Datensätze</title>
		<link>http://www.bearparc.info/2009/06/12/codebeispiel-oracle-anzahl-doppelter-datensatze/</link>
		<comments>http://www.bearparc.info/2009/06/12/codebeispiel-oracle-anzahl-doppelter-datensatze/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 13:51:08 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/?p=251</guid>
		<description><![CDATA[select wp_id, count (*) as anzahl from tmp_Kurse group by wp_id having count(*) >1;]]></description>
		<wfw:commentRss>http://www.bearparc.info/2009/06/12/codebeispiel-oracle-anzahl-doppelter-datensatze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Codebeispiel: Löschen doppelter Datensätze in einem table</title>
		<link>http://www.bearparc.info/2009/04/28/oracle-loschen-doppelter-datensatze-in-einem-table/</link>
		<comments>http://www.bearparc.info/2009/04/28/oracle-loschen-doppelter-datensatze-in-einem-table/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 11:00:17 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/?p=203</guid>
		<description><![CDATA[Oracle speichert eine interne Indexierung mit dem Namen ROWID, DELETE FROM tmp_index WHERE rowid NOT IN (SELECT max(rowid) FROM tmp_index GROUP BY ISIN);]]></description>
		<wfw:commentRss>http://www.bearparc.info/2009/04/28/oracle-loschen-doppelter-datensatze-in-einem-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beispiel alter table statement</title>
		<link>http://www.bearparc.info/2007/08/28/beispiel-alter-table-statement/</link>
		<comments>http://www.bearparc.info/2007/08/28/beispiel-alter-table-statement/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 07:16:30 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/2007/08/28/beispiel-alter-table-statement/</guid>
		<description><![CDATA[alter table table_name add ( column1_name column1_datatype column1_constraint, column2_name column2_datatype column2_constraint, column3_name column3_datatype column3_constraint ); Beispiel: ALTER TABLE stock_table ADD ( stock_exchange char(10) NOT NULL, stock_rating number );]]></description>
		<wfw:commentRss>http://www.bearparc.info/2007/08/28/beispiel-alter-table-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-00054: resource busy and acquire with NOWAIT specified</title>
		<link>http://www.bearparc.info/2007/08/27/ora-00054-resource-busy-and-acquire-with-nowait-specified/</link>
		<comments>http://www.bearparc.info/2007/08/27/ora-00054-resource-busy-and-acquire-with-nowait-specified/#comments</comments>
		<pubDate>Mon, 27 Aug 2007 14:31:27 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/2007/08/27/ora-00054-resource-busy-and-acquire-with-nowait-specified/</guid>
		<description><![CDATA[Identifizieren des table lock  select object_name, o.object_id from user_objects o, v$locked_object l where o.object_id = l.object_id; Freigeben des tables  select ID1, ID2, type from v$lock where sid = (select sid from v$mystat where rownum = 1);]]></description>
		<wfw:commentRss>http://www.bearparc.info/2007/08/27/ora-00054-resource-busy-and-acquire-with-nowait-specified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codebeispiel exist condition</title>
		<link>http://www.bearparc.info/2007/08/06/codebeispiel-exist-condition/</link>
		<comments>http://www.bearparc.info/2007/08/06/codebeispiel-exist-condition/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 19:52:10 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/2007/08/06/codebeispiel-exist-condition/</guid>
		<description><![CDATA[SELECT * FROM stocks WHERE EXISTS (select * from stockstamm where stocks.supplier_id = stockstamm.supplier_id);]]></description>
		<wfw:commentRss>http://www.bearparc.info/2007/08/06/codebeispiel-exist-condition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codebeispiel SQL &#8211; EXISTS condition</title>
		<link>http://www.bearparc.info/2007/08/06/sql-exists-condition/</link>
		<comments>http://www.bearparc.info/2007/08/06/sql-exists-condition/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 19:33:54 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/2007/08/06/sql-exists-condition/</guid>
		<description><![CDATA[SELECT columns FROM tables WHERE EXISTS ( subquery ); Die exist condition kann in jedem SQL Statement genutzt werden &#8211; select, insert, update, oder delete.]]></description>
		<wfw:commentRss>http://www.bearparc.info/2007/08/06/sql-exists-condition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>insert Statement &#8211; Beispiel, einfügen eines Datesatzes</title>
		<link>http://www.bearparc.info/2007/08/05/insert-statement-beispiel-einfugen-eines-datesatzes/</link>
		<comments>http://www.bearparc.info/2007/08/05/insert-statement-beispiel-einfugen-eines-datesatzes/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 19:00:42 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/2007/08/05/insert-statement-beispiel-einfugen-eines-datesatzes/</guid>
		<description><![CDATA[INSERT INTO stocks (stock_id, stock_name, stock_type) SELECT 10345, &#8216;IBM&#8217;, &#8216;asset&#8217; FROM dual WHERE not exists (select * from stocks where stocks.stock_id = 10345);]]></description>
		<wfw:commentRss>http://www.bearparc.info/2007/08/05/insert-statement-beispiel-einfugen-eines-datesatzes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>insert statement Beispiel &#8211; Verhindern das Datensätze mehrfach inserted werden.</title>
		<link>http://www.bearparc.info/2007/08/05/insert-statement-beispiel-verhindern-das-datensatze-mehrfach-inserted-werden/</link>
		<comments>http://www.bearparc.info/2007/08/05/insert-statement-beispiel-verhindern-das-datensatze-mehrfach-inserted-werden/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 18:41:21 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/2007/08/05/insert-statement-beispiel-verhindern-das-datensatze-mehrfach-inserted-werden/</guid>
		<description><![CDATA[Wenn im table ein primary key auf ISIN vorhanden ist INSERT INTO stocks (ISIN, stock_name) SELECT ISIN, name FROM WP_Stamm WHERE not exists (select * from stocks where stocks.ISIN = WP_STAMM.ISIN); Dieses statement fügt mehrere records mit einem subselect ein]]></description>
		<wfw:commentRss>http://www.bearparc.info/2007/08/05/insert-statement-beispiel-verhindern-das-datensatze-mehrfach-inserted-werden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>insert statement &#8211; Anzahl der geladenen Sätze</title>
		<link>http://www.bearparc.info/2007/08/05/insert-statement-anzahl-der-geladenen-satze/</link>
		<comments>http://www.bearparc.info/2007/08/05/insert-statement-anzahl-der-geladenen-satze/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 18:22:54 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/2007/08/05/insert-statement-anzahl-der-geladenen-satze/</guid>
		<description><![CDATA[Checken wieviel Sätze geladen wurden SELECT count(*) FROM WP_STAMM WHERE boerse = &#8216;Frankfurt&#8217;;]]></description>
		<wfw:commentRss>http://www.bearparc.info/2007/08/05/insert-statement-anzahl-der-geladenen-satze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>insert Statement &#8211; Beispiel</title>
		<link>http://www.bearparc.info/2007/08/05/insert-statement-beispiel/</link>
		<comments>http://www.bearparc.info/2007/08/05/insert-statement-beispiel/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 18:16:48 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.bearparc.info/2007/08/05/insert-statement-beispiel/</guid>
		<description><![CDATA[Beispiel #1 – einfaches Beispiel: INSERT INTO stocks (ISIN, stock_name) VALUES (DE0007100000, &#8216; DAIMLERCHRYSLER AG NAMENS-AKTIEN O.N.&#8217;); Beispiel #2 – etwas komplexeres Beispiel Daten einfügen mit Hilfe eines sub select INSERT INTO stocks (ISIN, stock_name) SELECT ISIN, name FROM WP_Stamm WHERE boerse = &#8216;Frankfurt&#8217;;]]></description>
		<wfw:commentRss>http://www.bearparc.info/2007/08/05/insert-statement-beispiel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
