<?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>SQL Server &#8211; Kobijet</title>
	<atom:link href="https://www.kobijet.com.tr/kobijet-bilgi-bankasi/category/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kobijet.com.tr</link>
	<description>kobiler için komple çözümler</description>
	<lastBuildDate>Tue, 26 Aug 2025 13:39:21 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.8</generator>

<image>
	<url>https://www.kobijet.com.tr/wp-content/uploads/2022/08/cropped-site-favicon-32x32.png</url>
	<title>SQL Server &#8211; Kobijet</title>
	<link>https://www.kobijet.com.tr</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Hızlı Ürünleri Çekme Kodu</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/hizli-urunleri-cekme-kodu/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Wed, 13 Mar 2024 10:15:34 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=1734</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<pre class="wp-block-code"><code>
SELECT        
    Stoklar.UrunAdi, 
    Stoklar.UrunSatisFiyati, 
    '' AS Grp, 
    '' AS StokId, 
    HizliUrunGruplari.GrupAdi
FROM           
    HizliUrunler  
INNER JOIN
    HizliUrunGruplari ON HizliUrunler.Grp = HizliUrunGruplari.id 
INNER JOIN
    Stoklar ON HizliUrunler.Urunid = Stoklar.id</code></pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>VERİ TABANINDA MÜKERRER BULMA VE SİLME</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/veri-tabaninda-mukerrek-bulma-ve-silme/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Fri, 16 Feb 2024 13:43:57 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=1712</guid>

					<description><![CDATA[1-) MÜKERRER KAYIT BULMA 2-)MÜKERRER KAYIT SİLME]]></description>
										<content:encoded><![CDATA[
<p>1-) MÜKERRER KAYIT BULMA</p>



<div class="wp-block-group is-layout-constrained wp-block-group-is-layout-constrained"><div class="wp-block-group__inner-container">
<pre class="wp-block-code"><code>use kobijet_2024
select barkod from stoklar group by barkod havıng count (*)>1
</code></pre>
</div></div>



<p>2-)MÜKERRER KAYIT SİLME</p>



<pre class="wp-block-code"><code>
use kobijet_2024
WITH DuplicateCTE AS (
    SELECT
        BARKOD,
        ROW_NUMBER() OVER (PARTITION BY Barkod ORDER BY (SELECT NULL)) AS RowNumber
    FROM
        Stoklar
)
DELETE FROM DuplicateCTE WHERE RowNumber > 1;</code></pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>SQL Server Management Studio 2018</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/sql-server-management-studio-2018/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Thu, 21 Sep 2023 08:20:57 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=1671</guid>

					<description><![CDATA[SQL Server 19 indirmek için tıklayın 1-)1-İndirmiş olduğumuz SQL2019-SSEI-Expr Çalıştırılır. 2-) Setup işleminde karşımıza gelen seçeneklerden Basic Seçeneğini seçelim. 3-)  Sistem dilimiz Türkçe ise karşımıza gelen uyarıya &#8220;yes&#8221; seçeneğini seçerek karşılık verelim. Ardından &#8220;Accept&#8221; ile bir sonraki ekrana geçelim. 4-)  Bir sonraki işlemde SQL Server&#8217;ın kurulacağı dizini seçmemiz gerekecektir. Bu dizin sizin<a class="moretag" href="https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/sql-server-management-studio-2018/"> Devamı&#8230;</a>]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.microsoft.com/en-US/download/details.aspx?id=101064" data-type="URL" data-id="https://www.microsoft.com/en-US/download/details.aspx?id=101064" target="_blank" rel="noreferrer noopener">SQL Server 19 indirmek için tıklayın</a></p>



<figure class="wp-block-table"><table><tbody><tr><td><strong>1-)</strong>1-İndirmiş olduğumuz SQL2019-SSEI-Expr Çalıştırılır.</td></tr><tr><td><strong>2-)</strong> Setup işleminde karşımıza gelen seçeneklerden Basic Seçeneğini seçelim.<br></td></tr></tbody></table></figure>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="730" height="557" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-23.png" alt="" class="wp-image-1689" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-23.png 730w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-23-300x229.png 300w" sizes="(max-width: 730px) 100vw, 730px" /></figure>



<p><strong>3-)</strong>  Sistem dilimiz Türkçe ise karşımıza gelen uyarıya &#8220;yes&#8221; seçeneğini seçerek karşılık verelim. Ardından &#8220;Accept&#8221; ile bir sonraki ekrana geçelim.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="714" height="544" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-22.png" alt="" class="wp-image-1688" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-22.png 714w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-22-300x229.png 300w" sizes="(max-width: 714px) 100vw, 714px" /></figure>



<figure class="wp-block-image size-large"><img decoding="async" width="731" height="554" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-21.png" alt="" class="wp-image-1687" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-21.png 731w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-21-300x227.png 300w" sizes="(max-width: 731px) 100vw, 731px" /></figure>



