﻿<?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&#8217;da Schema Adını Değiştirmek &#8211; SQL Server Eğitimleri</title>
	<atom:link href="https://sqlserveregitimleri.com/etiket/sql-serverda-schema-adini-degistirmek/feed" rel="self" type="application/rss+xml" />
	<link>https://sqlserveregitimleri.com</link>
	<description>SQL Server ile ilgili her şey</description>
	<lastBuildDate>Sat, 05 Mar 2022 11:17:21 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>SQL Server&#8217;da Schema Adını Değiştirmek</title>
		<link>https://sqlserveregitimleri.com/sql-serverda-schema-adini-degistirmek</link>
		
		<dc:creator><![CDATA[Yavuz Selim Kart]]></dc:creator>
		<pubDate>Sat, 06 Jul 2019 13:17:51 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Schema Adını Değiştirmek]]></category>
		<category><![CDATA[SQL Server'da Schema Adı Nasıl Değiştirilir]]></category>
		<category><![CDATA[SQL Server'da Schema Adını Değiştirmek]]></category>
		<guid isPermaLink="false">http://sqlserveregitimleri.com/?p=6591</guid>

					<description><![CDATA[Herkese merhaba, Bu yazıda SQL Server&#8217;da Schema adı nasıl değiştirilir ondan bahsedeceğim. SQL Server&#8217;da Default schema dbo dur. Bunu değiştirmek için aşağıdaki kod bloğunu kullanabilirsiniz....]]></description>
										<content:encoded><![CDATA[<p>Herkese merhaba,</p>
<p>Bu yazıda SQL Server&#8217;da Schema adı nasıl değiştirilir ondan bahsedeceğim.</p>
<p>SQL Server&#8217;da Default schema <strong>dbo</strong> dur. Bunu değiştirmek için aşağıdaki kod bloğunu kullanabilirsiniz.</p>
<pre class="line-numbers"><code class="language-sql">ALTER SCHEMA YeniSchemaIsmi
TRANSFER EskiSemaIsmi.TabloonuzunAdi;</code></pre>
<p>Kodu kendinize göre revize edip çalıştırdığınızda schema adının değiştiğini göreceksiniz.</p>
<p>Bir örnek yaparak konuyu pekiştirelim.</p>
<p>İlk önce bir tablo oluşturun.</p>
<pre class="line-numbers"><code class="language-sql">--Böyle bir tablo oluşturun. 

CREATE TABLE YurtIciSatislar
(
    SatisId INT,
    SatilanUrunAdi NVARCHAR(100),
    SatisMiktari SMALLINT
);</code></pre>
<p>Görüldüğü üzere <strong>dbo</strong> schema adı ile oluştu.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-6594 size-full" src="https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-1.jpg" alt="SQL Server'da Schema Adını Değiştirmek" width="700" height="492" srcset="https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-1.jpg 700w, https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-1-315x221.jpg 315w, https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-1-427x300.jpg 427w, https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-1-192x135.jpg 192w" sizes="(max-width: 700px) 100vw, 700px" /></p>
<p>Şimdi bu schema&#8217;yı daha önce oluşturmuş olduğum <strong>Satis</strong> schema&#8217;sı ile değiştirelim.</p>
<p>Şema oluşturmayı bilmiyorsanız aşağıdaki makaleyi okuyun.</p>
<div style="clear:both; margin-top:0em; margin-bottom:1em;"><a href="https://sqlserveregitimleri.com/sql-serverda-schema-olusturmak" target="_blank" rel="dofollow" class="ud380f75bf78fd990ab8a08bd6f45007d"><style> .ud380f75bf78fd990ab8a08bd6f45007d , .ud380f75bf78fd990ab8a08bd6f45007d .postImageUrl , .ud380f75bf78fd990ab8a08bd6f45007d .centered-text-area { min-height: 80px; position: relative; } .ud380f75bf78fd990ab8a08bd6f45007d , .ud380f75bf78fd990ab8a08bd6f45007d:hover , .ud380f75bf78fd990ab8a08bd6f45007d:visited , .ud380f75bf78fd990ab8a08bd6f45007d:active { border:0!important; } .ud380f75bf78fd990ab8a08bd6f45007d .clearfix:after { content: ""; display: table; clear: both; } .ud380f75bf78fd990ab8a08bd6f45007d { display: block; transition: background-color 250ms; webkit-transition: background-color 250ms; width: 100%; opacity: 1; transition: opacity 250ms; webkit-transition: opacity 250ms; background-color: #3498DB; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17); -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17); -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17); -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17); } .ud380f75bf78fd990ab8a08bd6f45007d:active , .ud380f75bf78fd990ab8a08bd6f45007d:hover { opacity: 1; transition: opacity 250ms; webkit-transition: opacity 250ms; background-color: #E74C3C; } .ud380f75bf78fd990ab8a08bd6f45007d .centered-text-area { width: 100%; position: relative; } .ud380f75bf78fd990ab8a08bd6f45007d .ctaText { border-bottom: 0 solid #fff; color: #FFFFFF; font-size: 16px; font-weight: bold; margin: 0; padding: 0; text-decoration: underline; } .ud380f75bf78fd990ab8a08bd6f45007d .postTitle { color: #FFFFFF; font-size: 16px; font-weight: 600; margin: 0; padding: 0; width: 100%; } .ud380f75bf78fd990ab8a08bd6f45007d .ctaButton { background-color: #2980B9!important; color: #FFFFFF; border: none; border-radius: 3px; box-shadow: none; font-size: 14px; font-weight: bold; line-height: 26px; moz-border-radius: 3px; text-align: center; text-decoration: none; text-shadow: none; width: 80px; min-height: 80px; background: url(https://sqlserveregitimleri.com/wp-content/plugins/intelly-related-posts/assets/images/simple-arrow.png)no-repeat; position: absolute; right: 0; top: 0; } .ud380f75bf78fd990ab8a08bd6f45007d:hover .ctaButton { background-color: #C0392B!important; } .ud380f75bf78fd990ab8a08bd6f45007d .centered-text { display: table; height: 80px; padding-left: 18px; top: 0; } .ud380f75bf78fd990ab8a08bd6f45007d .ud380f75bf78fd990ab8a08bd6f45007d-content { display: table-cell; margin: 0; padding: 0; padding-right: 108px; position: relative; vertical-align: middle; width: 100%; } .ud380f75bf78fd990ab8a08bd6f45007d:after { content: ""; display: block; clear: both; } </style><div class="centered-text-area"><div class="centered-text" style="float: left;"><div class="ud380f75bf78fd990ab8a08bd6f45007d-content"><span class="ctaText"></span>&nbsp; <span class="postTitle">SQL Server'da Schema Oluşturmak</span></div></div></div><div class="ctaButton"></div></a></div>
<p>Schema değiştirme kodunu aşağıda görmektesiniz.</p>
<pre class="line-numbers"><code class="language-sql">ALTER SCHEMA Satis
TRANSFER dbo.YurtIciSatislar;</code></pre>
<p>Şimdi sonucu inceleyelim.</p>
<p><img decoding="async" class="alignnone wp-image-6595 size-full" src="https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-2.jpg" alt="SQL Server'da Schema Adını Değiştirmek" width="700" height="388" srcset="https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-2.jpg 700w, https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-2-315x175.jpg 315w, https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-2-541x300.jpg 541w, https://sqlserveregitimleri.com/wp-content/uploads/2019/07/sql-serverda-schema-adini-degistirmek-2-244x135.jpg 244w" sizes="(max-width: 700px) 100vw, 700px" /></p>
<p>Schema değişimi başarılı bir şekilde yapılmış oldu.</p>
<p>Herkese çalışma hayatında ve yaşamında başarılar kolaylıklar.</p>
<div class='epvc-post-count'><span class='epvc-eye'></span>  <span class="epvc-count"> 1.500</span><span class='epvc-label'> Kez Okundu</span></div>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
