<?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>vGrup  Blog &#187; oracle</title>
	<atom:link href="http://www.vgrup.com/tag/oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vgrup.com</link>
	<description>Vgrup for Geek and Robot Unix Party</description>
	<lastBuildDate>Thu, 24 Nov 2011 13:24:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>how to get all rows in a single row?</title>
		<link>http://www.vgrup.com/2011/04/28/how-to-get-all-rows-in-a-single-row/</link>
		<comments>http://www.vgrup.com/2011/04/28/how-to-get-all-rows-in-a-single-row/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 12:24:51 +0000</pubDate>
		<dc:creator>İsmail ÇAKIR</dc:creator>
				<category><![CDATA[oracle]]></category>
		<category><![CDATA[fetch rows]]></category>
		<category><![CDATA[get all rows in a single row]]></category>
		<category><![CDATA[oracle sql]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/?p=466</guid>
		<description><![CDATA[today one of my collague asked me to how to fetch all rows of a parameter table in a single row with oracle sql. so i wrote this. select * from (select * from (select rownum as rnum, c.* from ( select b.* from user.test b order by rowid) c) where rnum = 1), (select [...]]]></description>
			<content:encoded><![CDATA[<p>today one of my collague asked me to how to fetch all rows of a parameter table in  a single row with <a href="http://www.vgrup.com/tag/oracle/" class="st_tag internal_tag" rel="tag" title="Posts tagged with oracle">oracle</a> <a href="http://www.vgrup.com/tag/sql/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sql">sql</a>.</p>
<p>so i wrote this.</p>
<p><code>select * from<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 1),<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 2),<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 3),<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 4),<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 5),<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 6),<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 7),<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 8),<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 9),<br />
(select * from (select rownum as rnum, c.* from ( select  b.* from user.test b order by rowid) c) where rnum = 10)</code></p>
<p>example gets 1o rows in a single row, actually it was constant 78 rows.<br />
so he could used it like<br />
resultset.getString(&#8220;param1&#8243;+i)  with a loop. </p>
<p>and then he also needed 5 by 5 collected results with 2x columns in each view. </p>
<p>and my solution is </p>
<p><code>select * from<br />
(select rownum as rx, b.* from (<br />
select rownum as rnum, rowid as rid, a.* from (select param_a, param_b, param_c, param_d, param_e from user.test  order by param_a, param_b, param_c) a) b<br />
where rnum >=5 and rnum < 10) x,<br />
(select  rownum as rx, b.* from (<br />
select  rownum as rnum, rowid as rid, a.* from (select param_a, param_b, param_c, param_d, param_e from user.test  order by param_a, param_b, param_c) a) b<br />
where rnum >=10 and rnum < 15) y  where x.rnum + 5 = y.rnum ;</code></p>
<p>anyone knows easier and more optimised way to do these?</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2011/04/28/how-to-get-all-rows-in-a-single-row/' addthis:title='how to get all rows in a single row?'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/fetch-rows/" title="fetch rows" rel="tag">fetch rows</a>, <a href="http://www.vgrup.com/tag/get-all-rows-in-a-single-row/" title="get all rows in a single row" rel="tag">get all rows in a single row</a>, <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a>, <a href="http://www.vgrup.com/tag/oracle-sql/" title="oracle sql" rel="tag">oracle sql</a>, <a href="http://www.vgrup.com/tag/sql/" title="sql" rel="tag">sql</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2011/04/28/how-to-get-all-rows-in-a-single-row/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>tora with oracle support on lucid (ubuntu 10.04 LTS (lucid lynx))</title>
		<link>http://www.vgrup.com/2010/05/21/tora-with-oracle-support-on-lucid-ubuntu-10-04-lts-lucid-lynx/</link>
		<comments>http://www.vgrup.com/2010/05/21/tora-with-oracle-support-on-lucid-ubuntu-10-04-lts-lucid-lynx/#comments</comments>
		<pubDate>Fri, 21 May 2010 10:58:29 +0000</pubDate>
		<dc:creator>İsmail ÇAKIR</dc:creator>
				<category><![CDATA[oracle]]></category>
		<category><![CDATA[oracle instant client]]></category>
		<category><![CDATA[tora]]></category>
		<category><![CDATA[tora 2.1.1 with oracle 11g]]></category>
		<category><![CDATA[tora with oracle]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/?p=403</guid>
		<description><![CDATA[first we take rpm packages from oracle instant client downloads. you need to download devel, basic, sqlplus packages. we need alien to convert rpms to deb. sudo apt-get install alien convert them to deb packges; alien oracle-instantclient11.2-basic_11.2.0.1.0-2_i386.rpm alien oracle-instantclient11.2-devel_11.2.0.1.0-2_i386.rpm alien oracle-instantclient11.2-sqlplus_11.2.0.1.0-2_i386.rpm install new deb packages with sudo dpkg -i download and install the libaio library [...]]]></description>
			<content:encoded><![CDATA[<p>first we take rpm packages from<br />
<a href="http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/linuxsoft.html">oracle instant client downloads</a>.<br />
you need to download devel, basic, sqlplus packages.<br />
we need alien to convert rpms to deb.<br />
<code>sudo apt-get install alien</code><br />
convert them to deb packges;<br />
<code>alien <a href="http://www.vgrup.com/tag/oracle/" class="st_tag internal_tag" rel="tag" title="Posts tagged with oracle">oracle</a>-instantclient11.2-basic_11.2.0.1.0-2_i386.rpm<br />
alien oracle-instantclient11.2-devel_11.2.0.1.0-2_i386.rpm<br />
alien oracle-instantclient11.2-sqlplus_11.2.0.1.0-2_i386.rpm</code></p>
<p>install new deb packages with <code>sudo dpkg -i </code></p>
<p>download and install the libaio library<br />
<a href="http://debian.mirror.inra.fr/debian/pool/main/liba/libaio/libaio1_0.3.106-3_i386.deb">libaio</a>, <a href="http://debian.mirror.inra.fr/debian/pool/main/liba/libaio/libaio-dev_0.3.106-3_i386.deb">libao-dev</a><br />
give this commands;<br />
<code><br />
sudo echo "/usr/lib/oracle/11.2/client/lib" >  /etc/ld.so.conf.d/oracle.conf<br />
sudo ldconfig<br />
export ORACLE_HOME=/usr/lib/oracle/11.2/client<br />
sudo "export ORACLE_HOME=/usr/lib/oracle/11.2/client" > ~/.<a href="http://www.vgrup.com/tag/bash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with bash">bash</a>_profile</code></p>
<p>take <a href="http://www.vgrup.com/tag/tora/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tora">tora</a> <a href="http://www.vgrup.com/tag/debian/" class="st_tag internal_tag" rel="tag" title="Posts tagged with debian">debian</a> package from proturk<br />
<code><br />
wget <a href="http://www.proturk.com/downloads/tora_2.1.1-1_i386.deb">http://www.proturk.com/downloads/tora_2.1.1-1_i386.deb</a><br />
sudo dpkg -i tora_2.1.1-1_i386.deb</code></p>
<p>now you can run tora with /usr/local/tora/bin/tora command.</p>
<p>if it not works probably you dont have qtscintilla or qt4 libraries, install them with synaptic.</p>
<p>if you want to compile by yourself, here is the configure command;<br />
<code>./configure --with-instant-client=/usr/lib/oracle/11.2/client --with-oracle-includes=/usr/include/oracle/11.2/client --with-oracle-libraries=/usr/lib/oracle/11.2/client/lib --with-oci-version=11G</code></p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2010/05/21/tora-with-oracle-support-on-lucid-ubuntu-10-04-lts-lucid-lynx/' addthis:title='tora with oracle support on lucid (ubuntu 10.04 LTS (lucid lynx))'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a>, <a href="http://www.vgrup.com/tag/oracle-instant-client/" title="oracle instant client" rel="tag">oracle instant client</a>, <a href="http://www.vgrup.com/tag/tora/" title="tora" rel="tag">tora</a>, <a href="http://www.vgrup.com/tag/tora-2-1-1-with-oracle-11g/" title="tora 2.1.1 with oracle 11g" rel="tag">tora 2.1.1 with oracle 11g</a>, <a href="http://www.vgrup.com/tag/tora-with-oracle/" title="tora with oracle" rel="tag">tora with oracle</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2010/05/21/tora-with-oracle-support-on-lucid-ubuntu-10-04-lts-lucid-lynx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle wallet ile kendinden imzalı sertifika kullanımı</title>
		<link>http://www.vgrup.com/2010/04/02/oracle-wallet-ile-kendinden-imzali-sertifika-kullanimi/</link>
		<comments>http://www.vgrup.com/2010/04/02/oracle-wallet-ile-kendinden-imzali-sertifika-kullanimi/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 12:48:10 +0000</pubDate>
		<dc:creator>İsmail ÇAKIR</dc:creator>
				<category><![CDATA[Bilgi Ve Deneyim]]></category>
		<category><![CDATA[ca]]></category>
		<category><![CDATA[kendinden imzalı sertifika]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[self signed]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[wallet]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/?p=378</guid>
		<description><![CDATA[openssl sitesinden ssl.ca-0.1.tar.gz dosyasını indirin. Oracle Wallet Manager&#8217;i açıp yeni bir wallet ile sertifika istemi oluşturun. Sertifika istem dosyasını &#8220;.csr&#8221; uzantısı ile export edip (örneğin deneme.csr), ssl.ca paketinizi indirdiginiz yere kaydedin. new-root-ca.sh ile kendinize bir root sertifikası oluşturun, oluşucak dosyanın ismi &#8220;ca.crt&#8221; dir. sign-server-cert.sh deneme.csr şeklinde onaylı kullanıcı sertifkamızı oluşutururuz. oluşan dosyanın ismi bu örnekte [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.openssl.org/contrib/">openssl</a> sitesinden <a href="http://www.vgrup.com/tag/ssl/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ssl">ssl</a>.<a href="http://www.vgrup.com/tag/ca/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ca">ca</a>-0.1.tar.gz dosyasını indirin.<br />
<a href="http://www.vgrup.com/tag/oracle/" class="st_tag internal_tag" rel="tag" title="Posts tagged with oracle">Oracle</a> <a href="http://www.vgrup.com/tag/wallet/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wallet">Wallet</a> Manager&#8217;i açıp yeni bir <a href="http://www.vgrup.com/tag/wallet/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wallet">wallet</a> ile sertifika istemi oluşturun.<br />
Sertifika istem dosyasını &#8220;.csr&#8221; uzantısı ile export edip (örneğin deneme.csr),  ssl.ca paketinizi indirdiginiz yere kaydedin.<br />
new-root-ca.sh  ile kendinize bir root sertifikası oluşturun, oluşucak dosyanın ismi &#8220;ca.crt&#8221; dir.<br />
<code>sign-server-cert.sh  deneme.csr</code> şeklinde<br />
onaylı kullanıcı sertifkamızı oluşutururuz. oluşan dosyanın ismi bu örnekte &#8220;deneme.crt&#8221; dir.<br />
ilk oluşturduğumuz &#8220;ca.crt&#8221; dosyasını oracle wallet a trusted (güvenilen) sertifika olarak ekleriz, kendimi istemimize ait kendinden imzalı &#8220;deneme.crt&#8221; dosyasını da<br />
kullanıcı sertifikası olarak walleta giriyoruz. Auto-login seçin ve wallet i kaydedin. Kullanıma hazırsınız.<br />
yok ben mitm den korkuyom kendinden imzalı kullanmam derseniz, apache-ssl in sitesinden size copy paste bir official ca listesi ;</p>
<ol>
<LI>Thawte Consulting, at <A HREF="http://www.thawte.com/html/RETAIL/ssl/index.html">http://www.thawte.com/html/RETAIL/ssl/index.html</A></LI><br />
<LI>CertiSign Certificadora Digital Ltda., at <A HREF=http://www.certisign.com.br>http://www.certisign.com.br</A></LI><br />
<LI>IKS GmbH, at <A HREF=http://www.iks-jena.de/produkte/ca/>http://www.iks-jena.de/produkte/ca/</A></LI><br />
<LI>BelSign NV/SA, at <A HREF="http://www.belsign.be">http://www.belsign.be</A></LI><br />
<LI>Verisign, Inc. at <A HREF="http://www.verisign.com/products-services/security-services/ssl/index.html">http://www.verisign.com/products-services/security-services/ssl/index.html</A></LI><br />
<LI>TC TrustCenter (Germany) at <A HREF="http://www.trustcenter.de/tc-server">http://www.trustcenter.de/tc-server</A></LI><br />
<LI>Deutsches Forschungsnetz at <A HREF="http://www.pca.dfn.de/dfnpca/certify/ssl/">http://www.pca.dfn.de/dfnpca/certify/ssl/</A></LI><br />
<LI>Entrust.net Ltd. at <A HREF="http://www.entrust.net/products/index.htm">http://www.entrust.net/products/index.htm</A></LI><br />
<LI>Equifax Inc. at <A HREF="http://www.equifaxsecure.com/ebusinessid/">http://www.equifaxsecure.com/ebusinessid/</A></LI><br />
<LI>GlobalSign NV/SA at <A HREF="http://www.GlobalSign.net/">http://www.GlobalSign.net</A><br />
<LI>NetLock Kft. (Hungary) at <A HREF="http://www.netlock.net/">http://www.netlock.net</A><br />
<LI>Certplus SA (France) at <A HREF="http://www.certplus.com/">http://www.certplus.com</A><br />
<LI>GeoTrust Inc. (USA) at <A HREF="http://www.freessl.com/">http://www.freessl.com</A><br />
<LI>register.com (USA) at <A HREF="http://commercelock.register.com/">http://commercelock.register.com</A><br />
<LI>lanechange.net (Canada) at <A HREF="http://www.lanechange.net/#server certs">http://www.lanechange.net/#server certs</A><br />
<LI>KPN Telecom (The Netherlands) at <A HREF="http://certificaat.kpn.com/">http://certificaat.kpn.com/</A></LI><br />
<LI>Tier Networking (USA) at <A HREF="http://www.tier-networking.com/sslcerts/">http://www.tier-networking.com/sslcerts/</A></LI><br />
<LI>ipsCA (Spain) at <A HREF="http://certs.ipsca.com/FreeCertsForApacheSSL/">http://certs.ipsca.com/FreeCertsForApacheSSL/</A></LI><br />
<LI>CAcert (Australia) at <A HREF="http://www.cacert.org/">http://www.cacert.org/</A></LI><br />
<LI>Comodo CA (USA/UK) at <A HREF="http://www.instantssl.com/">http://www.instantssl.com/</A></LI><br />
<LI>Xolphin (Netherlands) at <A HREF="http://www.sslcertificaten.nl/">http://www.sslcertificaten.nl/</A></LI><br />
<LI>usertrust (USA) at <A HREF="http://www.usertrust.com/">http://www.usertrust.com/</A></LI><br />
<LI>Networking4All (Netherlands) at <A HREF="http://www.ssl-beveiligd.nl/">http://www.ssl-beveiligd.nl/</A></LI><br />
<LI>Microsec Kft. (Hungary) at <A HREF="http://www.e-szigno.hu/">http://www.e-szigno.hu/</A></LI><br />
<LI>DigiCert Inc. (USA) at <A HREF="http://www.digicert.com/">http://www.digicert.com</A></LI>
</ol>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2010/04/02/oracle-wallet-ile-kendinden-imzali-sertifika-kullanimi/' addthis:title='oracle wallet ile kendinden imzalı sertifika kullanımı'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/ca/" title="ca" rel="tag">ca</a>, <a href="http://www.vgrup.com/tag/kendinden-imzali-sertifika/" title="kendinden imzalı sertifika" rel="tag">kendinden imzalı sertifika</a>, <a href="http://www.vgrup.com/tag/openssl/" title="openssl" rel="tag">openssl</a>, <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a>, <a href="http://www.vgrup.com/tag/self-signed/" title="self signed" rel="tag">self signed</a>, <a href="http://www.vgrup.com/tag/ssl/" title="ssl" rel="tag">ssl</a>, <a href="http://www.vgrup.com/tag/wallet/" title="wallet" rel="tag">wallet</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2010/04/02/oracle-wallet-ile-kendinden-imzali-sertifika-kullanimi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>oracle XMLType kullanımı</title>
		<link>http://www.vgrup.com/2010/03/15/oracle-xmltype-kullanimi/</link>
		<comments>http://www.vgrup.com/2010/03/15/oracle-xmltype-kullanimi/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 08:53:47 +0000</pubDate>
		<dc:creator>Muhammed YÜRÜRDURMAZ</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[existsNode]]></category>
		<category><![CDATA[extractValue]]></category>
		<category><![CDATA[xmltype]]></category>
		<category><![CDATA[xpath]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/2010/03/12/oracle-xmltype-kullanimi/</guid>
		<description><![CDATA[Öncelikli olarak XMLType tipinde bir tablo oluşturalım. Tablo adı deneme_tablo olsun create table deneme_tablo of xmltype; bir kayıt insert edelim insert into deneme_tablo values( xmltype('&#60;kisi adi="muhammed" soyadi="yürürdurmaz" /&#62;') ) insert into deneme_tablo values( xmltype('&#60;kisi adi="ismail" soyadi="çakır" /&#62;') ) şimdi tüm kayıtları listeleyelim select * from deneme_tablo şimdi ismi muhammed olan kayıtları sorgulayalım select * from [...]]]></description>
			<content:encoded><![CDATA[<p>Öncelikli olarak <a href="http://www.vgrup.com/tag/xmltype/" class="st_tag internal_tag" rel="tag" title="Posts tagged with xmltype">XMLType</a> tipinde bir tablo oluşturalım. Tablo adı deneme_tablo olsun</p>
<pre>create table deneme_tablo of xmltype;</pre>
<p>bir kayıt insert edelim</p>
<pre>insert into deneme_tablo values(
	xmltype('&lt;kisi adi="muhammed" soyadi="yürürdurmaz" /&gt;')
)</pre>
<pre>insert into deneme_tablo values(
	xmltype('&lt;kisi adi="ismail" soyadi="çakır" /&gt;')
)</pre>
<p>şimdi tüm kayıtları listeleyelim</p>
<pre>select * from deneme_tablo</pre>
<p>şimdi ismi muhammed olan kayıtları sorgulayalım</p>
<pre>select * from deneme_tablo tb
where <a href="http://www.vgrup.com/tag/existsnode/" class="st_tag internal_tag" rel="tag" title="Posts tagged with existsNode">existsNode</a>(tb.OBJECT_VALUE, '/kisi[@adi=''muhammed'']') = 1</pre>
<p>şimdi kişi adlarını listeleyelim olan kayıtları sorgulayalım</p>
<pre>select <a href="http://www.vgrup.com/tag/extractvalue/" class="st_tag internal_tag" rel="tag" title="Posts tagged with extractValue">extractValue</a>(tb.OBJECT_VALUE, '/kisi/@adi') from deneme_tablo tb</pre>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2010/03/15/oracle-xmltype-kullanimi/' addthis:title='oracle XMLType kullanımı'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/existsnode/" title="existsNode" rel="tag">existsNode</a>, <a href="http://www.vgrup.com/tag/extractvalue/" title="extractValue" rel="tag">extractValue</a>, <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a>, <a href="http://www.vgrup.com/tag/xmltype/" title="xmltype" rel="tag">xmltype</a>, <a href="http://www.vgrup.com/tag/xpath/" title="xpath" rel="tag">xpath</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2010/03/15/oracle-xmltype-kullanimi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sql between operatörü</title>
		<link>http://www.vgrup.com/2010/03/07/sql-between-operatoru/</link>
		<comments>http://www.vgrup.com/2010/03/07/sql-between-operatoru/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 17:12:29 +0000</pubDate>
		<dc:creator>Muhammed YÜRÜRDURMAZ</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[between]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[veritabanı]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/2010/03/07/sql-between-operatoru/</guid>
		<description><![CDATA[select * from tablo where sayi between 1 and 5 sql kullanırken between operatörünbe dikkat edin. bazı veritabanlarında 1 dahil olmazken bazılarında 5 dahil olmuyor. bazırlarında 1 ve 5 dahil olurken bazılarında 1 ve 5 dahil olmuyor örnek olarak oracle üzerinde 1 ve 5 dahil oluyor Tags: between, oracle, sql, veritabanı]]></description>
			<content:encoded><![CDATA[<pre>select * from tablo where sayi <a href="http://www.vgrup.com/tag/between/" class="st_tag internal_tag" rel="tag" title="Posts tagged with between">between</a> 1 and 5</pre>
<p><a href="http://www.vgrup.com/tag/sql/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sql">sql</a> kullanırken between operatörünbe dikkat edin. bazı veritabanlarında 1 dahil olmazken bazılarında 5 dahil olmuyor. bazırlarında 1 ve 5 dahil olurken bazılarında 1 ve 5 dahil olmuyor</p>
<p>örnek olarak <a href="http://www.vgrup.com/tag/oracle/" class="st_tag internal_tag" rel="tag" title="Posts tagged with oracle">oracle</a> üzerinde 1 ve 5 dahil oluyor</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2010/03/07/sql-between-operatoru/' addthis:title='sql between operatörü'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/between/" title="between" rel="tag">between</a>, <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a>, <a href="http://www.vgrup.com/tag/sql/" title="sql" rel="tag">sql</a>, <a href="http://www.vgrup.com/tag/veritabani/" title="veritabanı" rel="tag">veritabanı</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2010/03/07/sql-between-operatoru/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SqlTools  Linux üzerine kurma</title>
		<link>http://www.vgrup.com/2010/02/27/sqltools-linux-uzerine-kurma/</link>
		<comments>http://www.vgrup.com/2010/02/27/sqltools-linux-uzerine-kurma/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 14:09:45 +0000</pubDate>
		<dc:creator>İsmail ÇAKIR</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[instant client]]></category>
		<category><![CDATA[sqltools]]></category>
		<category><![CDATA[sqltools in linux]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/?p=325</guid>
		<description><![CDATA[Öncelikle Sqltools indiriyoruz. sistemimizde wine kuruluysa direkt olarak tıklayıp kurabiliriz. wine yoksa sudo apt-get install wine ile kuruyoruz. Oracle instant client a ihtiyaç duyucaz, instantclient-basic-win32-11.1.0.7.0.zip. basic versiyonu indiriyoruz. Tabi benim veritabanım türkçe encoding de eğer ingilizce ise veritabanınız daha ufak olan basic-lite paketini indirebilirsiniz. ev dizinimizdeki .wine/drive_c/Program Files/SQLTools 1.42/ dizinine gidip instantclient-basic-win32-11.1.0.7.0.zip dosyasını buraya açıyoruz. [...]]]></description>
			<content:encoded><![CDATA[<p>Öncelikle <a href="http://www.vgrup.com/tag/sqltools/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sqltools">Sqltools</a> <a href="http://sqltools.net/downloads/SQLTools_1.42RC3.exe">indiriyoruz</a>.</p>
<p>sistemimizde <a href="http://www.vgrup.com/tag/wine/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wine">wine</a> kuruluysa direkt olarak tıklayıp kurabiliriz.<br />
wine yoksa<br />
<code>sudo apt-get install wine</code><br />
ile kuruyoruz.<br />
<a href="http://www.vgrup.com/tag/oracle/" class="st_tag internal_tag" rel="tag" title="Posts tagged with oracle">Oracle</a> <a href="http://www.vgrup.com/tag/instant-client/" class="st_tag internal_tag" rel="tag" title="Posts tagged with instant client">instant client</a> a ihtiyaç duyucaz, <a href="http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/winsoft.html">instantclient-basic-win32-11.1.0.7.0.zip</a>.  basic versiyonu indiriyoruz. Tabi benim veritabanım türkçe encoding de eğer ingilizce ise veritabanınız daha ufak olan basic-lite paketini indirebilirsiniz.<br />
ev dizinimizdeki<br />
<code>.wine/drive_c/Program Files/SQLTools 1.42/</code> dizinine gidip instantclient-basic-win32-11.1.0.7.0.zip dosyasını buraya açıyoruz.<br />
instantclient_11_1 dizinine açıcaktır. içindekileri üst dizine taşıyın.</p>
<p>daha sonra wine Sqltools.exe  komutuyla ya da ana menudeki wine grubundan SQLtools u çalıştırabilirsiniz.</p>
<p><a href="http://www.vgrup.com/wp-content/uploads/2010/02/SQLTools-SQL1-.jpg"><img src="http://www.vgrup.com/wp-content/uploads/2010/02/SQLTools-SQL1--300x182.jpg" alt="" title="SQLTools - [SQL1 *]" width="300" height="182" class="alignnone size-medium wp-image-326" /></a></p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2010/02/27/sqltools-linux-uzerine-kurma/' addthis:title='SqlTools  Linux üzerine kurma'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/debian/" title="debian" rel="tag">debian</a>, <a href="http://www.vgrup.com/tag/instant-client/" title="instant client" rel="tag">instant client</a>, <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a>, <a href="http://www.vgrup.com/tag/sqltools/" title="sqltools" rel="tag">sqltools</a>, <a href="http://www.vgrup.com/tag/sqltools-in-linux/" title="sqltools in linux" rel="tag">sqltools in linux</a>, <a href="http://www.vgrup.com/tag/wine/" title="wine" rel="tag">wine</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2010/02/27/sqltools-linux-uzerine-kurma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle dbconsole localtime hatası</title>
		<link>http://www.vgrup.com/2010/02/26/oracle-dbconsole-localtime-hatasi/</link>
		<comments>http://www.vgrup.com/2010/02/26/oracle-dbconsole-localtime-hatasi/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 13:02:00 +0000</pubDate>
		<dc:creator>İsmail ÇAKIR</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[dbconsole]]></category>
		<category><![CDATA[dbconsole error]]></category>
		<category><![CDATA[emctl]]></category>
		<category><![CDATA[emctl start dbconsole]]></category>
		<category><![CDATA[localtime]]></category>
		<category><![CDATA[timezone]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/?p=318</guid>
		<description><![CDATA[emctl start dbconsole komutu ile dbconsole başlatmaya çalıştığınızda /usr/bin/diff: /etc/localtime: No such file or directory TZ set to Etc/GMT+12 Oracle Enterprise Manager 10g Database Control Release hatası alıyorsanız, sisteminizin timezone ayarını yapmamışınızdır demektir. ln -sf /usr/share/zoneinfo/Turkey /etc/localtime komutu ile oluşturacağınız linkle bu sorunu aşabilirsiniz. eğer does not match the current environment TZ setting hatası görüyorsanız, [...]]]></description>
			<content:encoded><![CDATA[<p><code><a href="http://www.vgrup.com/tag/emctl/" class="st_tag internal_tag" rel="tag" title="Posts tagged with emctl">emctl</a> start <a href="http://www.vgrup.com/tag/dbconsole/" class="st_tag internal_tag" rel="tag" title="Posts tagged with dbconsole">dbconsole</a></code></p>
<p>komutu ile dbconsole başlatmaya çalıştığınızda </p>
<p><code>/usr/bin/diff: /etc/<a href="http://www.vgrup.com/tag/localtime/" class="st_tag internal_tag" rel="tag" title="Posts tagged with localtime">localtime</a>: No such file or directory TZ set to<br />
Etc/GMT+12 <a href="http://www.vgrup.com/tag/oracle/" class="st_tag internal_tag" rel="tag" title="Posts tagged with oracle">Oracle</a> Enterprise Manager 10g Database Control Release</code></p>
<p>hatası alıyorsanız, sisteminizin <a href="http://www.vgrup.com/tag/timezone/" class="st_tag internal_tag" rel="tag" title="Posts tagged with timezone">timezone</a> ayarını yapmamışınızdır demektir.</p>
<p><code>ln -sf /usr/share/zoneinfo/Turkey /etc/localtime</code></p>
<p>komutu ile oluşturacağınız linkle bu sorunu aşabilirsiniz.</p>
<p>eğer </p>
<p><code>does not match the current environment TZ setting</code></p>
<p>hatası görüyorsanız, db ile sistem timezone farklıdır. </p>
<p>ORACLE_HOME dizinine geçip </p>
<p><code>emctl resetTZ agent</code></p>
<p>komutu vererek bu sorunu da aşabilirsiniz.</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2010/02/26/oracle-dbconsole-localtime-hatasi/' addthis:title='oracle dbconsole localtime hatası'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/dbconsole/" title="dbconsole" rel="tag">dbconsole</a>, <a href="http://www.vgrup.com/tag/dbconsole-error/" title="dbconsole error" rel="tag">dbconsole error</a>, <a href="http://www.vgrup.com/tag/emctl/" title="emctl" rel="tag">emctl</a>, <a href="http://www.vgrup.com/tag/emctl-start-dbconsole/" title="emctl start dbconsole" rel="tag">emctl start dbconsole</a>, <a href="http://www.vgrup.com/tag/localtime/" title="localtime" rel="tag">localtime</a>, <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a>, <a href="http://www.vgrup.com/tag/timezone/" title="timezone" rel="tag">timezone</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2010/02/26/oracle-dbconsole-localtime-hatasi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle tns listener kilitlendiğinde yeniden başlatmak için basit bir script</title>
		<link>http://www.vgrup.com/2010/02/22/oracle-tns-listener-kilitlendiginde-kapatmak-icin-basit-bir-script/</link>
		<comments>http://www.vgrup.com/2010/02/22/oracle-tns-listener-kilitlendiginde-kapatmak-icin-basit-bir-script/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 15:33:29 +0000</pubDate>
		<dc:creator>İsmail ÇAKIR</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[force listener to restart]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[lsnrctl]]></category>
		<category><![CDATA[tnslsnr]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/?p=286</guid>
		<description><![CDATA[Hani böylesine zorla yapmak istemeyizde mecbur kalınca, niye olmasın lsnrctl stop komutuyla durmuyorsa. #!/bin/bash for ind in `ps -aef &#124; grep tnslsnr &#124; grep -v grep &#124; cut -f4 -d ' '` do kill -9 $ind echo "process $ind" done if [ $? -eq 0 ]; then lsnrctl start fi exit Tags: bash, force listener [...]]]></description>
			<content:encoded><![CDATA[<p>Hani böylesine zorla yapmak istemeyizde mecbur kalınca, niye olmasın <img src='http://www.vgrup.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<code><a href="http://www.vgrup.com/tag/lsnrctl/" class="st_tag internal_tag" rel="tag" title="Posts tagged with lsnrctl">lsnrctl</a> stop </code><br />
komutuyla durmuyorsa.<br />
<code>#!/bin/<a href="http://www.vgrup.com/tag/bash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with bash">bash</a></p>
<p>for ind in `ps -aef | grep <a href="http://www.vgrup.com/tag/tnslsnr/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tnslsnr">tnslsnr</a> | grep -v grep | cut -f4 -d ' '`<br />
do<br />
 kill -9 $ind<br />
  echo "process $ind"<br />
done<br />
if [ $? -eq 0 ]; then<br />
lsnrctl start<br />
fi<br />
exit</code></p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2010/02/22/oracle-tns-listener-kilitlendiginde-kapatmak-icin-basit-bir-script/' addthis:title='oracle tns listener kilitlendiğinde yeniden başlatmak için basit bir script'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/bash/" title="bash" rel="tag">bash</a>, <a href="http://www.vgrup.com/tag/force-listener-to-restart/" title="force listener to restart" rel="tag">force listener to restart</a>, <a href="http://www.vgrup.com/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.vgrup.com/tag/lsnrctl/" title="lsnrctl" rel="tag">lsnrctl</a>, <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a>, <a href="http://www.vgrup.com/tag/tnslsnr/" title="tnslsnr" rel="tag">tnslsnr</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2010/02/22/oracle-tns-listener-kilitlendiginde-kapatmak-icin-basit-bir-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gtko oracle sql admin</title>
		<link>http://www.vgrup.com/2008/04/14/gtko-oracle-sql-admin/</link>
		<comments>http://www.vgrup.com/2008/04/14/gtko-oracle-sql-admin/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 08:33:52 +0000</pubDate>
		<dc:creator>İsmail ÇAKIR</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[gsqlr2]]></category>
		<category><![CDATA[gtko]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/?p=19</guid>
		<description><![CDATA[gtko  tora  ve sqldeveloper alternatifi olarka kullanılabilen bir oracle sql editörü. http://www.proturk.com/download/linux/deb/gtko2_2.26-1_i386.deb adresinden elde ediceğiniz deb&#8217;i kurmadan önce tora yazımda verdiğim gibi instanclient kurmanız ve ORACLE_HOME ayarınızı yapmanız lazım . http://gsqlr2.sourceforge.net/ Tags: gsqlr2, gtko, oracle]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vgrup.com/tag/gtko/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gtko">gtko</a>  <a href="http://www.vgrup.com/tag/tora/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tora">tora</a>  ve sqldeveloper alternatifi olarka kullanılabilen bir <a href="http://www.vgrup.com/tag/oracle/" class="st_tag internal_tag" rel="tag" title="Posts tagged with oracle">oracle</a> <a href="http://www.vgrup.com/tag/sql/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sql">sql</a> editörü.</p>
<p>http://www.proturk.com/download/<a href="http://www.vgrup.com/tag/linux/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Linux">linux</a>/deb/gtko2_2.26-1_i386.deb</p>
<p>adresinden elde ediceğiniz deb&#8217;i kurmadan önce<br />
tora yazımda verdiğim gibi instanclient kurmanız ve ORACLE_HOME ayarınızı yapmanız lazım .</p>
<p><img src="http://i29.tinypic.com/11a8wgi.png" alt="gtko" width="320" height="266" />http://<a href="http://www.vgrup.com/tag/gsqlr2/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gsqlr2">gsqlr2</a>.sourceforge.net/</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2008/04/14/gtko-oracle-sql-admin/' addthis:title='gtko oracle sql admin'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/gsqlr2/" title="gsqlr2" rel="tag">gsqlr2</a>, <a href="http://www.vgrup.com/tag/gtko/" title="gtko" rel="tag">gtko</a>, <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2008/04/14/gtko-oracle-sql-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle desteği ile tora debian etch üzerinde</title>
		<link>http://www.vgrup.com/2008/04/13/oracle-destegi-ile-tora-debian-etch-uzerinde/</link>
		<comments>http://www.vgrup.com/2008/04/13/oracle-destegi-ile-tora-debian-etch-uzerinde/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 15:46:10 +0000</pubDate>
		<dc:creator>İsmail ÇAKIR</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[tora]]></category>
		<category><![CDATA[tora with oracle support]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.vgrup.com/?p=18</guid>
		<description><![CDATA[Bildiğiniz gibi tora debian ve ubuntu da oracle desteği olmadan geliyor.  Eğer oracle desteği olan tora gerekirse şunları yapın: http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/linuxsoft.html adresinden instanclient basiclite, sqlplus ve devel paketlerini indirin. Rpm olarak indirip alien ( yoksa sudo apt-get install alien) ile kurun. http://debian.mirror.inra.fr/debian/pool/main/liba/libaio/libaio1_0.3.106-3_i386.deb http://debian.mirror.inra.fr/debian/pool/main/liba/libaio/libaio-dev_0.3.106-3_i386.deb paketlerini kurun. sonra sudo vi /etc/ld.so.conf.d/oracle.conf komutu verin ve dosyaya /usr/lib/oracle/11.1.0.1/client/lib yazın sudo ldconfig komutu verin. export ORACLE_HOME=/usr/lib/oracle/11.1.0.1/client komutu verin. bunu .bash_profile dosyanıza da ekleyin. wget http://www.proturk.com/download/linux/deb/tora_1.3.21-3_i386.deb sudo dpkg -i  tora_1.3.21-3_i386.deb ile kurun komut satırına tora demeniz yeticektir. Tags: debian, oracle, tora, tora with oracle support, [...]]]></description>
			<content:encoded><![CDATA[<p>Bildiğiniz gibi <a href="http://www.vgrup.com/tag/tora/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tora">tora</a> <a href="http://www.vgrup.com/tag/debian/" class="st_tag internal_tag" rel="tag" title="Posts tagged with debian">debian</a> ve <a href="http://www.vgrup.com/tag/ubuntu/" class="st_tag internal_tag" rel="tag" title="Posts tagged with ubuntu">ubuntu</a> da <a href="http://www.vgrup.com/tag/oracle/" class="st_tag internal_tag" rel="tag" title="Posts tagged with oracle">oracle</a> desteği olmadan geliyor.  Eğer <a href="http://www.vgrup.com/tag/oracle/" class="st_tag internal_tag" rel="tag" title="Posts tagged with oracle">oracle</a> desteği olan tora gerekirse şunları yapın:</p>
<p>http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/linuxsoft.html</p>
<p>adresinden instanclient basiclite, sqlplus ve devel paketlerini indirin.<br />
Rpm olarak indirip alien ( yoksa sudo apt-get install alien) ile kurun.</p>
<p>http://debian.mirror.inra.fr/debian/pool/main/liba/libaio/libaio1_0.3.106-3_i386.deb</p>
<p>http://debian.mirror.inra.fr/debian/pool/main/liba/libaio/libaio-dev_0.3.106-3_i386.deb</p>
<p>paketlerini kurun.</p>
<p>sonra</p>
<p>sudo vi /etc/ld.so.conf.d/oracle.conf</p>
<p>komutu verin ve dosyaya</p>
<p>/usr/lib/oracle/11.1.0.1/client/lib</p>
<p>yazın</p>
<p>sudo ldconfig</p>
<p>komutu verin.</p>
<p>export ORACLE_HOME=/usr/lib/oracle/11.1.0.1/client</p>
<p>komutu verin.</p>
<p>bunu .<a href="http://www.vgrup.com/tag/bash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with bash">bash</a>_profile dosyanıza da ekleyin.</p>
<p>wget http://www.proturk.com/download/<a href="http://www.vgrup.com/tag/linux/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Linux">linux</a>/deb/tora_1.3.21-3_i386.deb</p>
<p>sudo dpkg -i  tora_1.3.21-3_i386.deb</p>
<p>ile kurun</p>
<p>komut satırına tora demeniz yeticektir.</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.vgrup.com/2008/04/13/oracle-destegi-ile-tora-debian-etch-uzerinde/' addthis:title='oracle desteği ile tora debian etch üzerinde'><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
	Tags: <a href="http://www.vgrup.com/tag/debian/" title="debian" rel="tag">debian</a>, <a href="http://www.vgrup.com/tag/oracle/" title="oracle" rel="tag">oracle</a>, <a href="http://www.vgrup.com/tag/tora/" title="tora" rel="tag">tora</a>, <a href="http://www.vgrup.com/tag/tora-with-oracle-support/" title="tora with oracle support" rel="tag">tora with oracle support</a>, <a href="http://www.vgrup.com/tag/ubuntu/" title="ubuntu" rel="tag">ubuntu</a><br />
]]></content:encoded>
			<wfw:commentRss>http://www.vgrup.com/2008/04/13/oracle-destegi-ile-tora-debian-etch-uzerinde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