<p><strong>4-)</strong>  Bir sonraki işlemde SQL Server&#8217;ın kurulacağı dizini seçmemiz gerekecektir. Bu dizin sizin veritabanlarınızın kopyasını tutacağından, disk boyutunun yüksek olmasına dikkat edelim. Minimum Boş alan 6.5 GB olması gerekmektedir. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="717" height="546" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-20.png" alt="" class="wp-image-1686" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-20.png 717w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-20-300x228.png 300w" sizes="(max-width: 717px) 100vw, 717px" /></figure>



<p><strong>5-)</strong>  Install seçeneğine tıkladıktan sonra, SQL Server&#8217;ı indirecektir. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="733" height="565" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-19.png" alt="" class="wp-image-1685" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-19.png 733w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-19-300x231.png 300w" sizes="(max-width: 733px) 100vw, 733px" /></figure>



<p><strong>6-)</strong>  İndirme sonrasında, kurulum aşamasına aynı ekranda geçecektir. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="715" height="552" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-18.png" alt="" class="wp-image-1684" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-18.png 715w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-18-300x232.png 300w" sizes="(max-width: 715px) 100vw, 715px" /></figure>



<p><strong>7-)</strong>  İşlem bittikten sonra otomatik olarak karşımıza açılan ekranda, Connection String (Bağlantı cümleciği) ve versiyon bilgileri çıkacaktır. Install SSMS seçeneği tıklanır ise Management Studio indirilmesi için sizleri bir linke yönlendirecektir. Üstte paylaşılmış olan ise indirme linkinin kısayoludur. Direkt olarak çalıştırabilirsiniz. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="725" height="558" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-17.png" alt="" class="wp-image-1683" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-17.png 725w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-17-300x231.png 300w" sizes="(max-width: 725px) 100vw, 725px" /></figure>



<p><strong><img src="https://s.w.org/images/core/emoji/14.0.0/72x72/1f60e.png" alt="😎" class="wp-smiley" style="height: 1em; max-height: 1em;" /></strong>  Management studio kurulum ekranında ilk açılış ekranında, kurulum yapılacak dizinin seçilmesi gerekmektedir.  Standardına göre SQL Server&#8217;ın kurulu olduğu diske kurulması tercih sebebi olmaktadır. Kurulum dizini seçildikten sonra Install seçeneği ile devam edelim. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="598" height="516" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-16.png" alt="" class="wp-image-1682" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-16.png 598w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-16-300x259.png 300w" sizes="(max-width: 598px) 100vw, 598px" /></figure>



<p><strong>9-)</strong>  Kurulum tamamlandığında aşağıda görmüş olduğunuz ekran sizleri karşılayacaktır. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="603" height="511" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-15.png" alt="" class="wp-image-1681" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-15.png 603w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-15-300x254.png 300w" sizes="(max-width: 603px) 100vw, 603px" /></figure>



<p><strong>10-)</strong>  Kurulum tamamlandıktan  sonra Management Studio çalıştırılır.  Başlat > &#8220;Management Studio&#8221; yazmanız yeterlidir.  Karşımıza gelen ekranda, Veri tabanın tutulacağı Server ismini ve türünü seçmemiz gerekmektedir.  Direkt olarak Windows Authentication seçeneği ile giriş sağlanabilir (Windows User modunda bağlanılır.)</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="739" height="397" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-14.png" alt="" class="wp-image-1680" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-14.png 739w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-14-300x161.png 300w" sizes="(max-width: 739px) 100vw, 739px" /></figure>



<p><strong>11-)</strong>  Server Name bölümündeki ok tıklanır ve &#8220;Browse for more&#8221; seçeneği seçilir. </p>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" decoding="async" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-13.png" alt="" class="wp-image-1679" width="746" height="352" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-13.png 628w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-13-300x141.png 300w" sizes="(max-width: 746px) 100vw, 746px" /></figure>



<p><strong>12-)</strong>  Karşımıza açılan ekrandan Database Engine (Veritabanı motoru) bölümünden kurulumu sağladığımız instance seçimi yapılır. <strong>(SQLExpress)</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="576" height="443" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-12.png" alt="" class="wp-image-1678" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-12.png 576w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-12-300x231.png 300w" sizes="(max-width: 576px) 100vw, 576px" /></figure>



<p><strong>13-)</strong>&nbsp; Seçim sağlandıktan sonra OK butonu ile işleme devam edilir.&nbsp;</p>



<p><strong>14-)</strong>  Seçim sağlandıktan sonra bağlantıyı sağlayalım.  İlk giriş ekranında işlem olarak  &#8220;sa&#8221;(System Admin) kullanıcısını aktif edip şifresini belirlememiz gerekiyor. sol kısımdan Security >Logins > sa kullanıcısına sağ tıklanır ve properties seçeneği seçilir. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="634" height="577" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-11.png" alt="" class="wp-image-1677" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-11.png 634w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-11-300x273.png 300w" sizes="(max-width: 634px) 100vw, 634px" /></figure>



