<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>ERP Nedir? | T&#252;rkiye'nin ERP Forum Platformu : excel den sql 2005</title>
  <link>http://www.erpne.org/</link>
  <description><![CDATA[XML içerik linki; ERP Nedir? | T&#252;rkiye'nin ERP Forum Platformu : ERP ve Excel : excel den sql 2005]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 17 Apr 2026 22:25:19 +0000</pubDate>
  <lastBuildDate>Mon, 15 Jun 2009 13:37:19 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.10</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.erpne.org/RSS_post_feed.asp?TID=1155</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ERP Nedir? | T&#252;rkiye'nin ERP Forum Platformu]]></title>
   <url>http://www.erpne.org/forum_images/logotype.png</url>
   <link>http://www.erpne.org/</link>
  </image>
  <item>
   <title><![CDATA[excel den sql 2005 : sqle yeni bir table ac sube_kodu,isletme_kodu,stok...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post9026.html#9026</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=1916">aslan</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 15&nbsp;Haziran&nbsp;2009 Saat 13:37<br /><br />sqle yeni bir table ac sube_kodu,isletme_kodu,stok kodu stok adi,satis_fiyat<DIV>&nbsp;excel verilerini bunun içerisine al ve tablodan tabloya update ile son noktayi koy takilirsaniz&nbsp; mesaj gönderinn sql cumlesini göndereyim size</DIV>]]>
   </description>
   <pubDate>Mon, 15 Jun 2009 13:37:19 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post9026.html#9026</guid>
  </item> 
  <item>
   <title><![CDATA[excel den sql 2005 : excel sayfasini import edip view...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post9014.html#9014</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=1592">rhan</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 11&nbsp;Haziran&nbsp;2009 Saat 22:16<br /><br />excel sayfasini import edip view kullanarak update etseniz daha kolay olur bence]]>
   </description>
   <pubDate>Thu, 11 Jun 2009 22:16:34 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post9014.html#9014</guid>
  </item> 
  <item>
   <title><![CDATA[excel den sql 2005 : Sifreyi hatirlayamadim ama baska...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post8984.html#8984</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=483">Conari</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 04&nbsp;Haziran&nbsp;2009 Saat 11:30<br /><br />Sifreyi hatirlayamadim ama baska&nbsp; yollardan VBA kodlarina ulastim.<DIV>&nbsp;</DIV><DIV><BR>&nbsp;Sub insertSQL()<BR>&nbsp;Dim cn As Object<BR>&nbsp;On Error Resume Next<BR>&nbsp;Set cn = CreateObject("ADODB.Connection")<BR>&nbsp;'Makro Create Conari<BR>&nbsp;Dim vtSql<BR>&nbsp;Dim say%<BR>&nbsp;&nbsp;&nbsp; Set cnn = CreateObject("ADODB.Connection")<BR>&nbsp;&nbsp;&nbsp; cnn.Open "driver={SQL Server};server=" &amp; Range("b1").Value &amp; ";uid=" &amp; Range("b2").Value &amp; ";pwd=" &amp; Range("b3").Value &amp; ";database=" &amp; Range("b4").Value &amp; ""<BR>&nbsp;&nbsp;&nbsp;&nbsp; Set cmdCommand = CreateObject("ADODB.Command")<BR>&nbsp;&nbsp;&nbsp;&nbsp; Set cmdCommand.ActiveConnection = cnn<BR>&nbsp;&nbsp;&nbsp;&nbsp; sonst = &#091;b65536&#093;.End(3).Row<BR>&nbsp;&nbsp;&nbsp;&nbsp; 'Sat?r Kadar Döngü------------------<BR>&nbsp;&nbsp;&nbsp;&nbsp; For say = 6 To sonst<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtSql = ""<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtSql = vtSql &amp; "UPDATE TBLSTSABIT SET ALIS_FIAT1="<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtSql = vtSql &amp; Replace(Cells(say, 3), ",", ".")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtSql = vtSql &amp; " WHERE STOK_KODU='"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtSql = vtSql &amp; Cells(say, 2)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtSql = vtSql &amp; "' AND SUBE_KODU=" &amp; Cells(say, 1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With cmdCommand<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .CommandText = vtSql<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .CommandType = Adcmdtext<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Execute<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Next say<BR>&nbsp;&nbsp;&nbsp;&nbsp; 'Sat?r Kadar Döngü Sonu------------------<BR>&nbsp;&nbsp;&nbsp;&nbsp; cnn.Close<BR>&nbsp;&nbsp;&nbsp;&nbsp; Set cmdCommand = Nothing<BR>&nbsp;&nbsp;&nbsp;&nbsp; Set cnn = Nothing</DIV><DIV>&nbsp;End Sub</DIV><DIV><BR>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 04 Jun 2009 11:30:26 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post8984.html#8984</guid>
  </item> 
  <item>
   <title><![CDATA[excel den sql 2005 :   ahmetg4 Yazd&#305;:Conari  &amp;#03...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post8980.html#8980</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=483">Conari</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 04&nbsp;Haziran&nbsp;2009 Saat 10:06<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Orjinalini yazan: ahmetg4" alt="Orjinalini yazan: ahmetg4" style="vertical-align: text-bottom;" /> <strong>ahmetg4 Yazdı:</strong><br /><br />Conari <DIV>"<a href="http://rapidshare.com/files/154169456/STSABIT_Update.rar.html" target="_blank"><U><FONT color=#810081>http://rapidshare.com/files/154169456/STSABIT_Update.rar.html</FONT></U></A> " deki kodunu görmeme izin verir misin acaba?</DIV></td></tr></table> <DIV></DIV>Selam, Simdi o dosyaya baktim.<DIV>Sifreyi bir türlü tutturamiyorum <img src="http://www.erpne.org/smileys/smiley19.gif" height="17" width="17" border="0" align="absmiddle" alt="Cry" /></DIV><DIV>yakalarsam bu mesajin altina eklerim.</DIV>]]>
   </description>
   <pubDate>Thu, 04 Jun 2009 10:06:31 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post8980.html#8980</guid>
  </item> 
  <item>
   <title><![CDATA[excel den sql 2005 : conari ; program =microsoft exel...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post8981.html#8981</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=2100">yckn</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 04&nbsp;Haziran&nbsp;2009 Saat 10:04<br /><br /><P>conari ;</P><DIV>program&nbsp;&nbsp;&nbsp; =microsoft exel <BR>isl.sistemi&nbsp;&nbsp; = windows (32 bit) NT 5.01</DIV><DIV>versiyon no =11.0</DIV><DIV>yapim no&nbsp;&nbsp;&nbsp; =8302</DIV><DIV>&nbsp;</DIV><DIV>kodlar çalismiyor.yardimci olursaniz memnun olurum :</DIV><DIV>kolay gelsin </DIV>]]>
   </description>
   <pubDate>Thu, 04 Jun 2009 10:04:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post8981.html#8981</guid>
  </item> 
  <item>
   <title><![CDATA[excel den sql 2005 : excel versiyonunuz nedir. Bir...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post8978.html#8978</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=483">Conari</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 04&nbsp;Haziran&nbsp;2009 Saat 09:55<br /><br /><P>excel versiyonunuz nedir.</P><DIV>Bir yerde hata veriyor. Kodlarda kapali oldugu için bu mesaji veriyor anlasilan ama uygulama çalisiyor normalde.</DIV>]]>
   </description>
   <pubDate>Thu, 04 Jun 2009 09:55:03 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post8978.html#8978</guid>
  </item> 
  <item>
   <title><![CDATA[excel den sql 2005 : conari; STSABIT_Update guzel...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post8976.html#8976</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=2100">yckn</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 03&nbsp;Haziran&nbsp;2009 Saat 19:43<br /><br />conari;<DIV>STSABIT_Update guzel bi çalisma oldugunu tahmin ediyorum.</DIV><DIV>STSABIT_Update.xls server ve sifre dogru girdigim halde hata veiryor.</DIV><DIV>hata -----&nbsp; (compile error in hidden module :Module1)<BR><BR></DIV>]]>
   </description>
   <pubDate>Wed, 03 Jun 2009 19:43:53 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post8976.html#8976</guid>
  </item> 
  <item>
   <title><![CDATA[excel den sql 2005 : Conari &amp;#034;http://rapidshar...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post8928.html#8928</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=589">ahmetg4</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 25&nbsp;Mayıs&nbsp;2009 Saat 14:10<br /><br />Conari<DIV>"<a href="http://rapidshare.com/files/154169456/STSABIT_Update.rar.html" target="_blank"><U><FONT color=#810081>http://rapidshare.com/files/154169456/STSABIT_Update.rar.html</FONT></U></A> " deki kodunu görmeme izin verir misin acaba?</DIV>]]>
   </description>
   <pubDate>Mon, 25 May 2009 14:10:25 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post8928.html#8928</guid>
  </item> 
  <item>
   <title><![CDATA[excel den sql 2005 : http://rapidshare.com/files/15...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post6876.html#6876</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=483">Conari</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 15&nbsp;Ekim&nbsp;2008 Saat 10:50<br /><br /><DIV></DIV><a href="http://rapidshare.com/files/154169456/STSABIT_Update.rar.html" target="_blank">http://rapidshare.com/files/154169456/STSABIT_Update.rar.html</A><DIV>&nbsp;</DIV><DIV>Kodlari ve fiyatlari alt alta yazin.</DIV><DIV>Server ve Sirket ayarlarini yapmayi unutmayin <img src="http://www.erpne.org/smileys/smiley20.gif" height="17" width="23" border="0" align="absmiddle" alt="Thumbs%20Up" /></DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 15 Oct 2008 10:50:12 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post6876.html#6876</guid>
  </item> 
  <item>
   <title><![CDATA[excel den sql 2005 : Selam d&#252;n yazamadim, Stoklariniz...]]></title>
   <link>http://www.erpne.org/excel-den-sql-2005_topic1155_post6871.html#6871</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=483">Conari</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 15&nbsp;Ekim&nbsp;2008 Saat 09:15<br /><br /><P>Selam dün yazamadim,</P><P>Stoklariniz ile ilgili hiç hareket varmidir varsa zaten benim dedigimi yapamazsiniz.</P><DIV>Bir excel hazirlayim size ordan kodlari ve fiyati girip update edersiniz.</DIV>]]>
   </description>
   <pubDate>Wed, 15 Oct 2008 09:15:54 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/excel-den-sql-2005_topic1155_post6871.html#6871</guid>
  </item> 
 </channel>
</rss>