﻿<?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>Tüm Prosedürleri Drop Etme Kodları &#8211; SQL Server Eğitimleri</title>
	<atom:link href="https://sqlserveregitimleri.com/etiket/tum-prosedurleri-drop-etme-kodlari/feed" rel="self" type="application/rss+xml" />
	<link>https://sqlserveregitimleri.com</link>
	<description>SQL Server ile ilgili her şey</description>
	<lastBuildDate>Wed, 27 Dec 2017 18:29:50 +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’da Tüm Prosedürleri Drop Etmek</title>
		<link>https://sqlserveregitimleri.com/sql-serverda-tum-prosedurleri-drop-etmek</link>
		
		<dc:creator><![CDATA[Yavuz Selim Kart]]></dc:creator>
		<pubDate>Sat, 30 Dec 2017 11:30:56 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server’da Tüm Prosedürleri Drop Etmek]]></category>
		<category><![CDATA[Tüm Prosedürleri Drop Etme Kodları]]></category>
		<category><![CDATA[Tüm Prosedürleri Drop Etmek]]></category>
		<guid isPermaLink="false">http://sqlserveregitimleri.com/?p=3630</guid>

					<description><![CDATA[Herkese merhaba, Bu kısımda SQL Server’da tüm prosedürleri drop etme kodları olacak. declare @procName varchar(500) declare cur cursor for select [name] from sys.objects where type =...]]></description>
										<content:encoded><![CDATA[<p>Herkese merhaba,</p>
<p>Bu kısımda SQL Server’da tüm prosedürleri drop etme kodları olacak.</p>
<pre class="lang:default decode:true ">declare @procName varchar(500)
declare cur cursor 

for select [name] from sys.objects where type = 'p'
open cur
fetch next from cur into @procName
while @@fetch_status = 0
begin
    exec('drop procedure [' + @procName + ']')
    fetch next from cur into @procName
end
close cur
deallocate cur
</pre>
<div class='epvc-post-count'><span class='epvc-eye'></span>  <span class="epvc-count"> 371</span><span class='epvc-label'> Kez Okundu</span></div>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