<p><strong>15-)</strong>  Öncelikle sol kısımda bulunan Status bölümünden &#8220;Enabled&#8221; seçeneği seçilmelidir. Ardından &#8220;General&#8221; sekmesinden Password bölümünden şifrenizi belirleyin ve OK butonuna basınız.</p>



<p><strong>not</strong>: sa şifresi 123321az yapınız</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="666" height="646" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-10.png" alt="" class="wp-image-1676" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-10.png 666w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-10-300x291.png 300w" sizes="(max-width: 666px) 100vw, 666px" /></figure>



<p><strong>16-)</strong>&nbsp; Yukardaki işlem yapıldıktan sonra Sistem yeniden başlatılır. Sistem açıldıktan sonra Management Studio tekrar çalıştırılıp giriş sağlanır.&nbsp;</p>



<p><strong>17-)</strong>  Giriş sağlandığında Object Explorer bölümünde (Sol kısımda) En üstte bulunan kısıma sağ tıklanır ve Properties seçeneği seçilir. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="679" height="572" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-9.png" alt="" class="wp-image-1675" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-9.png 679w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-9-300x253.png 300w" sizes="(max-width: 679px) 100vw, 679px" /></figure>



<p><strong>18-)</strong>  Security bölümünden  &#8220;SQL Server and Windows Authentication mode&#8221; seçeneği seçilir.  Ve Ok butonu ile işlem tamamlanır. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="604" height="593" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-8.png" alt="" class="wp-image-1674" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-8.png 604w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-8-300x295.png 300w" sizes="(max-width: 604px) 100vw, 604px" /></figure>



<p><strong>19-)</strong>  Yine aynı  seçeneğe sağ tıklanarak &#8220;Register&#8221; seçimi sağlanır. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="663" height="684" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-7.png" alt="" class="wp-image-1673" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-7.png 663w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-7-291x300.png 291w" sizes="(max-width: 663px) 100vw, 663px" /></figure>



<p><strong>20-)</strong>  Karşımıza gelen ekrandan Server Name bölümünden girişi sağladığımız server ismi yazılır (SQLExpress) Authentication SQL Server Authentication seçimi yapılır. &#8220;sa&#8221; kullanıcı adı  ve şifre yazılıp kaydedilir. </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="695" height="744" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2023/09/image-6.png" alt="" class="wp-image-1672" srcset="https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-6.png 695w, https://www.kobijet.com.tr/wp-content/uploads/2023/09/image-6-280x300.png 280w" sizes="(max-width: 695px) 100vw, 695px" /></figure>



