<?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 : Sql de  gariplikler...</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 : Sql de  gariplikler...]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 17 Apr 2026 23:47:15 +0000</pubDate>
  <lastBuildDate>Wed, 16 Jul 2008 13:20:41 +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=1018</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[Sql de  gariplikler... : Evet verdiginiz son function d&#252;zg&#252;n...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6149.html#6149</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=977">hbulus</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 16&nbsp;Temmuz&nbsp;2008 Saat 13:20<br /><br />Evet verdiginiz son function düzgün çalisti. Ama önceki çalismayinca bende kendimce alternatif üretmistim. Tsk.]]>
   </description>
   <pubDate>Wed, 16 Jul 2008 13:20:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6149.html#6149</guid>
  </item> 
  <item>
   <title><![CDATA[Sql de  gariplikler... : excel&amp;#039;deki h&#252;crelere G,S...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6147.html#6147</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=431">mbaykan</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 16&nbsp;Temmuz&nbsp;2008 Saat 12:38<br /><br />excel'deki hücrelere G,S ve I'nin çevrimini hücrelere koymak VBasic açisindan tasinabilirlik zorlugu çikartir. Bu fonksiyonu kullandiginiz her Excel tablosunda Sheet12 isimli bir sayfayi bulundurmak gerekir.<br><br>netsisnedir forum'unda SQL için yazdigim Function bir garip görünüyor, onu düzeltiyorum. Baska arkadaslarin isine yarar umarim.<br><br>CREATE&nbsp;&nbsp;&nbsp; FUNCTION &#091;dbo&#093;.&#091;W2NTRK&#093;(@A NVARCHAR(4000))<br>RETURNS NVARCHAR(4000)&nbsp; <br>AS <br>BEGIN<br>&nbsp; DECLARE @TMP NVARCHAR(4000) <br>&nbsp; SET @TMP = REPLACE(@A , N'~G', N'&#208;')&nbsp; --G (SQL'de yumusak G görüntüsü<br>&nbsp; SET @TMP = REPLACE(@TMP , N'~S', N'&#222;')&nbsp; --S (SQL'de S görüntüsü<br>&nbsp; SET @TMP = REPLACE(@TMP , N'~I', N'&#221;')&nbsp; --I (SQL'de I harfi görüntüsü<br>&nbsp; SET @TMP = REPLACE(@TMP , N'~g', N'&#240;')&nbsp; --g<br>&nbsp; SET @TMP = REPLACE(@TMP , N'~s', N'&#254;')&nbsp; --s<br>&nbsp; SET @TMP = REPLACE(@TMP , N'~i', N'&#253;')&nbsp; --i<br>&nbsp; RETURN @TMP<br>END<br><br>]]>
   </description>
   <pubDate>Wed, 16 Jul 2008 12:38:21 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6147.html#6147</guid>
  </item> 
  <item>
   <title><![CDATA[Sql de  gariplikler... : Sn. Mbaykan sorunu sizin fonksiyonla...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6146.html#6146</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=977">hbulus</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 16&nbsp;Temmuz&nbsp;2008 Saat 12:29<br /><br />Sn. Mbaykan sorunu sizin fonksiyonla oynayarak su sekilde çözdüm;<DIV>&nbsp;</DIV><DIV><FONT color=#ff0000>Public Function esctrk(gstr)<BR>&nbsp;&nbsp;&nbsp; Dim geri As String<BR>&nbsp;&nbsp;&nbsp; geri = gstr<BR>&nbsp;&nbsp;&nbsp; geri = Replace(geri, "G", Sayfa12.Cells(1, 3))<BR>&nbsp;&nbsp;&nbsp; geri = Replace(geri, "S", Sayfa12.Cells(1, 1))<BR>&nbsp;&nbsp;&nbsp; geri = Replace(geri, "I", Sayfa12.Cells(1, 2))<BR>&nbsp;&nbsp;&nbsp; esctrk = geri<BR>End Function</FONT></DIV><DIV><FONT color=#ff0000></FONT>&nbsp;</DIV><DIV><FONT color=#0000ff>1., 2. ve 3. hücrelere<FONT color=#ff0000> </FONT><FONT face=Calibri><strong><FONT color=#ff0000>&THORN;, &Yacute;,&nbsp; &ETH;</FONT></strong> harflerini yerlestirdim ve sizin fonksiyonda replace islemine bu hücreleri soktum.&nbsp; Sonuç harika oldu. Gariptir <FONT color=#ff0000><strong>Ö, Ç ve Ü</strong> </FONT>harflerinde sorun yok sadece <strong><FONT color=#ff0000>I, G ve S</FONT></strong> harflerinde bu gerekiyor. Ilginize çok tesekkür ederim. </FONT></FONT></DIV><DIV><FONT face=Calibri color=#0000ff>Kolay gelsin.</FONT></DIV>]]>
   </description>
   <pubDate>Wed, 16 Jul 2008 12:29:20 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6146.html#6146</guid>
  </item> 
  <item>
   <title><![CDATA[Sql de  gariplikler... : VBA&amp;#039;dan t&#252;rl&#231;e karakterseri...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6144.html#6144</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=431">mbaykan</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 16&nbsp;Temmuz&nbsp;2008 Saat 10:23<br /><br />VBA'dan türlçe karakterseri halledebilmenin yolu ~ (tilda) # yada benzeri bir özel karakteri isaretsiz (GUIiSOC) harflere ekleyerek bunu SQL'e göndermek, SQL'de de W2NTRK fonksiyonu yardimiyla bunlari istediginiz ASCII koda (I için&nbsp;< ="C&#111;ntent-" c&#111;ntent="text/; charset=utf-8">< name="ProgId" c&#111;ntent="Word.">< name="Generator" c&#111;ntent="Microsoft Word 12">< name="Originator" c&#111;ntent="Microsoft Word 12"><a href="file:///C:%5CUsers%5CMBAYKAN%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml" target="_blank"><a href="file:///C:%5CUsers%5CMBAYKAN%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx" target="_blank"><a href="file:///C:%5CUsers%5CMBAYKAN%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml" target="_blank"><!--&#091;if gte mso 9&#093;><> <w:Word>  <w:View>Normal</w:View>  <w:Zoom>0</w:Zoom>  <w:TrackMoves/>  <w:Trackatting/>  <w:Punctuati&#111;nKerning/>  <w:ValidateAgainstSchemas/>  <w:SaveIfInvalid>false</w:SaveIfInvalid>  <w:IgnoreMixedC&#111;ntent>false</w:IgnoreMixedC&#111;ntent>  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>  <w:D&#111;notPromoteQF/>  <w:LidThemeOther>EN-US</w:LidThemeOther>  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>  <w:LidThemeComplex>X-NONE</w:LidThemeComplex>  <w:Compatibility>   <w:BreakWrappedTables/>   <w:SnapToGridInCell/>   <w:WrapTextWithPunct/>   <w:UseAsianBreakRules/>   <w:D&#111;ntGrowAutofit/>   <w:SplitPgBreakAndark/>   <w:D&#111;ntVertAlignCellWithSp/>   <w:D&#111;ntBreakC&#111;nstrainedForcedTables/>   <w:D&#111;ntVertAlignInTxbx/>   <w:Word11KerningPairs/>   <w:CachedColBalance/>  </w:Compatibility>  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>  <m:mathPr>   <m:mathFont m:val="Cambria Math"/>   <m:brkBin m:val="before"/>   <m:brkBinSub m:val="&#45;-"/>   <m:smallFrac m:val="off"/>   <m:dispDef/>   <m:lMargin m:val="0"/>   <m:rMargin m:val="0"/>   <m:defJc m:val="centerGroup"/>   <m:wrapIndent m:val="1440"/>   <m:intLim m:val="subSup"/>   <m:naryLim m:val="undOvr"/>  </m:mathPr></w:Word></><!&#091;endif&#093;--><!--&#091;if gte mso 9&#093;><> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"  DefSemi="true" DefQat="false" DefPriority="99"  LatentStyleCount="267">  <w:LsdExcepti&#111;n Locked="false" Priority="0" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Normal"/>  <w:LsdExcepti&#111;n Locked="false" Priority="9" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="ing 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="9" Qat="true" Name="ing 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="9" Qat="true" Name="ing 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="9" Qat="true" Name="ing 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="9" Qat="true" Name="ing 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="9" Qat="true" Name="ing 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="9" Qat="true" Name="ing 7"/>  <w:LsdExcepti&#111;n Locked="false" Priority="9" Qat="true" Name="ing 8"/>  <w:LsdExcepti&#111;n Locked="false" Priority="9" Qat="true" Name="ing 9"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Name="toc 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Name="toc 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Name="toc 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Name="toc 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Name="toc 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Name="toc 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Name="toc 7"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Name="toc 8"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Name="toc 9"/>  <w:LsdExcepti&#111;n Locked="false" Priority="35" Qat="true" Name="capti&#111;n"/>  <w:LsdExcepti&#111;n Locked="false" Priority="10" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Title"/>  <w:LsdExcepti&#111;n Locked="false" Priority="1" Name="Default Paragraph Font"/>  <w:LsdExcepti&#111;n Locked="false" Priority="11" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Subtitle"/>  <w:LsdExcepti&#111;n Locked="false" Priority="22" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Str&#111;ng"/>  <w:LsdExcepti&#111;n Locked="false" Priority="20" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Emphasis"/>  <w:LsdExcepti&#111;n Locked="false" Priority="59" Semi="false"   UnhideWhenUsed="false" Name="Table Grid"/>  <w:LsdExcepti&#111;n Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>  <w:LsdExcepti&#111;n Locked="false" Priority="1" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="No Spacing"/>  <w:LsdExcepti&#111;n Locked="false" Priority="60" Semi="false"   UnhideWhenUsed="false" Name="Light Shading"/>  <w:LsdExcepti&#111;n Locked="false" Priority="61" Semi="false"   UnhideWhenUsed="false" Name="Light List"/>  <w:LsdExcepti&#111;n Locked="false" Priority="62" Semi="false"   UnhideWhenUsed="false" Name="Light Grid"/>  <w:LsdExcepti&#111;n Locked="false" Priority="63" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="64" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="65" Semi="false"   UnhideWhenUsed="false" Name="Medium List 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="66" Semi="false"   UnhideWhenUsed="false" Name="Medium List 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="67" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="68" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="69" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="70" Semi="false"   UnhideWhenUsed="false" Name="Dark List"/>  <w:LsdExcepti&#111;n Locked="false" Priority="71" Semi="false"   UnhideWhenUsed="false" Name="Colorful Shading"/>  <w:LsdExcepti&#111;n Locked="false" Priority="72" Semi="false"   UnhideWhenUsed="false" Name="Colorful List"/>  <w:LsdExcepti&#111;n Locked="false" Priority="73" Semi="false"   UnhideWhenUsed="false" Name="Colorful Grid"/>  <w:LsdExcepti&#111;n Locked="false" Priority="60" Semi="false"   UnhideWhenUsed="false" Name="Light Shading Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="61" Semi="false"   UnhideWhenUsed="false" Name="Light List Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="62" Semi="false"   UnhideWhenUsed="false" Name="Light Grid Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="63" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="64" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="65" Semi="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" UnhideWhenUsed="false" Name="Revisi&#111;n"/>  <w:LsdExcepti&#111;n Locked="false" Priority="34" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="List Paragraph"/>  <w:LsdExcepti&#111;n Locked="false" Priority="29" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Quote"/>  <w:LsdExcepti&#111;n Locked="false" Priority="30" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Intense Quote"/>  <w:LsdExcepti&#111;n Locked="false" Priority="66" Semi="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="67" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="68" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="69" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="70" Semi="false"   UnhideWhenUsed="false" Name="Dark List Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="71" Semi="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="72" Semi="false"   UnhideWhenUsed="false" Name="Colorful List Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="73" Semi="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>  <w:LsdExcepti&#111;n Locked="false" Priority="60" Semi="false"   UnhideWhenUsed="false" Name="Light Shading Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="61" Semi="false"   UnhideWhenUsed="false" Name="Light List Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="62" Semi="false"   UnhideWhenUsed="false" Name="Light Grid Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="63" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="64" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="65" Semi="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="66" Semi="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="67" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="68" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="69" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="70" Semi="false"   UnhideWhenUsed="false" Name="Dark List Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="71" Semi="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="72" Semi="false"   UnhideWhenUsed="false" Name="Colorful List Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="73" Semi="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>  <w:LsdExcepti&#111;n Locked="false" Priority="60" Semi="false"   UnhideWhenUsed="false" Name="Light Shading Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="61" Semi="false"   UnhideWhenUsed="false" Name="Light List Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="62" Semi="false"   UnhideWhenUsed="false" Name="Light Grid Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="63" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="64" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="65" Semi="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="66" Semi="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="67" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="68" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="69" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="70" Semi="false"   UnhideWhenUsed="false" Name="Dark List Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="71" Semi="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="72" Semi="false"   UnhideWhenUsed="false" Name="Colorful List Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="73" Semi="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>  <w:LsdExcepti&#111;n Locked="false" Priority="60" Semi="false"   UnhideWhenUsed="false" Name="Light Shading Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="61" Semi="false"   UnhideWhenUsed="false" Name="Light List Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="62" Semi="false"   UnhideWhenUsed="false" Name="Light Grid Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="63" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="64" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="65" Semi="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="66" Semi="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="67" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="68" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="69" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="70" Semi="false"   UnhideWhenUsed="false" Name="Dark List Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="71" Semi="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="72" Semi="false"   UnhideWhenUsed="false" Name="Colorful List Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="73" Semi="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>  <w:LsdExcepti&#111;n Locked="false" Priority="60" Semi="false"   UnhideWhenUsed="false" Name="Light Shading Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="61" Semi="false"   UnhideWhenUsed="false" Name="Light List Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="62" Semi="false"   UnhideWhenUsed="false" Name="Light Grid Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="63" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="64" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="65" Semi="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="66" Semi="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="67" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="68" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="69" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="70" Semi="false"   UnhideWhenUsed="false" Name="Dark List Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="71" Semi="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="72" Semi="false"   UnhideWhenUsed="false" Name="Colorful List Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="73" Semi="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>  <w:LsdExcepti&#111;n Locked="false" Priority="60" Semi="false"   UnhideWhenUsed="false" Name="Light Shading Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="61" Semi="false"   UnhideWhenUsed="false" Name="Light List Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="62" Semi="false"   UnhideWhenUsed="false" Name="Light Grid Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="63" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="64" Semi="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="65" Semi="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="66" Semi="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="67" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="68" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="69" Semi="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="70" Semi="false"   UnhideWhenUsed="false" Name="Dark List Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="71" Semi="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="72" Semi="false"   UnhideWhenUsed="false" Name="Colorful List Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="73" Semi="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>  <w:LsdExcepti&#111;n Locked="false" Priority="19" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Subtle Emphasis"/>  <w:LsdExcepti&#111;n Locked="false" Priority="21" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Intense Emphasis"/>  <w:LsdExcepti&#111;n Locked="false" Priority="31" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Subtle Reference"/>  <w:LsdExcepti&#111;n Locked="false" Priority="32" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Intense Reference"/>  <w:LsdExcepti&#111;n Locked="false" Priority="33" Semi="false"   UnhideWhenUsed="false" Qat="true" Name="Book Title"/>  <w:LsdExcepti&#111;n Locked="false" Priority="37" Name="Bibliography"/>  <w:LsdExcepti&#111;n Locked="false" Priority="39" Qat="true" Name="TOC ing"/> </w:LatentStyles></><!&#091;endif&#093;--><><!-- /* Font Definiti&#111;ns */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-at:other; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;}@font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:162; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definiti&#111;ns */ p.Ms&#111;normal, li.Ms&#111;normal, div.Ms&#111;normal {mso-style-unhide:no; mso-style-qat:yes; mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; mso-paginati&#111;n:widow-orphan; font-size:12.0pt; font-family:"Times New Roman","serif"; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin;}.MsoChpDefault {mso-style-:ex-&#111;nly; mso-default-props:yes; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi;}@page Secti&#111;n1 {size:612.0pt 792.0pt; margin:70.85pt 70.85pt 70.85pt 70.85pt; mso-er-margin:36.0pt; mso-footer-margin:36.0pt; mso-paper-source:0;}div.Secti&#111;n1 {page:Secti&#111;n1;}--><!--&#091;if gte mso 10&#093;><> /* Style Definitions */ table.MsoNormalTable	{mso-style-name:"Table Normal";	mso-tstyle-rowband-size:0;	mso-tstyle-colband-size:0;	mso-style-noshow:yes;	mso-style-priority:99;	mso-style-qformat:yes;	mso-style-parent:"";	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;	mso-para-margin:0cm;	mso-para-margin-bottom:.0001pt;	mso-pagination:widow-orphan;	font-size:11.0pt;	font-family:"Calibri","sans-serif";	mso-ascii-font-family:Calibri;	mso-ascii-theme-font:minor-latin;	mso-fareast-font-family:"Times New Roman";	mso-fareast-theme-font:minor-fareast;	mso-hansi-font-family:Calibri;	mso-hansi-theme-font:minor-latin;}<!&#091;endif&#093;--><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: red;">&#221;</span>) gibi dönüstürmemiz gerekiyor. (Simge Bilgiislemden Tarik arkadasimizin buldugu ve bana önerdigi çözüm bu.)<br><br>]]>
   </description>
   <pubDate>Wed, 16 Jul 2008 10:23:26 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6144.html#6144</guid>
  </item> 
  <item>
   <title><![CDATA[Sql de  gariplikler... :   mbaykan Yazd&#305;:  Public Function...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6143.html#6143</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=977">hbulus</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 16&nbsp;Temmuz&nbsp;2008 Saat 10:02<br /><br /><DIV><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Orjinalini yazan: mbaykan" alt="Orjinalini yazan: mbaykan" style="vertical-align: text-bottom;" /> <strong>mbaykan Yazdı:</strong><br /><br /></DIV><DIV>&nbsp;</DIV><DIV><FONT color=#0000ff>Public Function esctrk(gstr)<BR>&nbsp;&nbsp;&nbsp; Dim geri As String<BR>&nbsp;&nbsp;&nbsp; geri = gstr<BR>&nbsp;&nbsp;&nbsp; geri = Replace(geri, "G", "~G")<BR>&nbsp;&nbsp;&nbsp; geri = Replace(geri, "S", "~S")<BR>&nbsp;&nbsp;&nbsp; geri = Replace(geri, "I", "~I")<BR>&nbsp;&nbsp;&nbsp; geri = Replace(geri, "g", "~g")<BR>&nbsp;&nbsp;&nbsp; geri = Replace(geri, "s", "~s")<BR>&nbsp;&nbsp;&nbsp; geri = Replace(geri, "i", "~i")<BR>&nbsp;&nbsp;&nbsp; esctrk = geri<BR>End Function<BR></FONT></DIV><DIV><DIV><FONT color=#0000ff size=2><FONT color=#0000ff size=2></FONT></FONT></DIV></td></tr></table> </DIV><P>Ilginç bir durum. Bunu bilmiyordum. Sn. mbaykan'in gönderdigi fonksiyonda </P><DIV><FONT color=#0000ff>geri = Replace(geri, "I", "~I" </FONT>satirindaki <FONT color=#ff0000>I</FONT> harfini "<FONT color=#ff0000>~I</FONT>" yerine "<FONT color=#ff0000>&Yacute;</FONT>" ile degistirmek istedim ama bir türlü olmuyor. Yani VBA da Word'deki gibi hem Türkçe hem de diger dilleri yanyana kullanamiyorum. Yapistirdigim zaman " <FONT color=#ff0000>?</FONT> " isareti çikiyor. Halbuki bunu becerirsek olay düzelecek.</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 16 Jul 2008 10:02:28 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6143.html#6143</guid>
  </item> 
  <item>
   <title><![CDATA[Sql de  gariplikler... : Profellerdan olusturdugunuz ve...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6141.html#6141</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=483">Conari</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 16&nbsp;Temmuz&nbsp;2008 Saat 08:39<br /><br />Profellerdan olusturdugunuz ve çekilen sql cümlesine bakin where den sonrasi nasil gidiyor?]]>
   </description>
   <pubDate>Wed, 16 Jul 2008 08:39:29 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6141.html#6141</guid>
  </item> 
  <item>
   <title><![CDATA[Sql de  gariplikler... : Sql server&amp;#039;da dediginiz islemi...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6140.html#6140</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=977">hbulus</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 15&nbsp;Temmuz&nbsp;2008 Saat 19:01<br /><br /><P>Sql server'da dediginiz islemi yapmamistim. Simdi uyariniz üzerine yaptim. Exceldeki hata gerçektende kalkti. Ama sonuçlar yine ayni. Ben bir sey anlamadim bu isten. excel de denedigim sonuç vermeyen cari kodlari Netsis üzerinde deneyerek bakiyorum gerçekten hareket yok mu diye ama nafile. Where blogunu kaldirdigim zaman tüm hareketleri döküyor, o cari kodlari burada problemsiz (dogal olarak) döküyor. </P>]]>
   </description>
   <pubDate>Tue, 15 Jul 2008 19:01:51 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6140.html#6140</guid>
  </item> 
  <item>
   <title><![CDATA[Sql de  gariplikler... : Merhaba; vba i&#231;inde ekrandan...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6139.html#6139</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=1297">SERHAT</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 15&nbsp;Temmuz&nbsp;2008 Saat 19:01<br /><br /><P>Merhaba;</P><DIV></DIV>vba içinde ekrandan alinan deger için aramada problem yasiyorum.<DIV>TBLCASABIT.CARI_ISIM Like '" &amp; Trim(txtad) &amp; "%" &amp; "' " için örnek verecek isek</DIV><DIV>mesela 'SERIF%' ile baslayan için getirmemektedir latin'den dolayi. S = &THORN; ,I=&Yacute; olmasi gerekmekte, function için vba editürü içinde latin harfini kabül etmediginden replace yapamamaktayim. Bu konu da yardimci olabilirmisiniz.Tesekkürler.</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 15 Jul 2008 19:01:42 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6139.html#6139</guid>
  </item> 
  <item>
   <title><![CDATA[Sql de  gariplikler... : Aldiginiz hatayi CREATE FUNCTION...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6138.html#6138</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=431">mbaykan</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 15&nbsp;Temmuz&nbsp;2008 Saat 18:10<br /><br />Aldiginiz hatayi <br>CREATE FUNCTION ile baslayan satirlari Query Analyzer'da çalistirdiniz ve W2NTRK fonksiyonunu olusturtunuz degil mi? <br>Bu fonksiyon Netsis'in TRK fonksiyonuna benzer. çalistiginiz database'de olusturulmalidir.<br>VBA'da kullanirken<br>... <font color="#000099">.dbo.W2NTRK('</font>"+esctrk(<i>&lt;metin&gt;</i>)+"<font color="#0000cc">')</font> ...<br>mavi renkli parantezlerin önünde ve arkasinda (açarken/kapatirken) tektirnak (') <br>-parantez isareti yok-<br>]]>
   </description>
   <pubDate>Tue, 15 Jul 2008 18:10:37 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6138.html#6138</guid>
  </item> 
  <item>
   <title><![CDATA[Sql de  gariplikler... : Asagidaki gibi bir hata verdi; &amp;#034;Run-time...]]></title>
   <link>http://www.erpne.org/sql-de-gariplikler_topic1018_post6137.html#6137</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://www.erpne.org/member_profile.asp?PF=977">hbulus</a><br /><strong>Konu:</strong> 1018<br /><strong>Gönderim Zamanı:</strong> 15&nbsp;Temmuz&nbsp;2008 Saat 17:47<br /><br /><P><FONT color=#ff0000>Asagidaki gibi bir hata verdi;</P><DIV><FONT color=#0000ff>"Run-time error....</FONT></DIV><DIV><FONT color=#0000ff>cannot find either column '''' or the user-defined function or aggregate "dbo.W2NTRK", or the name is ambiguous."</FONT></DIV><DIV>&nbsp;</DIV></FONT>]]>
   </description>
   <pubDate>Tue, 15 Jul 2008 17:47:41 +0000</pubDate>
   <guid isPermaLink="true">http://www.erpne.org/sql-de-gariplikler_topic1018_post6137.html#6137</guid>
  </item> 
 </channel>
</rss>