<p><strong>21-)</strong>  İşlem tamamlanmıştır,  Kontrol paneli çalıştırıken Ek bilgiler bölümünden server ismi seçilerek, sa ile belirlediğiniz şifreyi girip veritabanlarınızı sql olarak kullanabilirsiniz. <br></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>SQL SERVER MSDB veya MASTER DB Hatasını düzeltmek için (sql server başlatılamıyor veya veritabanları gelmiyor)</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/sql-server-msdb-veya-master-db-hatasini-duzeltmek-icin-sql-server-baslatilamiyor-veya-veritabanlari-gelmiyor/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Fri, 18 Nov 2022 13:39:33 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=1455</guid>

					<description><![CDATA[C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\SQLServer2014 klasöründe komut penceresi açılır. komut penceresi yoksa powershell açıp içine cmd yazın entere tıklayın 2) Açılan komut penceresine aşağıdaki kod girilir. setup.exe /QUIET /ACTION=REBUILDDATABASE /INSTANCENAME=MSSQLSERVER /SQLSYSADMINACCOUNTS=windows kullanıcı adı /SAPWD=123321az ve enter  a tıklanır İşleminiz &#160;tamamlanmıştır]]></description>
										<content:encoded><![CDATA[
<ol type="1"><li>C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\SQLServer2014 klasöründe komut penceresi açılır.</li></ol>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="852" height="790" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/11/image-16.png" alt="" class="wp-image-1456" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/11/image-16.png 852w, https://www.kobijet.com.tr/wp-content/uploads/2022/11/image-16-300x278.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/11/image-16-768x712.png 768w" sizes="(max-width: 852px) 100vw, 852px" /></figure>



<p>komut penceresi yoksa powershell açıp içine cmd yazın entere tıklayın</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="945" height="131" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/11/image-17.png" alt="" class="wp-image-1457" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/11/image-17.png 945w, https://www.kobijet.com.tr/wp-content/uploads/2022/11/image-17-300x42.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/11/image-17-768x106.png 768w" sizes="(max-width: 945px) 100vw, 945px" /></figure>



<p>2) Açılan komut penceresine aşağıdaki kod girilir.</p>



<p><strong>setup.exe /QUIET /ACTION=REBUILDDATABASE /INSTANCENAME=MSSQLSERVER /SQLSYSADMINACCOUNTS=windows kullanıcı adı /SAPWD=123321az</strong></p>



<p><strong>ve enter  a tıklanır</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="945" height="151" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/11/image-18.png" alt="" class="wp-image-1458" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/11/image-18.png 945w, https://www.kobijet.com.tr/wp-content/uploads/2022/11/image-18-300x48.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/11/image-18-768x123.png 768w" sizes="(max-width: 945px) 100vw, 945px" /></figure>



<p><strong>İşleminiz &nbsp;tamamlanmıştır</strong></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Sql Server Kobijet Kullanıcısı oluşturma</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/sql-server-kobijet-kullanicisi-olusturma/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Sat, 01 Oct 2022 11:35:38 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=1392</guid>

					<description><![CDATA[Not: işlemlere başlamadan önce aşağıdaki kodu kopyalayınız 1- sql serveri açıyoruz 2- gelen ekrana connect diyoruz 3- new query e tıkılıyoruz 4- kodumuzu yapıştırıyoruz execute tıkladıktan sonra işlemlerimiz bitmiştir.]]></description>
										<content:encoded><![CDATA[
<p><strong>Not: işlemlere başlamadan önce aşağıdaki kodu kopyalayınız</strong></p>



<div class="hcb_wrap"><pre class="prism line-numbers lang-sql" data-lang="SQL"><code>USE [master]
GO

CREATE LOGIN [kobijet] WITH PASSWORD=N&#39;123321az&#39;, 
DEFAULT_DATABASE=[master], DEFAULT_LANGUAGE=[us_english], 
CHECK_EXPIRATION=OFF, CHECK_POLICY=ON
GO

ALTER SERVER ROLE [sysadmin] ADD MEMBER [kobijet]
GO

ALTER LOGIN [kobijet] ENABLE
GO</code></pre></div>



<p>1- sql serveri açıyoruz</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="773" height="555" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/10/image.png" alt="" class="wp-image-1393" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/10/image.png 773w, https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-300x215.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-768x551.png 768w" sizes="(max-width: 773px) 100vw, 773px" /></figure>



<p>2- gelen ekrana connect diyoruz</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="526" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/10/image-1-1024x526.png" alt="" class="wp-image-1394" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-1-1024x526.png 1024w, https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-1-300x154.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-1-768x395.png 768w, https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-1.png 1181w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>3- new query e tıkılıyoruz</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="785" height="434" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/10/image-2.png" alt="" class="wp-image-1395" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-2.png 785w, https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-2-300x166.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-2-768x425.png 768w" sizes="(max-width: 785px) 100vw, 785px" /></figure>



<p>4- kodumuzu yapıştırıyoruz</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="809" height="387" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/10/image-3.png" alt="" class="wp-image-1396" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-3.png 809w, https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-3-300x144.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/10/image-3-768x367.png 768w" sizes="(max-width: 809px) 100vw, 809px" /></figure>



<p>execute tıkladıktan sonra işlemlerimiz bitmiştir.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Toplu stok hatası çözümü</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/toplu-stok-hatasi-cozumu/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Wed, 14 Sep 2022 12:03:43 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=1385</guid>

					<description><![CDATA[aşağıdaki kodu çalıştırdığınızda düzelecektir İŞLEMLER: 1-)&#160;SQL Server 2014 Management Studio&#160;UYGULAMASINI ÇALIŞTIRIYORUZ. 2-) SQL E GİRİŞ YAPIYORUZ. 3-) LOGİN KISMINA&#160;&#160;sa&#160;&#160;PASSWORD KISMINA İSE&#160;&#160;12321az&#160;YAZIYORUZ. ARDINDAN CONNECT BUTONUNA BASARAK SQL ‘E GİRİŞ YAPIYORUZ. 4-) GELEN EKRANDA&#160;NEW QUERY&#160;BUTONUNA TIKLIYORUZ. 5-) ARDINDAN GELEN BOŞ SAYFAYA İLK BÖLÜMDE PAYLAŞTIĞIMIZ KODLARDAN GEREKLİ OLANI KOPYALAYIP YAPIŞTIRIYORUZ. İLK SATIRA KULLANILAN<a class="moretag" href="https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/toplu-stok-hatasi-cozumu/"> Devamı&#8230;</a>]]></description>
										<content:encoded><![CDATA[
<p><strong>aşağıdaki kodu çalıştırdığınızda düzelecektir</strong></p>



<div class="hcb_wrap"><pre class="prism line-numbers lang-sql" data-lang="SQL"><code>USE [kobijetdata]
GO

DROP TABLE [dbo].[StoklarTEMP]
GO

SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO



CREATE TABLE [dbo].[StoklarTEMP](
	[Realid] [int] IDENTITY(1,1) NOT NULL,
	[id] [int] NOT NULL,
	[UrunKayitTarihi] [datetime] NULL,
	[StokGrubuid] [int] NULL,
	[UrunAdi] [nvarchar](200) NULL,
	[UrunAciklamasi] [nvarchar](200) NULL,
	[UrunAlisFiyati] [money] NULL,
	[UrunSatisFiyati] [money] NULL,
	[UrunIsk] [money] NULL,
	[UrunIsk2] [money] NULL,
	[UrunIsk3] [money] NULL,
	[Barkod] [nvarchar](50) NULL,
	[MuadilBarkod] [nvarchar](2500) NULL,
	[KDV] [smallint] NULL,
	[Ozel1] [nvarchar](200) NULL,
	[Ozel2] [nvarchar](200) NULL,
	[Ozel3] [nvarchar](200) NULL,
	[Ozel4] [nvarchar](200) NULL,
	[Ozel5] [nvarchar](200) NULL,
	[Birim] [nvarchar](50) NULL,
	[BirimAciklamasi] [nvarchar](50) NULL,
	[TartiliUrun] [bit] NULL,
	[Katalog] [bit] NULL,
	[UrunSatisFiyati2] [money] NULL,
	[UrunSatisFiyati3] [money] NULL,
	[Birim2] [nvarchar](50) NULL,
	[Birim3] [nvarchar](50) NULL,
	[ParaBirimi] [int] NULL,
	[BirimFiyati] [money] NULL,
	[YerliUretim] [bit] NULL,
	[FiyatDegisimTarihi1] [datetime] NULL,
	[EskiFiyat1] [money] NULL,
	[Miktar] [money] NULL,
	[Carpan] [money] NULL,
	[Mensei] [nvarchar](100) NULL,
	[AlisKDV] [smallint] NULL,
	[Reyonid] [int] NULL,
	[AlinanCariid] [int] NULL,
	[MinStokMiktari] [money] NULL,
	[MaxStokMiktari] [money] NULL,
	[GrupStok] [bit] NULL,
	[Pasif] [bit] NULL,
	[UrunOmru] [int] NULL,
	[SonKullanmaTarihi] [datetime] NULL,
	[Alisisk01] [money] NULL,
	[Alisisk02] [money] NULL,
	[Alisisk03] [money] NULL,
	[Marka] [nvarchar](100) NULL,
	[MBarkod1] [nvarchar](50) NULL,
	[MBarkod2] [nvarchar](50) NULL,
	[MBarkod3] [nvarchar](50) NULL,
	[MBarkod4] [nvarchar](50) NULL,
	[MBarkod5] [nvarchar](50) NULL,
	[MBarkod6] [nvarchar](50) NULL,
	[MBarkod7] [nvarchar](50) NULL,
	[MBarkod8] [nvarchar](50) NULL,
	[MBarkod9] [nvarchar](50) NULL,
	[MBarkod10] [nvarchar](50) NULL,
	[SeriNoTakip] [bit] NULL,
	[GarantiSuresi] [int] NULL,
	[StokKarOrani1] [money] NULL,
	[StokKarOrani2] [money] NULL,
	[StokKarOrani3] [money] NULL,
	[ElleFiyatGirisi] [bit] NULL,
 CONSTRAINT [PK_StoklarTEMP] PRIMARY KEY CLUSTERED 
(
	[Realid] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO</code></pre></div>



<p><strong>İŞLEMLER:</strong></p>



<p>1-)<strong>&nbsp;SQL Server 2014 Management Studio</strong>&nbsp;UYGULAMASINI ÇALIŞTIRIYORUZ.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="329" height="44" src="https://i0.wp.com/kobijet.com.tr/wp-content/uploads/2021/06/image-53.png" alt="" class="wp-image-529" srcset="https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-53.png 329w, https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-53-300x40.png 300w" sizes="(max-width: 329px) 100vw, 329px" /></figure>



<p>2-) SQL E GİRİŞ YAPIYORUZ.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="590" height="369" src="https://i0.wp.com/kobijet.com.tr/wp-content/uploads/2021/06/image-55.png" alt="" class="wp-image-531" srcset="https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-55.png 590w, https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-55-300x188.png 300w" sizes="(max-width: 590px) 100vw, 590px" /></figure>



<p>3-) LOGİN KISMINA&nbsp;&nbsp;<strong>sa&nbsp;</strong>&nbsp;PASSWORD KISMINA İSE&nbsp;<strong>&nbsp;12321az&nbsp;</strong>YAZIYORUZ. ARDINDAN CONNECT BUTONUNA BASARAK SQL ‘E GİRİŞ YAPIYORUZ.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="414" height="322" src="https://i0.wp.com/kobijet.com.tr/wp-content/uploads/2021/06/image-56.png" alt="" class="wp-image-532" srcset="https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-56.png 414w, https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-56-300x233.png 300w" sizes="(max-width: 414px) 100vw, 414px" /></figure>



<p>4-) GELEN EKRANDA&nbsp;<strong>NEW QUERY</strong>&nbsp;BUTONUNA TIKLIYORUZ.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="605" height="225" src="https://i0.wp.com/kobijet.com.tr/wp-content/uploads/2021/06/image-57.png" alt="" class="wp-image-533" srcset="https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-57.png 605w, https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-57-300x112.png 300w" sizes="(max-width: 605px) 100vw, 605px" /></figure>



<p>5-) ARDINDAN GELEN BOŞ SAYFAYA İLK BÖLÜMDE PAYLAŞTIĞIMIZ KODLARDAN GEREKLİ OLANI KOPYALAYIP YAPIŞTIRIYORUZ. İLK SATIRA KULLANILAN VERİ TABANININ ADI YAZILMALIDIR.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="837" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/09/image-24-1024x837.png" alt="" class="wp-image-1388" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/09/image-24-1024x837.png 1024w, https://www.kobijet.com.tr/wp-content/uploads/2022/09/image-24-300x245.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/09/image-24-768x628.png 768w, https://www.kobijet.com.tr/wp-content/uploads/2022/09/image-24.png 1172w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>6-)VERİ TABANINIZIN ADI&nbsp;<strong>KobiJet_2021&nbsp;</strong>İSE KODDA HERHANGİ BİR DÜZENLEME YAPMANIZA GEREK KALMAYACAKTIR. VER TABANINIZIN ADINI AŞAĞIDAKİ İŞLEMLERİ YAPARAK ÖĞRENEBİLİRSİNİZ.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="865" height="212" src="https://i0.wp.com/kobijet.com.tr/wp-content/uploads/2021/06/image-60.png" alt="" class="wp-image-536" srcset="https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-60.png 865w, https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-60-300x74.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2021/06/image-60-768x188.png 768w" sizes="(max-width: 865px) 100vw, 865px" /></figure>



<p>7-) ARDINDAN <strong>EXECUTE</strong> YE BASIP İŞLEMİ SONLANDIRIYORUZ. SONRASINDA SQL’İ KAPATABİLİRSİNİZ .</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="837" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/09/image-25-1024x837.png" alt="" class="wp-image-1389" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/09/image-25-1024x837.png 1024w, https://www.kobijet.com.tr/wp-content/uploads/2022/09/image-25-300x245.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/09/image-25-768x628.png 768w, https://www.kobijet.com.tr/wp-content/uploads/2022/09/image-25.png 1172w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p><strong>NOT: SQL’İ KAPATMAK İÇİN ÇARPI İŞARETİNE BASTIĞINIZDA ÇIKAN SORUYA “NO” SEÇENEĞİNİ SEÇMENİZ GEREKMEKTEDİR.</strong></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Sql server indirme linkleri (sqlclix içerir)</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/sql-server-indirme-linkleri/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Tue, 24 May 2022 11:14:45 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=1213</guid>

					<description><![CDATA[Sql server 2022 x64 Sql server 2019 x64 sql server 2014 sp3 upgrade x64 https://drive.google.com/file/d/1ufdL0k7Kxzx9m_cOZw9XaAfsu9C8qUZA/view?usp=sharing sql server 2014 64bit https://download.microsoft.com/download/E/A/E/EAE6F7FC-767A-4038-A954-49B8B05D04EB/ExpressAndTools%2064BIT/SQLEXPRWT_x64_ENU.exe sql server 2014 32bit https://download.microsoft.com/download/E/A/E/EAE6F7FC-767A-4038-A954-49B8B05D04EB/ExpressAndTools%2032BIT/SQLEXPRWT_x86_ENU.exe sql server 2016 express 64 bit https://www.microsoft.com/en-us/download/confirmation.aspx?id=56840 sqlclix 64 bit https://www.microsoft.com/en-us/download/confirmation.aspx?id=50402 sqlclix 32 bit https://www.microsoft.com/en-us/download/confirmation.aspx?id=50402]]></description>
										<content:encoded><![CDATA[
<p><a href="https://drive.usercontent.google.com/download?id=1KKtgbI-iPxdO6E4WtNrWZcbjgeH5WZBf&amp;export=download&amp;authuser=0" data-type="link" data-id="https://drive.usercontent.google.com/download?id=1KKtgbI-iPxdO6E4WtNrWZcbjgeH5WZBf&amp;export=download&amp;authuser=0">Sql server 2022 x64</a></p>



<p><a href="https://drive.google.com/file/d/1bsaaV_15mgRNW50d9vRnKNJ2ykux01mj/view?usp=sharing" data-type="URL" data-id="https://drive.google.com/file/d/1bsaaV_15mgRNW50d9vRnKNJ2ykux01mj/view?usp=sharing" target="_blank" rel="noreferrer noopener">Sql server 2019 x64</a></p>



<p>sql server 2014 sp3 upgrade x64</p>



<p><a href="https://drive.google.com/file/d/1ufdL0k7Kxzx9m_cOZw9XaAfsu9C8qUZA/view?usp=sharing" target="_blank" rel="noreferrer noopener">https://drive.google.com/file/d/1ufdL0k7Kxzx9m_cOZw9XaAfsu9C8qUZA/view?usp=sharing</a></p>



<p>sql server 2014 64bit</p>



<p><a href="https://download.microsoft.com/download/E/A/E/EAE6F7FC-767A-4038-A954-49B8B05D04EB/ExpressAndTools%2064BIT/SQLEXPRWT_x64_ENU.exe" target="_blank" rel="noreferrer noopener">https://download.microsoft.com/download/E/A/E/EAE6F7FC-767A-4038-A954-49B8B05D04EB/ExpressAndTools%2064BIT/SQLEXPRWT_x64_ENU.exe</a></p>



<p>sql server 2014 32bit</p>



<p><a href="https://download.microsoft.com/download/E/A/E/EAE6F7FC-767A-4038-A954-49B8B05D04EB/ExpressAndTools%2032BIT/SQLEXPRWT_x86_ENU.exe" target="_blank" rel="noreferrer noopener">https://download.microsoft.com/download/E/A/E/EAE6F7FC-767A-4038-A954-49B8B05D04EB/ExpressAndTools%2032BIT/SQLEXPRWT_x86_ENU.exe</a></p>



<p>sql server 2016 express 64 bit</p>



<p><a href="https://www.microsoft.com/en-us/download/confirmation.aspx?id=56840" target="_blank" rel="noreferrer noopener">https://www.microsoft.com/en-us/download</a><a href="https://www.microsoft.com/en-us/download/confirmation.aspx?id=56840">/confirmation.aspx?id=56840</a></p>



<p>sqlclix 64 bit</p>



<p><a href="https://www.microsoft.com/en-us/download/confirmation.aspx?id=50402" target="_blank" rel="noreferrer noopener">https://www.microsoft.com/en-us/download/confirmation.aspx?id=50402</a></p>



<p>sqlclix 32 bit</p>



<p><a href="https://www.microsoft.com/en-us/download/confirmation.aspx?id=50402" target="_blank" rel="noreferrer noopener">https://www.microsoft.com/en-us/download/confirmation.aspx?id=50402</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>SQL SERVER PORT DEĞİŞTİRME</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/sql-server-port-degistirme/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Sat, 21 May 2022 08:27:19 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=1203</guid>

					<description><![CDATA[Başlat’a tıklayarak “Microsoft SQL Server 2014\SQL Server Configuration Manager”ı çalıştırın. Configuration Manager ekranında “SQL Server Network Configuration” altında bulunan “Protocols for MSSQLSERVER”’a tıklayın. Sağ tarafa gelen TCP/IP seçeneğine sağ tıklayarak “Özellikler”’e girin. Karşımıza gelen TCP/IP Özellikleri ekranında “IP Addresses” bölümüne geçerek sayfayı en aşağıya indirin. En altta bulunan “IPAll” kısmında<a class="moretag" href="https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/sql-server-port-degistirme/"> Devamı&#8230;</a>]]></description>
										<content:encoded><![CDATA[
<ol type="1"><li>Başlat’a tıklayarak “Microsoft SQL Server 2014\SQL Server Configuration Manager”ı çalıştırın.</li></ol>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="534" height="997" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/05/image.png" alt="" class="wp-image-1204" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/05/image.png 534w, https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-161x300.png 161w" sizes="(max-width: 534px) 100vw, 534px" /></figure>



<ul><li>Configuration Manager ekranında “SQL Server Network Configuration” altında bulunan “Protocols for MSSQLSERVER”’a tıklayın.</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="913" height="619" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/05/image-1.png" alt="" class="wp-image-1205" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-1.png 913w, https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-1-300x203.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-1-768x521.png 768w" sizes="(max-width: 913px) 100vw, 913px" /></figure>



<ul><li>Sağ tarafa gelen <strong>TCP/IP </strong>seçeneğine sağ tıklayarak <strong>“Özellikler”</strong>’e girin.</li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="916" height="616" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/05/image-2.png" alt="" class="wp-image-1206" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-2.png 916w, https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-2-300x202.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-2-768x516.png 768w" sizes="(max-width: 916px) 100vw, 916px" /></figure>



<ul><li>Karşımıza gelen TCP/IP Özellikleri ekranında <strong>“IP Addresses” </strong>bölümüne geçerek sayfayı en aşağıya indirin. En altta bulunan “<strong>IPAll” </strong>kısmında yazan “<strong>1433</strong>” yazan port numarasını <strong>31433 </strong>veya kendiniz belirleyeceğiniz bir port numarası ile değiştirin ve “<strong>Tamam”</strong> butonuna tıklayın.</li></ul>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" decoding="async" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/05/image-4.png" alt="" class="wp-image-1209" width="487" height="557" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-4.png 643w, https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-4-262x300.png 262w" sizes="(max-width: 487px) 100vw, 487px" /></figure>



<ul><li>Son olarak SQL Server servisini <strong>Restart</strong> edin.</li></ul>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" decoding="async" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2022/05/image-5.png" alt="" class="wp-image-1210" width="724" height="392" srcset="https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-5.png 945w, https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-5-300x163.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2022/05/image-5-768x416.png 768w" sizes="(max-width: 724px) 100vw, 724px" /></figure>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Overflow hatası çözüm 1</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/overflow/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Tue, 21 Sep 2021 08:13:44 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=1000</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<div class="hcb_wrap"><pre class="prism line-numbers lang-sql" data-lang="SQL"><code>use KobiJet_2021;
select  top 1000 id, baslikid, cikan , giren from hareket

where cikan is not null
order by cikan   

-----------------
use KobiJet_2021;
select  top 1000 id, baslikid, cikan , giren from hareket

where giren is not null
order by giren
-----------------------------------

update hareket set cikan=1 where id = --hatali ürünün id&#39;si

-------------------------------------------</code></pre></div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Hızlı Ürünler de Aynı Üründen Birden Fazla Görünme Sorunu Çözümü</title>
		<link>https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/hizli-urunler-de-ayni-urunden-birden-fazla-gorunme-sorunu-cozumu/</link>
		
		<dc:creator><![CDATA[kobijetadmin]]></dc:creator>
		<pubDate>Sat, 18 Sep 2021 15:12:39 +0000</pubDate>
				<guid isPermaLink="false">https://www.kobijet.com.tr/?post_type=epkb_post_type_1&#038;p=989</guid>

					<description><![CDATA[1-* İlk önce Sql Server Management Studio&#8216;yu açıyoruz. 2-* Sql Server Management Studio&#8217;yu açtıktan sonra giriş yapıyoruz. 3-* Üst menünden New Query butonuna basıyoruz 4-* Alt tarafta verdiğimiz kodu açılan sayfaya yapıştırıyoruz. Yapıştırmak için tuş kombinasyonu(CTRL + V) 5-* Üsteki menüden Execute butonuna tıklayın ya da Klavyeden F5 düğmesine tıklayın.<a class="moretag" href="https://www.kobijet.com.tr/kobijet-bilgi-bankasi/sql-server/hizli-urunler-de-ayni-urunden-birden-fazla-gorunme-sorunu-cozumu/"> Devamı&#8230;</a>]]></description>
										<content:encoded><![CDATA[
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<p style="font-size:17px">1-* İlk önce <strong>Sql Server Management Studio</strong>&#8216;yu açıyoruz.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="347" height="580" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2021/09/image-5.png" alt="" class="wp-image-996" srcset="https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-5.png 347w, https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-5-179x300.png 179w" sizes="(max-width: 347px) 100vw, 347px" /></figure></div>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<p style="font-size:17px">2-* Sql Server Management Studio&#8217;yu açtıktan  sonra giriş yapıyoruz.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1022" height="721" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2021/09/image-1.png" alt="" class="wp-image-991" srcset="https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-1.png 1022w, https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-1-300x212.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-1-768x542.png 768w" sizes="(max-width: 1022px) 100vw, 1022px" /><figcaption><strong>STANDART</strong> <strong>ŞİFRE  : 123321az</strong></figcaption></figure></div>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<p style="font-size:17px">3-*  Üst menünden <strong>New Query</strong> butonuna basıyoruz</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="265" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2021/09/image-2-1024x265.png" alt="" class="wp-image-992" srcset="https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-2-1024x265.png 1024w, https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-2-300x78.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-2-768x199.png 768w, https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-2.png 1026w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<p style="font-size:17px">4-* Alt tarafta verdiğimiz kodu açılan sayfaya yapıştırıyoruz.  Yapıştırmak için tuş kombinasyonu(CTRL + V)</p>



<div class="hcb_wrap"><pre class="prism line-numbers lang-sql" data-lang="SQL"><code>use kobijet_2022
GO

SELECT  COUNT(urunid) 
FROM Resimler
GROUP BY urunid 
HAVING COUNT(urunid) &gt; 1
GO

WITH cte AS (SELECT *,ROW_NUMBER() OVER(PARTITION BY Urunid ORDER BY Urunid ) &#39;RowRank&#39;
             FROM Resimler)
DELETE FROM cte 
WHERE RowRank &gt; 1
GO
</code></pre></div>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<p style="font-size:17px">5-* Üsteki menüden <strong>Execute</strong> butonuna tıklayın ya da Klavyeden F5 düğmesine tıklayın.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="896" height="400" src="//i0.wp.com/kobijet.com.tr/wp-content/uploads/2021/09/image-3.png" alt="" class="wp-image-994" srcset="https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-3.png 896w, https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-3-300x134.png 300w, https://www.kobijet.com.tr/wp-content/uploads/2021/09/image-3-768x343.png 768w" sizes="(max-width: 896px) 100vw, 896px" /></figure></div>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<p style="font-size:18px"><strong>6-* Yapılacak işlemler bitmiştir. </strong></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
