<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
    <channel>
        <title>SQL 사용자 Tip과 강좌</title>
        <link>http://www.sqler.com/bColumn</link>
        <description>SQL 사용자들이 전달해 드리는 SQL서버 Tip과 강좌 소식입니다. SQL서버 개발 및 운영 관련 팁과 쿼리 노하우를 이곳에서 가장 먼저 접하실 수 있습니다. 많은 도움 되시길 바랍니다.</description>
        <language>ko</language>
        <pubDate>Sun, 12 Feb 2012 19:22:06 +0900</pubDate>
        <lastBuildDate>Sun, 12 Feb 2012 19:22:06 +0900</lastBuildDate>
        <generator>XpressEngine 1.4.5.9</generator>
                <copyright>SQLER</copyright>
                                <item>
            <title>technet의 xml 속성 승격 예제 개선</title>
            <dc:creator>우욱</dc:creator>
            <link>http://www.sqler.com/476162</link>
			
            <guid isPermaLink="true">http://www.sqler.com/476162</guid>
                        <comments>http://www.sqler.com/476162#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;&lt;a href=&quot;http://technet.microsoft.com/library/bb500236.aspx&quot;&gt;http://technet.microsoft.com/library/bb500236.aspx&lt;/a&gt;&lt;/p&gt;&lt;p&gt;에 나와있는 속성 승격 예제&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- T 테이블은 생성 코드가 없어서 대충 만듬.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;create table T ( PK INT identity, xCol XML );&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- 요기서부턴 technet 예제에 있는거 고대로 배꼈음.&lt;/p&gt;&lt;p&gt;create table tblPropAuthor (propPK int, propAuthor varchar(max));&lt;/p&gt;&lt;p&gt;go&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;create function udf_XML2Table (@pk int, @xCol xml)&lt;/p&gt;&lt;p&gt;returns @ret_Table table (propPK int, propAuthor varchar(max))&lt;/p&gt;&lt;p&gt;with schemabinding&lt;/p&gt;&lt;p&gt;as&lt;/p&gt;&lt;p&gt;begin&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; insert into @ret_Table&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; select @pk, nref.value(&apos;.&apos;, &apos;varchar(max)&apos;)&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; from &amp;nbsp; @xCol.nodes(&apos;/book/author/first-name&apos;) R(nref)&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; return&lt;/p&gt;&lt;p&gt;end&lt;/p&gt;&lt;p&gt;go&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;create trigger trg_docs_INS on T for insert&lt;/p&gt;&lt;p&gt;as&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; declare @wantedXML xml&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; declare @FK int&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; select @wantedXML = xCol from inserted&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; select @FK = PK from inserted&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;insert into tblPropAuthor&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;select * from dbo.udf_XML2Table(@FK, @wantedXML)&lt;/p&gt;&lt;p&gt;go&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;create trigger trg_docs_DEL on T for delete&lt;/p&gt;&lt;p&gt;as&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;declare @FK int&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;select @FK = PK from deleted&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;delete tblPropAuthor where propPK = @FK&lt;/p&gt;&lt;p&gt;go&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;create trigger trg_docs_UPD&lt;/p&gt;&lt;p&gt;on T&lt;/p&gt;&lt;p&gt;for update&lt;/p&gt;&lt;p&gt;as&lt;/p&gt;&lt;p&gt;if update(xCol) or update(pk)&lt;/p&gt;&lt;p&gt;begin&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; declare @FK int&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; declare @wantedXML xml&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; select @FK = PK from deleted&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; delete tblPropAuthor where propPK = @FK&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;select @wantedXML = xCol from inserted&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;select @FK = pk from inserted&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;insert into tblPropAuthor&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; select * from dbo.udf_XML2Table(@FK, @wantedXML)&lt;/p&gt;&lt;p&gt;end&lt;/p&gt;&lt;p&gt;go&lt;/p&gt;&lt;p&gt;-- 여기까지 몽창 다 배껴온거임.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- 잘 되나 걍 대충 하나 넣어봄.&lt;/p&gt;&lt;p&gt;insert into T ( xCol ) values( N&apos;&lt;/p&gt;&lt;p&gt;&amp;lt;book&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;title&amp;gt;1984&amp;lt;/title&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;author&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;first-name&amp;gt;George&amp;lt;/first-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;given-name&amp;gt;Orwell&amp;lt;/given-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/author&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/book&amp;gt;&apos;);&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- trigger가 잘 동작했는지 확인해 봄. 당연히 잘 수행됐음.&lt;/p&gt;&lt;p&gt;select * from tblPropAuthor;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- 예제를 만든 사람이 의도한 대로 저자가 많을때도 잘 돌아가는지 확인함&lt;/p&gt;&lt;p&gt;insert into T ( xCol ) values( N&apos;&lt;/p&gt;&lt;p&gt;&amp;lt;book&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;title&amp;gt;Curious George&amp;lt;/title&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;author&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;first-name&amp;gt;Hans Augusto&amp;lt;/first-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;given-name&amp;gt;Rey&amp;lt;/given-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/author&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;author&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;first-name&amp;gt;Margret&amp;lt;/first-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;given-name&amp;gt;Rey&amp;lt;/given-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/author&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/book&amp;gt;&apos;);&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- trigger가 잘 돌았는지 확인해 봄. 역시 &quot;의도대로&quot; 잘 돌아 줌.&lt;/p&gt;&lt;p&gt;select * from tblPropAuthor;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- 문제는 이거임. 한 번에 한 행만 insert되는 경우가 아닌 한 번에 여러 행이 insert되는 경우에는 첫 놈만 돌려주는 아픔이 있음.&lt;/p&gt;&lt;p&gt;insert into T ( xCol ) values( N&apos;&lt;/p&gt;&lt;p&gt;&amp;lt;book&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;title&amp;gt;Adventures of Huckleberry Finn&amp;lt;/title&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;author&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;first-name&amp;gt;Mark&amp;lt;/first-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;given-name&amp;gt;Twain&amp;lt;/given-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/author&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/book&amp;gt;&apos;)&lt;/p&gt;&lt;p&gt;, ( N&apos;&lt;/p&gt;&lt;p&gt;&amp;lt;book&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;title&amp;gt;Alice&apos;&apos;s Adventures in Wonderland&amp;lt;/title&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;author&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;first-name&amp;gt;Lewis&amp;lt;/first-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;given-name&amp;gt;Carroll&amp;lt;/given-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/author&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/book&amp;gt;&apos;);&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- 마크 아저씨는 들어갔는데 루이스 아저씨는 안 들어가 있음.&lt;/p&gt;&lt;p&gt;select * from tblPropAuthor;&lt;/p&gt;&lt;p&gt;-- 뭐 원판 xml은 잘 들어가 있음.&lt;/p&gt;&lt;p&gt;select * from t;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- 아까 집어 넣었던 예제를 고대로 써먹기 위해서 일단 어드벤춰와 엘리스를 지움&lt;/p&gt;&lt;p&gt;delete t where xcol.value( N&apos;(/book/title/text())[1]&apos;, &apos;CHAR(1)&apos;) = &apos;a&apos;;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;go&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- 여럿이 함께 insert되도 돌아가게 trigger를 고침&lt;/p&gt;&lt;p&gt;&lt;b&gt;-- while로 뺑뺑이 도는 소스가 되버렸는데 이거 한방에 좀 가능하게 해주실 능력자분 계시면 알려주셨으면 참 좋겠... -_-;;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;alter trigger trg_docs_INS on T for insert&lt;/p&gt;&lt;p&gt;as&lt;/p&gt;&lt;p&gt;begin&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; declare @wantedXML xml&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; declare @FK int&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; declare @ii int;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; create table #tmp( seq int identity, fk int, wantedXML xml );&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; insert into #tmp( fk, wantedXML )&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; select PK, xCol from inserted ;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; select @ii = MAX( seq ) from #tmp ;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; while ( @ii &amp;gt; 0 )&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; begin&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;select @FK = fk, @wantedXML = wantedXML from #tmp where seq = @ii;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;insert into tblPropAuthor( propPK, propAuthor )&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;select * from dbo.udf_XML2Table(@FK, @wantedXML)&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;set @ii = @ii - 1;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; end&lt;/p&gt;&lt;p&gt;end&lt;/p&gt;&lt;p&gt;go&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-- 우야튼 해결했다고 보고, 아까 돌렸던 예를 다시 돌려 봄..&lt;/p&gt;&lt;p&gt;insert into T ( xCol ) values( N&apos;&lt;/p&gt;&lt;p&gt;&amp;lt;book&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;title&amp;gt;Adventures of Huckleberry Finn&amp;lt;/title&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;author&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;first-name&amp;gt;Mark&amp;lt;/first-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;given-name&amp;gt;Twain&amp;lt;/given-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/author&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/book&amp;gt;&apos;)&lt;/p&gt;&lt;p&gt;, ( N&apos;&lt;/p&gt;&lt;p&gt;&amp;lt;book&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;title&amp;gt;Alice&apos;&apos;s Adventures in Wonderland&amp;lt;/title&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;author&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;first-name&amp;gt;Lewis&amp;lt;/first-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;given-name&amp;gt;Carroll&amp;lt;/given-name&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/author&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/book&amp;gt;&apos;);&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;--잘 들어갔나 확인 함.&lt;/p&gt;&lt;p&gt;select * from tblPropAuthor;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;select * from t;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;-- 물론 update 등의 소스는 패수.. T,.T&lt;/div&gt;&lt;div&gt;-- delete 트리거는 예제처럼 복잡하게 만드느니 tblPropAuthor 테이블을 만들때 FK on delete cascade로 쉽게 하는게 더 존거 같...&lt;/div&gt;&lt;div&gt;-- create table tblPropAuthor (propPK int references T(pk) on delete cascade, propAuthor varchar(max));&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;-- 다 봤으면 지움.&lt;/div&gt;&lt;div&gt;drop table t;&lt;/div&gt;&lt;div&gt;drop table tblPropAuthor;&lt;/div&gt;&lt;p&gt;&lt;/p&gt;&lt;a href=&quot;http://technet.microsoft.com/library/bb500236.aspx&quot;&gt;&lt;/a&gt;&lt;p&gt;&lt;a href=&quot;http://technet.microsoft.com/library/bb500236.aspx&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://technet.microsoft.com/library/bb500236.aspx&quot;&gt;&lt;/a&gt;


&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Mon, 06 Feb 2012 02:06:34 +0900</pubDate>
                                </item>
                <item>
            <title>SQL Server 암호화 알고리즘 정리.</title>
            <dc:creator>쓸만한게없네(윤선식)</dc:creator>
            <link>http://www.sqler.com/476001</link>
			
            <guid isPermaLink="true">http://www.sqler.com/476001</guid>
                        <comments>http://www.sqler.com/476001#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;안녕하세요? SQL프론티어 3기 윤선식입니다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;각 버젼별 암호화 알고리즘을 정리해 보았습니다.&lt;/p&gt;
&lt;p&gt;SQL 2012의 경우 RTM이 나와 봐야 알겠지만, 아마&amp;nbsp;크게 변경되진 않으리라 예상됩니다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;참고로, 여기서 이야기하는 양방향과 단방향은 아래 기준에 의해 편의상 정한 용어이오니 혼돈 없기 바랍니다.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;- 양방향 : 암호화, 복호화가 가능한 것.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;- 단방향 : 복호화가 불가능하고 암호화만 가능한 것.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;1.&amp;nbsp;양방향&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;1)&amp;nbsp;SQL Server 2005 암호화 알고리즘&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;a href=&quot;http://technet.microsoft.com/ko-kr/library/ms345262(SQL.90).aspx&quot;&gt;http://technet.microsoft.com/ko-kr/library/ms345262(SQL.90).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;DES, Triple DES, RC2, RC4, 128비트 RC4, DESX, 128비트 AES, 192비트 AES, 256비트 AES &lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;2)&amp;nbsp;SQL Server 2008 암호화 알고리즘&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;a href=&quot;http://technet.microsoft.com/ko-kr/library/ms345262(SQL.100).aspx&quot;&gt;http://technet.microsoft.com/ko-kr/library/ms345262(SQL.100).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;DES, Triple DES, TRIPLE_DES_3KEY, RC2, RC4, 128비트 RC4, DESX, 128비트 AES, 192비트 AES, 256비트 AES&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;3)&amp;nbsp;SQL Server 2008 R2 암호화 알고리즘&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;a href=&quot;http://technet.microsoft.com/ko-kr/library/ms345262(SQL.105).aspx&quot;&gt;http://technet.microsoft.com/ko-kr/library/ms345262(SQL.105).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;DES, Triple DES, TRIPLE_DES_3KEY, RC2, RC4, 128비트 RC4, DESX, 128비트 AES, 192비트 AES, 256비트 AES &lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: &apos;Malgun Gothic&apos;&quot; lang=&quot;ko&quot;&gt;&amp;nbsp;4)&amp;nbsp;SQL Server &lt;/span&gt;&lt;span style=&quot;FONT-FAMILY: &apos;맑은 고딕&apos;&quot; lang=&quot;en-US&quot;&gt;2012&lt;/span&gt;&lt;span style=&quot;FONT-FAMILY: &apos;Malgun Gothic&apos;&quot; lang=&quot;ko&quot;&gt; 암호화 알고리즘&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;a href=&quot;http://technet.microsoft.com/ko-kr/library/ms345262(en-us,SQL.110).aspx&quot;&gt;http://technet.microsoft.com/ko-kr/library/ms345262(en-us,SQL.110).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span lang=&quot;ko&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;DES, Triple DES,&lt;/span&gt;&lt;span lang=&quot;en-US&quot;&gt;&amp;nbsp;TRIPLE_DES_3KEY, RC2, RC4, 128-bit RC4, DESX, 128-bit AES, 192-bit AES, and 256-bit AES&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;2.&amp;nbsp;단방향(Hash)&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;1) SQL Server 2005 암호화 알고리즘(단방향)&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms174415(v=sql.90).aspx&quot;&gt;http://msdn.microsoft.com/en-us/library/ms174415(v=sql.90).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;MD2, MD4, MD5, SHA, SHA1&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;2) SQL Server 2008 암호화 알고리즘(단방향)&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms174415(v=sql.100).aspx&quot;&gt;http://msdn.microsoft.com/en-us/library/ms174415(v=sql.100).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;MD2, MD4, MD5, SHA, SHA1&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;3) SQL Server 2008 R2 암호화 알고리즘(단방향)&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms174415(v=sql.105).aspx&quot;&gt;http://msdn.microsoft.com/en-us/library/ms174415(v=sql.105).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp; &lt;/span&gt;MD2, MD4, MD5, SHA, SHA1&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: &apos;Malgun Gothic&apos;&quot; lang=&quot;ko&quot;&gt;&amp;nbsp;4)&amp;nbsp;SQL Server &lt;/span&gt;&lt;span style=&quot;FONT-FAMILY: &apos;맑은 고딕&apos;&quot; lang=&quot;en-US&quot;&gt;2012&lt;/span&gt;&lt;span style=&quot;FONT-FAMILY: &apos;Malgun Gothic&apos;&quot; lang=&quot;ko&quot;&gt; 암호화 알고리즘(단방향)&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms174415(v=sql.110).aspx&quot;&gt;http://msdn.microsoft.com/en-us/library/ms174415(v=sql.110).aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN: 0in; FONT-FAMILY: &apos;Malgun Gothic&apos;; FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;MD2, MD4, MD5, SHA, SHA1, SHA2_256, SHA2_512 &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;이상입니다.&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Fri, 03 Feb 2012 16:09:20 +0900</pubDate>
                        <category>SQL Server</category>
                        <category>HashBytes</category>
                        <category>Algorithm</category>
                        <category>Encoding</category>
                        <category>Decoding</category>
                                    <slash:comments>4</slash:comments>
                    </item>
                <item>
            <title>Allocation Ordered Scan 과 READUNCOMMITTED..</title>
            <dc:creator>이스트럭(강동운)</dc:creator>
            <link>http://www.sqler.com/475896</link>
			
            <guid isPermaLink="true">http://www.sqler.com/475896</guid>
                        <comments>http://www.sqler.com/475896#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;div&gt;안녕하세요. 이스트럭(강동운) 입니다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;오래전부터 이 부분을 정리해서 올리려고 했는데.. 오늘 답변을 하다가 간단하게나마 정리해서 올리게 됩니다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;우선 이 내용을 이해하기 위해서는.. Mixed Extent(혼합익스텐트), Uniform Extent(균일 익스텐트), IAM(Index Allocation Map)을 알고 있다는 전제하에 설명을 드립니다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;위의 정보에 대해서 잘 모르신다면.. 아래 글을 우선 읽어주시기 바랍니다~^^&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;Mixed Extent &amp;amp; Uniform Extent: &lt;a href=&quot;347983&quot; target=&quot;_blank&quot;&gt;http://www.sqler.com/347983&lt;/a&gt;&lt;/div&gt;&lt;div&gt;IAM(Index Allocation Map): &lt;a href=&quot;355204&quot; target=&quot;_blank&quot;&gt;http://www.sqler.com/355204&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;READUNCOMMITTED를 모르신다면...&lt;/div&gt;&lt;div&gt;트랜잭션 격리수준: &lt;a href=&quot;439266&quot; target=&quot;_blank&quot;&gt;http://www.sqler.com/439266&lt;/a&gt; &amp;nbsp; &lt;b&gt;의 2011_09_07_발표자료(강동운).pptx 첨부파일&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;READUNCOMMITTED에서 정렬 수준이 보장되지 않는 이유는..&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Allocation Ordered Scan 때문에 그렇습니다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Allocation Ordered Scan은... &amp;nbsp;IAM(Index Allocation Map) 페이지를 기반으로..&lt;/div&gt;&lt;div&gt;Mixed Extent를 먼저 읽고 난 후에.. Uniform Extent를 순서대로 읽게 됩니다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Index Scan 또는 Clustered Index Scan은.. 인덱스의 더블링크드리스트를 기반으로 Next page 포인터 형태로 읽어가는 것 입니다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Allocation Ordered Scan에는 조건이 있습니다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1. 실행계획에 Ordered 연산자가 false (order by 가 없는 경우)&lt;/div&gt;&lt;div&gt;2. READ UNCOMMITTED 이거나 읽기 전용 환경인경우&lt;/div&gt;&lt;div&gt;3. SQL Server 2005 이상에서 테이블의 페이지가 64이상인 경우..&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;위 3가지 조건을 모두 만족해야.. Allocation Order Scan 으로 돌아가게 됩니다.&lt;/div&gt;&lt;div&gt;(하지만 실행 계획엔 Clustered Index Scan 또는 Index Scan으로 표시 됩니다.)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;아래 예제를 잠시 설명드리면..&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;HTTP://HUSKY_TMP.MARKER/3274http://blogs.msdn.com/b/sqlserverstorageengine/archive/2006/11/09/when-can-allocation-order-scans-be-used.aspx&quot;&gt;http://blogs.msdn.com/b/sqlserverstorageengine/archive/2006/11/09/when-can-allocation-order-scans-be-used.aspx&lt;/a&gt;&lt;/div&gt;&lt;div&gt;여기 예제는.. 10~100이란 숫자를 처음 while 문을 통해 넣고.. (한 컬럼당 5000 bytes 므로.. 한페이지에 한개씩)&lt;/div&gt;&lt;div&gt;그 다음... 1~9까지 넣게 됩니다.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;10을 넣을때 Mixed Extent 1번&lt;/div&gt;&lt;div&gt;11을 넣을때.. Index 상위 레벨이 생기므로.. 인덱스 상위 레벨에 Mixed Extent 2번&lt;/div&gt;&lt;div&gt;11: Mixed Extent 3번&lt;/div&gt;&lt;div&gt;12: Mixed Extent 4번&lt;/div&gt;&lt;div&gt;13: Mixed Extent 5번&lt;/div&gt;&lt;div&gt;14: Mixed Extent 6번&lt;/div&gt;&lt;div&gt;15: Mixed Extent 7번&lt;/div&gt;&lt;div&gt;16: Mixed Extent 8번&lt;/div&gt;&lt;div&gt;까지 할당되고.. 그 후부턴.. Uniform Extent가 할당됩니다.&lt;/div&gt;&lt;div&gt;추가로 넣은 1~9 ...이 데이터 역시 Uniform Extent에 할당이 됩니다.&lt;/div&gt;&lt;div&gt;결국 이걸 Allocation Order Scan으로 읽게 되면.. 10~100까지 먼저 읽은 다음에.. 1~9 까지 읽게 되는거죠&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;참고 자료 ppt:&amp;nbsp;&lt;a href=&quot;http://download.microsoft.com/download/7/a/b/7ab8283e-a3a0-4185-818b-ab7b1fc6300b/DAT427%20-%20Consistency%20of%20Reads.ppt&quot; target=&quot;_blank&quot;&gt;http://download.microsoft.com/download/7/a/b/7ab8283e-a3a0-4185-818b-ab7b1fc6300b/DAT427 - Consistency of Reads.ppt&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;감사합니다 ^^&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;작성자: eastluck&lt;/div&gt;&lt;div&gt;작성일: 2012.02.03&lt;/div&gt;&lt;/div&gt;</description>
                        <pubDate>Fri, 03 Feb 2012 12:13:48 +0900</pubDate>
                                </item>
                <item>
            <title>SQL Server의 최대 용량 사양</title>
            <dc:creator>이상현(애아범)</dc:creator>
            <link>http://www.sqler.com/475869</link>
			
            <guid isPermaLink="true">http://www.sqler.com/475869</guid>
                        <comments>http://www.sqler.com/475869#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;Q&amp;amp;A의 질문을 보다가&lt;/p&gt;&lt;p&gt;한 테이블의 최대 크기는 도대체 얼마일까가 궁금해서 찾아 보다가&lt;/p&gt;&lt;p&gt;SQL Server의 최대 용량들을 정리해 놓은걸 보게 되었는데&lt;/p&gt;&lt;p&gt;재미있는게 많이 있는것 같습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;한테이블에 최대 30000개의 열을 가질수 있는데 select/insert/update 문은 4096개 밖에 열지정이 안되네요.ㅎㅎ&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms143432.aspx&quot;&gt;http://msdn.microsoft.com/en-us/library/ms143432.aspx&lt;/a&gt;
&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;table style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); border-collapse: collapse; width: 809px; font-family: &apos;Segoe UI&apos;, Verdana, Arial; font-size: 13px; line-height: normal; text-align: left; &quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;th style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(229, 229, 229); padding-right: 4px; padding-left: 4px; padding-bottom: 4px; padding-top: 4px; height: 21px; font-size: 1.077em; &quot;&gt;&lt;p&gt;SQL Server 데이터베이스 엔진 개체&lt;/p&gt;&lt;/th&gt;&lt;th style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(229, 229, 229); padding-right: 4px; padding-left: 4px; padding-bottom: 4px; padding-top: 4px; height: 21px; font-size: 1.077em; &quot;&gt;&lt;p&gt;최대 크기/개수 SQL Server(32비트)&lt;/p&gt;&lt;/th&gt;&lt;th style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(229, 229, 229); padding-right: 4px; padding-left: 4px; padding-bottom: 4px; padding-top: 4px; height: 21px; font-size: 1.077em; &quot;&gt;&lt;p&gt;최대 크기/개수 SQL Server(64비트)&lt;/p&gt;&lt;/th&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;일괄 처리 크기&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;1&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;65,536 * 네트워크 패킷 크기&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;65,536 * 네트워크 패킷 크기&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;짧은 문자열 열당 바이트 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;8,000&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;8,000&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;GROUP BY, ORDER BY당 바이트 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;8,060&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;8,060&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;인덱스 키당 바이트 수&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;2&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;900&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;900&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;외래 키당 바이트 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;900&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;900&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;기본 키당 바이트 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;900&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;900&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;행당 바이트 수&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;8&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;8,060&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;8,060&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;저장 프로시저의 원본 텍스트의 바이트 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;일괄 처리 크기 또는 250MB 미만&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;일괄 처리 크기 또는 250MB 미만&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;&lt;span class=&quot;input&quot; style=&quot;font-weight: 700; &quot;&gt;varchar(max)&lt;/span&gt;&amp;nbsp;,&amp;nbsp;&lt;span class=&quot;input&quot; style=&quot;font-weight: 700; &quot;&gt;varbinary(max)&lt;/span&gt;,&amp;nbsp;&lt;span class=&quot;input&quot; style=&quot;font-weight: 700; &quot;&gt;xml&lt;/span&gt;,&amp;nbsp;&lt;span class=&quot;input&quot; style=&quot;font-weight: 700; &quot;&gt;text&lt;/span&gt;&amp;nbsp;또는&amp;nbsp;&lt;span class=&quot;input&quot; style=&quot;font-weight: 700; &quot;&gt;image&lt;/span&gt;&amp;nbsp;열당 바이트 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2^31-1&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2^31-1&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;&lt;span class=&quot;input&quot; style=&quot;font-weight: 700; &quot;&gt;ntext&lt;/span&gt;&amp;nbsp;또는&amp;nbsp;&lt;span class=&quot;input&quot; style=&quot;font-weight: 700; &quot;&gt;nvarchar(max)&lt;/span&gt;&amp;nbsp;열당 문자 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2^30-1&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2^30-1&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;테이블당 클러스터형 인덱스 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;1&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;1&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;GROUP BY, ORDER BY의 열 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;바이트 수로만 제한&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;바이트 수로만 제한&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;GROUP BY WITH CUBE 또는 WITH ROLLUP 문의 열 또는 식의 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;10&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;10&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;인덱스 키당 열 수&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;7&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;16&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;16&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;외래 키당 열 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;16&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;16&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;기본 키당 열 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;16&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;16&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;넓지 않은 테이블당 열 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;1,024&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;1,024&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;넓은 테이블당 열 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;30,000&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;30,000&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;SELECT 문당 열 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;4,096&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;4,096&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;INSERT 문당 열 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;4096&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;4096&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;클라이언트당 연결 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;구성된 연결의 최대 값&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;구성된 연결의 최대 값&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;데이터베이스 크기&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;524,272TB&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;524,272TB&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;SQL Server 인스턴스당 데이터베이스 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32,767&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32,767&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;데이터베이스당 파일 그룹 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32,767&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32,767&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;데이터베이스당 파일 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32,767&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32,767&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;파일 크기(데이터)&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;16TB&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;16TB&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;파일 크기(로그)&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2TB&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2TB&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;테이블당 외래 키 테이블 참조 수&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;4&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;253&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;253&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;식별자 길이(문자 수)&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;128&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;128&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;컴퓨터당 인스턴스 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;모든 SQL Server 버전에 대해 독립 실행형 서버당 50개의 인스턴스.&lt;/p&gt;&lt;p style=&quot;margin-top: 13px; position: relative; &quot;&gt;SQL Server는 장애 조치(Failover) 클러스터에서 25개의 인스턴스를 지원합니다.&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;독립 실행형 서버당 50개의 인스턴스&lt;/p&gt;&lt;p style=&quot;margin-top: 13px; position: relative; &quot;&gt;장애 조치(Failover) 클러스터당 25개의 인스턴스&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;SQL 문이 포함된 문자열의 길이(일괄 처리 크기)&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;1&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;65,536 * 네트워크 패킷 크기&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;65,536 * 네트워크 패킷 크기&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;연결당 잠금 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;서버당 최대 잠금 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;서버당 최대 잠금 수&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;SQL Server의 인스턴스당 잠금 수&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;5&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;최대 2,147,483,647&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;메모리로만 제한&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;중첩 저장 프로시저 수준 수&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;6&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;중첩 하위 쿼리 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;중첩 트리거 수준 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;테이블당 비클러스터형 인덱스 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;999&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;999&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;CUBE, ROLLUP, GROUPING SETS, WITH CUBE, WITH ROLLUP 중 하나가 사용되는 경우 GROUP BY 절의 개별 식 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;GROUP BY 절의 연산자에 의해 생성되는 그룹화 집합 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;4,096&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;4,096&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;저장 프로시저당 매개 변수 개수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2,100&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2,100&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;사용자 정의 함수당 매개 변수 개수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2,100&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;2,100&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;테이블당 REFERENCES 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;253&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;253&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;테이블당 행 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;사용 가능한 저장소로 제한&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;사용 가능한 저장소로 제한&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;데이터베이스당 테이블 수&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;3&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;데이터베이스의 개체 수로 제한&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;데이터베이스의 개체 수로 제한&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;분할된 테이블 또는 인덱스당 파티션 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;1,000&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;1,000&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;인덱싱되지 않은 열의 통계&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;30,000&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;30,000&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;SELECT 문당 테이블 수&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;사용 가능한 리소스로만 제한&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;사용 가능한 리소스로만 제한&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;테이블당 트리거 수&lt;span class=&quot;sup&quot; style=&quot;vertical-align: super; &quot;&gt;3&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;데이터베이스의 개체 수로 제한&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;데이터베이스의 개체 수로 제한&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;UPDATE 문 당 열 수(넓은 테이블)&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;4096&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;4096&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;vertical-align: top; &quot;&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;사용자 연결&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32,767&lt;/p&gt;&lt;/td&gt;&lt;td style=&quot;border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(187, 187, 187); border-right-color: rgb(187, 187, 187); border-bottom-color: rgb(187, 187, 187); border-left-color: rgb(187, 187, 187); background-color: rgb(255, 255, 255); line-height: 18px; padding-right: 4px; padding-left: 4px; padding-bottom: 9px; margin-top: 1px; margin-right: 1px; margin-bottom: 1px; margin-left: 1px; padding-top: 9px; &quot;&gt;&lt;p style=&quot;position: relative; &quot;&gt;32,767&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;


&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Fri, 03 Feb 2012 11:36:11 +0900</pubDate>
                                    <slash:comments>6</slash:comments>
                    </item>
                <item>
            <title>DMV를 이용한 CPU 소켓 및 코어 수 확인.</title>
            <dc:creator>jevida(강성욱)</dc:creator>
            <link>http://www.sqler.com/475853</link>
			
            <guid isPermaLink="true">http://www.sqler.com/475853</guid>
                        <comments>http://www.sqler.com/475853#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;DMV  : select cpu_count, hyperthread_ratio, cpu_count/hyperthread_ratio as &apos;Sockets&apos; from sys.dm_os_sys_info&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;MSDN :  &lt;a class=&quot;con_link&quot; href=&quot;http://msdn.microsoft.com/en-us/library/ms175048.aspx&quot; target=&quot;_blank&quot;&gt;http://msdn.microsoft.com/en-us/library/ms175048.aspx&lt;/a&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;cpu_count : 전체적인 논리적  CPU 갯수&lt;/p&gt;&lt;p&gt;hyperthread_ratio : 하나의 물리적 CPU에 있는 논리적 또는 물리적 코어 수&lt;/p&gt;&lt;p&gt;sockets : CPU 소켓 갯수&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;그림 1.&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;6 CORE * 2 socket. Hyper Thread Enable.&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/853/475/3f476ce0bff61118856e461235bbba7f.png&quot; alt=&quot;2.png&quot; title=&quot;2.png&quot; class=&quot;iePngFix&quot; width=&quot;858&quot; height=&quot;599&quot; style=&quot;&quot; /&gt;
&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;그림 2.&lt;/p&gt;&lt;p&gt;4 CORE * 1 socket. Hyper Thread disable.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/853/475/aeba78f62cea6e8089debcd3bcdf4450.png&quot; alt=&quot;3.png&quot; title=&quot;3.png&quot; class=&quot;iePngFix&quot; width=&quot;855&quot; height=&quot;541&quot; style=&quot;&quot; /&gt;
&lt;/p&gt;&lt;div class=&quot;autosourcing-stub&quot;&gt;&lt;/div&gt;&lt;/div&gt;</description>
                        <pubDate>Fri, 03 Feb 2012 11:21:48 +0900</pubDate>
                        <category>SQL</category>
                        <category>하이퍼스레드</category>
                        <category>Hyperthread</category>
                        <category>dMV</category>
                        <category>sys.dm_os_sys_info</category>
                        <category>IT·컴퓨터</category>
                        <category>강성욱</category>
                        <category>SQLTAG</category>
                                    <slash:comments>3</slash:comments>
                    </item>
                <item>
            <title>[20111117]Technet 세미나 동영상 링크</title>
            <dc:creator>성대중(지우아빠)</dc:creator>
            <link>http://www.sqler.com/475144</link>
			
            <guid isPermaLink="true">http://www.sqler.com/475144</guid>
                        <comments>http://www.sqler.com/475144#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;


지난 11월 17일, TechNet SQL Server Seminar가 진행되었습니다.&lt;br /&gt;SQL Server 2012는 업무 핵심 응용 프로그램에 필요한 성능을 갖추었을 뿐만 아니라, 조직에서 올바른 데이터를 적시에 올바른 사용자에게&lt;br /&gt;제공할 수 있도록 지원하는 총체적 데이터 통합 및 관리 솔루션입니다. 또한 여러분이 서버와 공용, 사설 클라우드를 넘나들며 비즈니스&lt;br /&gt;솔루션을 빠르게 만들 수 있도록 도와줍니다. 2012년 상반기 출시를 앞두고 있는 SQL Server 2012에 대해 먼저 알아보실 수 있는 기회를&lt;br /&gt;놓치지 마시기 바랍니다.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://technet.microsoft.com/ko-kr/hh531242&quot;&gt;http://technet.microsoft.com/ko-kr/hh531242&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;감사합니다.&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Wed, 01 Feb 2012 14:20:48 +0900</pubDate>
                                </item>
                <item>
            <title>NUMA (Non-Uniform Memory Access)</title>
            <dc:creator>jevida(강성욱)</dc:creator>
            <link>http://www.sqler.com/474798</link>
			
            <guid isPermaLink="true">http://www.sqler.com/474798</guid>
                        <comments>http://www.sqler.com/474798#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;


NUMA에 대해서 정리 하였습니다.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;첨부 파일 다운 받으세요.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;다소 틀린 내용이 존재 할 수도 있습니다, (전 신이 아니에요!!)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;오류 부분에 대해서는 꾸준히 업데이트 하도록 하겠습니다.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/798/474/4ac1c2906e9756e354854b401387651c.png&quot; alt=&quot;numa.png&quot; title=&quot;numa.png&quot; class=&quot;iePngFix&quot; width=&quot;1021&quot; height=&quot;1020&quot; style=&quot;&quot; /&gt;
&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Tue, 31 Jan 2012 17:55:29 +0900</pubDate>
                                    <slash:comments>11</slash:comments>
                    </item>
                <item>
            <title>sp_who2 lastbatch 칼럼 이슈</title>
            <dc:creator>성대중(지우아빠)</dc:creator>
            <link>http://www.sqler.com/474762</link>
			
            <guid isPermaLink="true">http://www.sqler.com/474762</guid>
                        <comments>http://www.sqler.com/474762#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;SQL 프론티어 성대중입니다.&lt;/p&gt;  &lt;p&gt;이미 모두 다 알고 계시는 문제이지만 어제 방문했던 고객사에서 문의가 있어서 오랜만에 다시 생각이 나서 공유합니다.&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;[증상] &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;sp_who2 를 실행하였을때 lastbatch 칼럼의 시간이 정확하게 표시되지 않음&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/762/474/ad37cbe48a7da7cff80802db99442418.png&quot; alt=&quot;20120131문제증상.png&quot; title=&quot;20120131문제증상.png&quot; class=&quot;iePngFix&quot; width=&quot;1076&quot; height=&quot;275&quot; style=&quot;width: 678px; height: 159px;&quot; /&gt;
&lt;/p&gt;  &lt;p&gt;&lt;a href=&quot;files/attach/images/180490/762/474/20120131%EB%AC%B8%EC%A0%9C%EC%A6%9D%EC%83%81_2.png&quot;&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;[문제원인]&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;한글 운영체제에 한글 Collation을 사용하는 경우에 날짜형 데이터를 문자열로 변환하는 과정에서 자리수의 차이가 있기 때문입니다.&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/762/474/5ce0c90bef72543232423bffa9d6d600.png&quot; alt=&quot;20120131문제원인.png&quot; title=&quot;20120131문제원인.png&quot; class=&quot;iePngFix&quot; width=&quot;357&quot; height=&quot;330&quot; style=&quot;&quot; /&gt;
&lt;a href=&quot;files/attach/images/180490/762/474/20120131%EB%AC%B8%EC%A0%9C%EC%9B%90%EC%9D%B8_4.png&quot;&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;문제해결방법&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;시간 부분의 Substring 함수의 시작위치 값을 13 에서 &lt;span style=&quot;background-color: rgb(255, 239, 0);&quot;&gt;12로 변경하면 됩니다&lt;/span&gt;.&lt;/p&gt;  &lt;p&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/762/474/60ed89ac0cd5afe2a83ce374e3c5cda9.png&quot; alt=&quot;20120131문제해결.png&quot; title=&quot;20120131문제해결.png&quot; class=&quot;iePngFix&quot; width=&quot;378&quot; height=&quot;247&quot; style=&quot;&quot; /&gt;
&lt;a href=&quot;files/attach/images/180490/762/474/20120131%EB%AC%B8%EC%A0%9C%ED%95%B4%EA%B2%B0_2.png&quot;&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;뭐 이런 걸 쓰냐 하실 수도 있지만 누군가에게는 혹시 도움이 될 수 있을 것 같아서…&lt;/p&gt;  &lt;p&gt;감사합니다.&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Tue, 31 Jan 2012 16:24:59 +0900</pubDate>
                                    <slash:comments>2</slash:comments>
                    </item>
                <item>
            <title>문득 생각나서 - DBA라면...</title>
            <dc:creator>쓸만한게없네(윤선식)</dc:creator>
            <link>http://www.sqler.com/474331</link>
			
            <guid isPermaLink="true">http://www.sqler.com/474331</guid>
                        <comments>http://www.sqler.com/474331#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;&lt;a href=&quot;318397&quot;&gt;http://www.sqler.com/318397&lt;/a&gt;&amp;nbsp;SQL프론티어 2기. 최일주님.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;index.php?mid=bAnonTalk&amp;amp;page=2&amp;amp;document_srl=402338&quot;&gt;http://www.sqler.com/index.php?mid=bAnonTalk&amp;amp;page=2&amp;amp;document_srl=402338&lt;/a&gt;&amp;nbsp;익명게시판...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;다시 한 번 Remind!&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Mon, 30 Jan 2012 22:33:11 +0900</pubDate>
                        <category>SQLServer</category>
                        <category>DBA</category>
                                    <slash:comments>4</slash:comments>
                    </item>
                <item>
            <title>11_SQL 2008 강좌 - (3) 테이블 삭제 및 수정 (PDF첨부)</title>
            <dc:creator>jevida(강성욱)</dc:creator>
            <link>http://www.sqler.com/474000</link>
			
            <guid isPermaLink="true">http://www.sqler.com/474000</guid>
                        <comments>http://www.sqler.com/474000#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;line-height: 115%; font-size: 18pt;&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;테이블&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;  &lt;/span&gt;-&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;  &lt;/span&gt;&lt;/span&gt;삭제 및 수정&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;테이블 생성은 지난 시간에 살펴 보았다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;비즈니스의 구성에 따라 테이블이 삭제 되거나 수정이 필요할 때가 있다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;이번 시간은 테이블의 삭제 및 수정에 대해서 알아 본다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;line-height: 115%; font-size: 12pt;&quot; lang=&quot;EN-US&quot;&gt;1. &lt;/span&gt;&lt;/b&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;line-height: 115%; font-size: 12pt;&quot;&gt;테이블 삭제&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;테이블을 삭제하는 방법에는&lt;span lang=&quot;EN-US&quot;&gt; SSMS&lt;/span&gt;를 이용하는 방법과 직접 쿼리문을 입력하여 삭제하는 방법이 있다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;(MSDN &lt;/span&gt;참고&lt;/font&gt;&lt;/font&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;:&lt;br /&gt;&lt;a class=&quot;con_link&quot; href=&quot;http://msdn.microsoft.com/ko-kr/library/ms173790.aspx&quot; target=&quot;_blank&quot;&gt;http://msdn.microsoft.com/ko-kr/library/ms173790.aspx)&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;- SSMS &lt;/span&gt;이용하기&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;SSMS&lt;/span&gt;를 실행하여 해당&lt;span lang=&quot;EN-US&quot;&gt; DB&lt;/span&gt;에서&lt;span lang=&quot;EN-US&quot;&gt; [&lt;/span&gt;테이블&lt;span lang=&quot;EN-US&quot;&gt;] &lt;/span&gt;마우스 오른쪽을 클릭하여&lt;span lang=&quot;EN-US&quot;&gt;[&lt;/span&gt;삭제&lt;span lang=&quot;EN-US&quot;&gt;]&lt;/span&gt;를 선택한다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt; &lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;﻿&lt;/span&gt;&lt;/font&gt;&lt;/font&gt; &lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/631637e7dfe020bc4dd1a0799930db77.png&quot; alt=&quot;1.png&quot; title=&quot;1.png&quot; class=&quot;iePngFix&quot; width=&quot;356&quot; height=&quot;486&quot; style=&quot;&quot; /&gt;
&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;!-- Not Allowed Tag Filtered --&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;[&lt;/span&gt;개체 삭제&lt;span lang=&quot;EN-US&quot;&gt;] &lt;/span&gt;창에서 확인을 선택하면 테이블이 삭제 된다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/17f4aa893062cdf0c274c14e9c2b9c43.png&quot; alt=&quot;2.png&quot; title=&quot;2.png&quot; class=&quot;iePngFix&quot; width=&quot;901&quot; height=&quot;731&quot; style=&quot;&quot; /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;테이블을 삭제 하였는데 만약 삭제된 테이블을 참조하고 있는 다른 테이블이 있다면 어떻게 될까&lt;span lang=&quot;EN-US&quot;&gt;? &lt;/span&gt;사용하지 않는다고 생각했던 테이블의 삭제로 인하여 재앙이 발생할 수도 있다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;삭제하려는 테이블이 어느 테이블에 종속되어 있고 종속하고 있는지 확인 할 수 있다면 매우 좋을 것이다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;[&lt;/span&gt;개체 삭제&lt;span lang=&quot;EN-US&quot;&gt;] &lt;/span&gt;창에서&lt;span lang=&quot;EN-US&quot;&gt; [&lt;/span&gt;종속성 표시&lt;span lang=&quot;EN-US&quot;&gt;(H)]&lt;/span&gt;를 선택 한다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;삭제하려는 테이블이 종속하고 있거나 종속되어 있는 개체를 확인 할 수 있다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;(&lt;/span&gt;예시 그림을 위하여 다른 테이블의 종속 관례 그림을 첨부 하였다&lt;span lang=&quot;EN-US&quot;&gt;.)&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/590f62dc819c538afdd54857785c5b01.png&quot; alt=&quot;3.png&quot; title=&quot;3.png&quot; class=&quot;iePngFix&quot; width=&quot;900&quot; height=&quot;731&quot; style=&quot;&quot; /&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;- &lt;/span&gt;쿼리 이용하기&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;SSMS &lt;/span&gt;쿼리 분석기에 테이블 삭제 명령을 입력 한다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;TBL_A &lt;/span&gt;테이블 삭제&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;table style=&quot;border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;&quot; class=&quot;MsoTableGrid&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;&quot;&gt;&lt;td style=&quot;padding: 0cm 5.4pt; border: 1pt solid windowtext; width: 461.2pt; background-color: transparent; mso-border-alt: solid windowtext .5pt;&quot; valign=&quot;top&quot; width=&quot;615&quot;&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;DROP&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: blue;&quot;&gt;TABLE&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;TBL_A&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;테이블 삭제는 아주 간단 하다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;하지만 외래 키&lt;span lang=&quot;EN-US&quot;&gt;(FOREIGN KEY) &lt;/span&gt;제약조건의 기준 테이블은 삭제 할 수 없다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;따라서 외래 키의 기준이 되는 테이블이라면 왜래 키를 관계를 삭제 후 테이블을 삭제 하거나 외래 키가 생성된 테이블을 삭제하고 삭제 한다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;line-height: 115%; font-size: 12pt; mso-bidi-font-size: 11.0pt;&quot; lang=&quot;EN-US&quot;&gt;2. &lt;/span&gt;&lt;span style=&quot;line-height: 115%; font-size: 12pt; mso-bidi-font-size: 11.0pt;&quot;&gt;테이블 수정&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;테이블을 수정하는 방법에는&lt;span lang=&quot;EN-US&quot;&gt; SSMS&lt;/span&gt;를 이용한 방법과 쿼리문을 이용한 방법이 있다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;테이블의 열 추가 및 삭제&lt;span lang=&quot;EN-US&quot;&gt;, &lt;/span&gt;제약조건 추가 및 삭제&lt;span lang=&quot;EN-US&quot;&gt;, &lt;/span&gt;데이터 타입의 변경 방법 등을 학습해 보자&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;(MSDN &lt;/span&gt;참고&lt;/font&gt;&lt;/font&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;:&lt;br /&gt;&lt;a class=&quot;con_link&quot; href=&quot;http://msdn.microsoft.com/ko-kr/library/ms190273.aspx&quot; target=&quot;_blank&quot;&gt;http://msdn.microsoft.com/ko-kr/library/ms190273.aspx)&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt 38pt; text-indent: -18pt; mso-para-margin-left: 0gd; mso-list: l0 level1 lfo1;&quot; class=&quot;MsoListParagraph&quot;&gt;&lt;span style=&apos;mso-bidi-font-family: &quot;맑은 고딕&quot;; mso-fareast-font-family: &quot;맑은 고딕&quot;; mso-ascii-font-family: &quot;맑은 고딕&quot;; mso-hansi-font-family: &quot;맑은 고딕&quot;;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt;-&lt;/font&gt;&lt;span style=&apos;font: 7pt/normal &quot;Times New Roman&quot;; font-size-adjust: none; font-stretch: normal;&apos;&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;SSMS&lt;/span&gt;를 이용하기&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;SSMS&lt;/span&gt;를 실행하여 수정하려는 테이블에서 마우스 오른쪽 클릭&lt;span lang=&quot;EN-US&quot;&gt; [&lt;/span&gt;디자인&lt;span lang=&quot;EN-US&quot;&gt;(G)]&lt;/span&gt;을 선택 한다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt;&amp;nbsp;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/1892638d931f91351b28320db1370cd0.png&quot; alt=&quot;4.png&quot; title=&quot;4.png&quot; class=&quot;iePngFix&quot; width=&quot;356&quot; height=&quot;486&quot; style=&quot;&quot; /&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;디자인 창이 나타나면 열을 추가&lt;span lang=&quot;EN-US&quot;&gt; / &lt;/span&gt;삭제 할 수 있다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;또는 기존열의 데이터 타입을 변경 할 수 있다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/04cc1c5c87eafa2156404e9c54b88302.png&quot; alt=&quot;5.png&quot; title=&quot;5.png&quot; class=&quot;iePngFix&quot; width=&quot;492&quot; height=&quot;325&quot; style=&quot;&quot; /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;열의 위치를 변경 하고자 한다면 이동하려는 열을 드래그 하여 원하는 위치에 놓는다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/9416a9db8a4dc2cd555a2e16fbe4a405.png&quot; alt=&quot;6.png&quot; title=&quot;6.png&quot; class=&quot;iePngFix&quot; width=&quot;499&quot; height=&quot;326&quot; style=&quot;&quot; /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;디자인 창에서 테이블을 수정하고 나면 저장 버튼을 클릭하여 저장 후 닫는다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/eb40ebdb44daa99524eb77c8185d6910.png&quot; alt=&quot;7.png&quot; title=&quot;7.png&quot; class=&quot;iePngFix&quot; width=&quot;647&quot; height=&quot;300&quot; style=&quot;&quot; /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;테이블 정보가 변경된 것을 확인 하자&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/89aedc0edd569b1b302704d85db0968c.png&quot; alt=&quot;8.png&quot; title=&quot;8.png&quot; class=&quot;iePngFix&quot; width=&quot;352&quot; height=&quot;178&quot; style=&quot;&quot; /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;만약 저장 버턴을 선택하였는데 아래와 같은 경고 창이 나타날 수 있다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/28c13f30ea9399126ee438b80084ffa5.png&quot; alt=&quot;8_1.png&quot; title=&quot;8_1.png&quot; class=&quot;iePngFix&quot; width=&quot;529&quot; height=&quot;338&quot; style=&quot;&quot; /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;메뉴에서&lt;span lang=&quot;EN-US&quot;&gt; [&lt;/span&gt;도구&lt;span lang=&quot;EN-US&quot;&gt;] – [&lt;/span&gt;옵션&lt;span lang=&quot;EN-US&quot;&gt;]&lt;/span&gt;을 선택 한다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/22a6a1e297092639b2278a31fd050b0a.png&quot; alt=&quot;9.png&quot; title=&quot;9.png&quot; class=&quot;iePngFix&quot; width=&quot;495&quot; height=&quot;178&quot; style=&quot;&quot; /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;[&lt;/span&gt;옵션&lt;span lang=&quot;EN-US&quot;&gt;] &lt;/span&gt;창에서&lt;span lang=&quot;EN-US&quot;&gt; [Designer] – [&lt;/span&gt;테이블 및 데이터베이스 디자인&lt;span lang=&quot;EN-US&quot;&gt;] &lt;/span&gt;을 선택한다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;[&lt;/span&gt;테이블을 다시 만들어야 하는 변경 내용 저장 사용 안 함&lt;span lang=&quot;EN-US&quot;&gt;]&lt;/span&gt;의 체크를 해제 한다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/5c10af42aac7a6b071700ee5870c46eb.png&quot; alt=&quot;10.png&quot; title=&quot;10.png&quot; class=&quot;iePngFix&quot; width=&quot;691&quot; height=&quot;349&quot; style=&quot;&quot; /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;디자인 창에서 마우스 오른쪽을 클릭하면 열 삽입&lt;span lang=&quot;EN-US&quot;&gt; / &lt;/span&gt;삭제&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;키 설정 등 다양한 메뉴가 나타난다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;팝업 메뉴를 활용하여 사용자에 맞는 테이블을 수정 한다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/000/474/b279ff7d35f6e4d3afad7723fefcc9a3.png&quot; alt=&quot;11.png&quot; title=&quot;11.png&quot; class=&quot;iePngFix&quot; width=&quot;424&quot; height=&quot;353&quot; style=&quot;&quot; /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;mso-no-proof: yes;&quot; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt 38pt; text-indent: -18pt; mso-para-margin-left: 0gd; mso-list: l0 level1 lfo1;&quot; class=&quot;MsoListParagraph&quot;&gt;&lt;span style=&apos;mso-bidi-font-family: &quot;맑은 고딕&quot;; mso-fareast-font-family: &quot;맑은 고딕&quot;; mso-ascii-font-family: &quot;맑은 고딕&quot;; mso-hansi-font-family: &quot;맑은 고딕&quot;;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt;-&lt;/font&gt;&lt;span style=&apos;font: 7pt/normal &quot;Times New Roman&quot;; font-size-adjust: none; font-stretch: normal;&apos;&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;쿼리 이용하기&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;테이블의 수정은&lt;span lang=&quot;EN-US&quot;&gt; ALTER &lt;/span&gt;구문을 사용 한다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;기본 형식은 아래와 같다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;table style=&quot;border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;&quot; class=&quot;MsoTableGrid&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;&quot;&gt;&lt;td style=&quot;padding: 0cm 5.4pt; border: 1pt solid windowtext; width: 461.2pt; background-color: transparent; mso-border-alt: solid windowtext .5pt;&quot; valign=&quot;top&quot; width=&quot;615&quot;&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;ALTER&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: blue;&quot;&gt;TABLE&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ database_name . [ schema_name ]&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;.&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: fuchsia;&quot;&gt;schema_name&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;.&lt;/span&gt; ] &lt;span style=&quot;color: teal;&quot;&gt;table_name&lt;/span&gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;{&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ALTER&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;COLUMN&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;column_name&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ type_schema_name. ]&lt;/span&gt; &lt;span style=&quot;color: fuchsia;&quot;&gt;type_name&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;[ ( {  precision [ ,scale ]&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;            &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt;&lt;span style=&quot;color: fuchsia;&quot;&gt;max&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;xml_schema_collection&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt; ] &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ COLLATE collation_name ]&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ NULL | NOT NULL ]&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;[ SPARSE ]&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ADD&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;DROP&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ROWGUIDCOL&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;PERSISTED&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;NOT&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;FOR&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;REPLICATION&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;SPARSE&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;[ WITH {  CHECK | NOCHECK } ]&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ADD&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;    &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;column_definition&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;computed_column_definition&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;table_constraint&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;column_set_definition&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;[ ,...n ]&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;DROP&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ CONSTRAINT ]&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;constraint_name&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ WITH (  &amp;lt;drop_clustered_constraint_option&amp;gt; [ ,...n ]&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt; ]&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;COLUMN&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;column_name&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;[ ,...n ]&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;[ WITH {  CHECK | NOCHECK } ]&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;CHECK&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;NOCHECK&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;CONSTRAINT&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;ALL&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;constraint_name&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;[ ,...n ]&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ENABLE&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;DISABLE&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;TRIGGER&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;ALL&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;trigger_name&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;[ ,...n ]&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ENABLE&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;DISABLE&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;CHANGE_TRACKING&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ WITH ( TRACK_COLUMNS_UPDATED = { ON | OFF }  ) ]&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;SWITCH&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ PARTITION source_partition_number_expression ]&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;TO&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;target_table&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ PARTITION  target_partition_number_expression ]&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;SET &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;(&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;FILESTREAM_ON&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;partition_scheme_name&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;filegroup&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;                &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;&quot;default&quot;&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;&quot;NULL&quot;&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;REBUILD&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ [PARTITION = ALL]&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;[ WITH ( &amp;lt;rebuild_option&amp;gt; [ ,...n ]&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt; ] &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;[ PARTITION  = partition_number &lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;           &lt;/span&gt;[ WITH ( &amp;lt;single_partition_rebuild_option&amp;gt;  [ ,...n ]&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt;]&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;]&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;       &lt;/span&gt;]&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;(&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;table_option&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;&amp;gt;)&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;}&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;[ ; ]&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;column_set_definition&lt;/span&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: gray;&quot;&gt;::=&lt;/span&gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;column_set_name&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;XML&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;COLUMN_SET&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;FOR&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;ALL_SPARSE_COLUMNS&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;drop_clustered_constraint_option&lt;/span&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: gray;&quot;&gt;::=&lt;/span&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;MAXDOP&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;max_degree_of_parallelism&lt;/span&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;      &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ONLINE&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ON&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;OFF&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;MOVE&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;TO&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;partition_scheme_name&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;column_name&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;filegroup&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;          &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;&quot;default&quot;&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;table_option&lt;/span&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: gray;&quot;&gt;::=&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;         &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;SET &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;(&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;LOCK_ESCALATION&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;AUTO&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;TABLE&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;DISABLE&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&apos;color: teal; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;single_partition_rebuild__option&lt;/span&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: gray;&quot;&gt;::=&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;{&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;SORT_IN_TEMPDB&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ON&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;OFF&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;MAXDOP&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;max_degree_of_parallelism&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;     &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;DATA_COMPRESSION&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;{&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;NONE&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ROW&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;PAGE&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt; &lt;span style=&quot;color: gray;&quot;&gt;}&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;color: gray; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;}&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;MSDN&lt;/span&gt;에서 제공하는 문법을 보면 매우 복잡 하다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;하나씩 예를 들어 살펴 보자&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;ADDRESS &lt;/span&gt;열 추가&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;table style=&quot;border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;&quot; class=&quot;MsoTableGrid&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;&quot;&gt;&lt;td style=&quot;padding: 0cm 5.4pt; border: 1pt solid windowtext; width: 461.2pt; background-color: transparent; mso-border-alt: solid windowtext .5pt;&quot; valign=&quot;top&quot; width=&quot;615&quot;&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;ALTER&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: blue;&quot;&gt;TABLE&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;TBL_A&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 1;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ADD&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ADDRESS&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;NVARCHAR&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;(&lt;/span&gt;50&lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: green;&quot;&gt;-- &lt;/span&gt;&lt;/span&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&apos;color: green; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt; mso-bidi-font-family: &quot;Courier New&quot;; mso-ascii-font-family: &quot;Courier New&quot;; mso-hansi-font-family: &quot;Courier New&quot;;&apos;&gt;열추가&lt;/span&gt;&lt;span style=&apos;color: green; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 1;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;DEFAULT&lt;/span&gt; &lt;span style=&quot;color: red;&quot;&gt;&apos;SEOUL&apos;&lt;/span&gt; &lt;span style=&quot;color: green;&quot;&gt;-- &lt;/span&gt;&lt;/span&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&apos;color: green; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt; mso-bidi-font-family: &quot;Courier New&quot;; mso-ascii-font-family: &quot;Courier New&quot;; mso-hansi-font-family: &quot;Courier New&quot;;&apos;&gt;디폴트값&lt;/span&gt;&lt;span style=&apos;color: green; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 1;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;NULL&lt;/span&gt; &lt;span style=&quot;color: green;&quot;&gt;-- NULL &lt;/span&gt;&lt;/span&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&apos;color: green; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt; mso-bidi-font-family: &quot;Courier New&quot;; mso-ascii-font-family: &quot;Courier New&quot;; mso-hansi-font-family: &quot;Courier New&quot;;&apos;&gt;허용&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;ADDRESS &lt;/span&gt;열 삭제&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;table style=&quot;border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;&quot; class=&quot;MsoTableGrid&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;&quot;&gt;&lt;td style=&quot;padding: 0cm 5.4pt; border: 1pt solid windowtext; width: 461.2pt; background-color: transparent; mso-border-alt: solid windowtext .5pt;&quot; valign=&quot;top&quot; width=&quot;615&quot;&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;ALTER&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: blue;&quot;&gt;TABLE&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;TBL_A&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 1;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;DROP&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;COLUMN&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ADDRESS&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;ADRESS &lt;/span&gt;열 데이터 형식 변경&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;table style=&quot;border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;&quot; class=&quot;MsoTableGrid&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;&quot;&gt;&lt;td style=&quot;padding: 0cm 5.4pt; border: 1pt solid windowtext; width: 461.2pt; background-color: transparent; mso-border-alt: solid windowtext .5pt;&quot; valign=&quot;top&quot; width=&quot;615&quot;&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;ALTER&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: blue;&quot;&gt;TABLE&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;TBL_A&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 1;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ALTER&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;COLUMN&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;ADDRESS&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;NVARCHAR&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;(&lt;/span&gt;50&lt;span style=&quot;color: gray;&quot;&gt;)NULL&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;데이터 형식을 변경 할 때에는 열이 크기를 기존의 데이터 크기보다 커야 한다&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;ADDRESS &lt;/span&gt;열의 이름을&lt;span lang=&quot;EN-US&quot;&gt;NEW_ADDRESS &lt;/span&gt;이름으로 변경&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;table style=&quot;border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;&quot; class=&quot;MsoTableGrid&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;&quot;&gt;&lt;td style=&quot;padding: 0cm 5.4pt; border: 1pt solid windowtext; width: 461.2pt; background-color: transparent; mso-border-alt: solid windowtext .5pt;&quot; valign=&quot;top&quot; width=&quot;615&quot;&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;EXEC&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: maroon;&quot;&gt;sp_rename&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: red;&quot;&gt;&apos;ADDRESS&apos;&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: red;&quot;&gt;&apos;NEW_ADDRESS&apos;&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: red;&quot;&gt;&apos;COLUMN&apos;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;열의 제약 조건 추가&lt;span lang=&quot;EN-US&quot;&gt; (PRIMARY &lt;/span&gt;키&lt;span lang=&quot;EN-US&quot;&gt;)&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;table style=&quot;border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;&quot; class=&quot;MsoTableGrid&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;&quot;&gt;&lt;td style=&quot;padding: 0cm 5.4pt; border: 1pt solid windowtext; width: 461.2pt; background-color: transparent; mso-border-alt: solid windowtext .5pt;&quot; valign=&quot;top&quot; width=&quot;615&quot;&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;ALTER&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: blue;&quot;&gt;TABLE&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;TBL_A&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 1;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ADD&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;CONSTRAINT&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;PK_NAME&lt;/span&gt; &lt;span style=&quot;color: green;&quot;&gt;--&lt;/span&gt;&lt;/span&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&apos;color: green; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt; mso-bidi-font-family: &quot;Courier New&quot;; mso-ascii-font-family: &quot;Courier New&quot;; mso-hansi-font-family: &quot;Courier New&quot;;&apos;&gt;제약조건의이름&lt;/span&gt;&lt;span style=&apos;color: green; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 2;&quot;&gt;             &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;PRIMARY&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;KEY &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ADDRESS&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;열의 제약 조건 추가&lt;span lang=&quot;EN-US&quot;&gt; (FOREIGN &lt;/span&gt;키&lt;span lang=&quot;EN-US&quot;&gt;)&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;table style=&quot;border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;&quot; class=&quot;MsoTableGrid&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;&quot;&gt;&lt;td style=&quot;padding: 0cm 5.4pt; border: 1pt solid windowtext; width: 461.2pt; background-color: transparent; mso-border-alt: solid windowtext .5pt;&quot; valign=&quot;top&quot; width=&quot;615&quot;&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;ALTER&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: blue;&quot;&gt;TABLE&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;TBL_A&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 1;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ADD&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;CONSTRAINT&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;FK_NAME&lt;/span&gt; &lt;span style=&quot;color: green;&quot;&gt;--&lt;/span&gt;&lt;/span&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&apos;color: green; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt; mso-bidi-font-family: &quot;Courier New&quot;; mso-ascii-font-family: &quot;Courier New&quot;; mso-hansi-font-family: &quot;Courier New&quot;;&apos;&gt;제약조건의이름&lt;/span&gt;&lt;span style=&apos;color: green; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;mso-tab-count: 2;&quot;&gt;             &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;FOREIGN&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;KEY &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ADDRESS&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 1;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;REFERENCES&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;TBL_B&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;ADDRESS&lt;/span&gt;&lt;span style=&quot;color: gray;&quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;열 제약 조건 삭제&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;table style=&quot;border: currentColor; border-collapse: collapse; mso-border-alt: solid windowtext .5pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0cm 5.4pt 0cm 5.4pt;&quot; class=&quot;MsoTableGrid&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr style=&quot;mso-yfti-irow: 0; mso-yfti-firstrow: yes; mso-yfti-lastrow: yes;&quot;&gt;&lt;td style=&quot;padding: 0cm 5.4pt; border: 1pt solid windowtext; width: 461.2pt; background-color: transparent; mso-border-alt: solid windowtext .5pt;&quot; valign=&quot;top&quot; width=&quot;615&quot;&gt;&lt;font face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; text-align: left; line-height: normal; word-break: keep-all; mso-layout-grid-align: none;&quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;color: blue; font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;ALTER&lt;/span&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt; &lt;span style=&quot;color: blue;&quot;&gt;TABLE&lt;/span&gt;&lt;span style=&quot;color: teal;&quot;&gt;TBL_A&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 0pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&apos;font-family: &quot;Courier New&quot;; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt;&apos; lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-tab-count: 1;&quot;&gt;       &lt;/span&gt;&lt;span style=&quot;color: blue;&quot;&gt;DROP&lt;/span&gt; &lt;span style=&quot;color: blue;&quot;&gt;CONSTRAINT&lt;/span&gt; &lt;span style=&quot;color: teal;&quot;&gt;FK_NAME&lt;/span&gt; &lt;span style=&quot;color: green;&quot;&gt;--&lt;/span&gt;&lt;/span&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&apos;color: green; mso-no-proof: yes; mso-bidi-font-size: 10.0pt; mso-font-kerning: 0pt; mso-bidi-font-family: &quot;Courier New&quot;; mso-ascii-font-family: &quot;Courier New&quot;; mso-hansi-font-family: &quot;Courier New&quot;;&apos;&gt;제약조건의이름&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;이로써 테이블의 삭제 및 수정에 대해서 알아 보았다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;제약 조건에 대한 자세한 설명은 처음 소개한 링크의 주소에서 학습 하길 바란다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;친절히 한국어로 설명 되어 있다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;p style=&quot;margin: 0cm 0cm 10pt;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;맑은 고딕&quot;&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;font size=&quot;3&quot; face=&quot;굴림&quot;&gt;&lt;/font&gt;&lt;/div&gt;</description>
                        <pubDate>Sat, 28 Jan 2012 00:39:09 +0900</pubDate>
                        <category>SQLServer</category>
                        <category>SQL테이블</category>
                        <category>SQL데이터형식</category>
                        <category>SQL2008</category>
                        <category>2008R2</category>
                        <category>강성욱</category>
                        <category>SQL문법</category>
                        <category>데이터베이스</category>
                        <category>SQLTAG</category>
                        <category>IT·컴퓨터</category>
                                    <slash:comments>5</slash:comments>
                    </item>
                <item>
            <title>SSIS - 열 가져오기 - BLOB(Binary Large Object) 데이터를 저장하자.</title>
            <dc:creator>jevida(강성욱)</dc:creator>
            <link>http://www.sqler.com/473670</link>
			
            <guid isPermaLink="true">http://www.sqler.com/473670</guid>
                        <comments>http://www.sqler.com/473670#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;안녕하세요 SQL TAG 매니저(&lt;a class=&quot;con_link&quot; href=&quot;http://www.sqltag.org/&quot; target=&quot;_blank&quot;&gt;www.SQLTAG.org&lt;/a&gt;), SQL 프론티어 리드(&lt;a&gt;www.SQLER.com&lt;/a&gt;) 강성욱 입니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;요즘 SSIS를 공부하면서 매일 포스팅 하는 듯 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;혹시...이 글을 보시는 분들 중에....&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;저 사람은 일 안하고 맨날 블로그만 하나봐.....라고 오해 하실지도 모르나!!!&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;이렇게 공부를 해야! 회사에서도 잘 써먹는 답니다!!&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;개인의 실력 = 회사의 실력&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;참고로 제가 쓰고 있는 포스팅은 예전 한대성님께서 집필하신  SSIS 포켓북(2005)를 기본으로&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;  SQL Server2008R2 환경에서 재구성 하였습니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;흠... 다시 원위치로 돌아와서~&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;오늘은 &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;열 가져오기&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; 입니다. &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;열 가져오기 및 열 내보내기 (다음 포스팅 예정)는 BLOB (Binary Large Object)형 데이터를 대상로 수행 되는 작업 입니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;보통 이미지나 큰 텍스트 파일들을 보관할 때에는 데이터베이스에 주소만 기록하고 실제의 파일은 다른 물리적인 위치에 경유하는 경우가 많습니다. &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;하지만 SQL Server에서도 Image, Text, varbinary 등 데이터를 저장할 수 있는 타입을 제공 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;물론 이미지를 모두 데이터베이스에 저장한다면 데이터의 크기가 커지는 문제 및 패킷 사이즈의 문제가 발생하지만&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;데이터베이스 내에 저장되기 때문에 보안수준이 데이터베이스 수준과 동일하게 유지되고 관리의 편의성이 증대 되는 장점이 있습니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;(사용처에 대한 고민은 사용자가...알아서.....)&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;실습을 통해서 열 가져오기를 만들어 보겠습니다&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;1. 우선 테스트에 필요한 이미지 파일을 생성 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;저는 D:\Test 라는 폴더에  &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;1.png (저 이렇게 생겼어요 ㅋ 잘생겼나요?)&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; 2.png &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;이렇게 그림 파일을 생성 하였습니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;파일 경로 기억 하세요 ^^&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/50e2cc245b2fc6da4ac487bf07fad9e9.png&quot; alt=&quot;1.png&quot; title=&quot;1.png&quot; class=&quot;iePngFix&quot; width=&quot;986&quot; height=&quot;640&quot; style=&quot;&quot; /&gt;
&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;2. 테스트용 테이블을 생성 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;TBL_A : 원본 테이블&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;TBL_B : 출력 테이블&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;원본 테이블 (TBL_A)에 데이터를 입력 합니다. 이때 파일 경로를 실제 이미지 파일이 있는 경로로 입력 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;(파일 없으면 에러 납니다. 에러 처리에 관한 포스팅은 다음 기회에~!)&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/e2f42762d09d6880065c98dacbeba821.png&quot; alt=&quot;2.png&quot; title=&quot;2.png&quot; class=&quot;iePngFix&quot; width=&quot;627&quot; height=&quot;520&quot; style=&quot;&quot; /&gt;
&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;3. BIDS를 실행 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;프로젝트를 생성합니다.&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/9f32658e74d7062d2136dadec743512c.png&quot; alt=&quot;3.png&quot; title=&quot;3.png&quot; class=&quot;iePngFix&quot; width=&quot;804&quot; height=&quot;542&quot; style=&quot;&quot; /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;4. [데이터 흐름 태스크]를 만들고 [데이터 흐름] 탭에서 아래와 같이 작업을 끌어다 놓습니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;그리고 [열 가져오기]작업에서 [편집] 선택 합니다.&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/36aa61651728c55ae9f47f0598550f80.png&quot; alt=&quot;4.png&quot; title=&quot;4.png&quot; class=&quot;iePngFix&quot; width=&quot;556&quot; height=&quot;447&quot; style=&quot;&quot; /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;5. 편집기 창에서 [입력 열] 탭을 선택 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;입력 열에서 이미지 파일의 컬럼을 선택 합니다.&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/108a6ac025fe8bdbc5d44a9c295a00ff.png&quot; alt=&quot;5.png&quot; title=&quot;5.png&quot; class=&quot;iePngFix&quot; width=&quot;799&quot; height=&quot;721&quot; style=&quot;&quot; /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;6. 만약 지원되지 않는 열이 선택 된다면 오류가 발생 합니다.&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/c0a553cc81f4368ecbe348898f8fa446.png&quot; alt=&quot;6.png&quot; title=&quot;6.png&quot; class=&quot;iePngFix&quot; width=&quot;799&quot; height=&quot;807&quot; style=&quot;&quot; /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;7. [입/출력 속성] 탭으로 이동 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;[열 가져오기 출력]을 확장하여 [출력 열]을 확장 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;[열 추가(C)] 버튼을 선택하여 출력열을 생성하고 이름을 지정 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;이때 이름은 기존의 컬럼 명과 구분 할 수 있는 것으로 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;(뒤에서 매핑시 혼돈의 우려가 있기 때문에)&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/3b3b3582e9bbe325aeefd43b4a0abebd.png&quot; alt=&quot;7.png&quot; title=&quot;7.png&quot; class=&quot;iePngFix&quot; width=&quot;799&quot; height=&quot;721&quot; style=&quot;&quot; /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;8. [출력 열] - [Convert_Image] 속성에서 데이터 타입을 변경 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;[유니코드 텍스트 스트림]을 선택 합니다.&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/9c5da2fc845b9705f4e0feeb0dabe4ff.png&quot; alt=&quot;8.png&quot; title=&quot;8.png&quot; class=&quot;iePngFix&quot; width=&quot;776&quot; height=&quot;541&quot; style=&quot;&quot; /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;9. [Convert_Image]의 속성에서  ID 값(55) 을 기억 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/e49cf0e59ed5c6b4f5eba0957c0ef13f.png&quot; alt=&quot;8_1.png&quot; title=&quot;8_1.png&quot; class=&quot;iePngFix&quot; width=&quot;804&quot; height=&quot;857&quot; style=&quot;&quot; /&gt;
&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;10. [열 가져오기 입력] 을 확장하여 [입력 열] 에서 기존의 이미지 경로 컬럼을 선택합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;그리고 속성 창에서 [FileDataColumnID]를 Convert_Image 의 ID값을 입력하여 매핑 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/6c51371e73370bbf11038019622983a9.png&quot; alt=&quot;8_2.png&quot; title=&quot;8_2.png&quot; class=&quot;iePngFix&quot; width=&quot;804&quot; height=&quot;857&quot; style=&quot;&quot; /&gt;
&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/6c51371e73370bbf11038019622983a9.png&quot; alt=&quot;8_2.png&quot; title=&quot;8_2.png&quot; class=&quot;iePngFix&quot; width=&quot;804&quot; height=&quot;857&quot; style=&quot;&quot; /&gt;
&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;11. 출력 선을 모두 연결 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;TBL_B에서 [편집]을 선택 합니다.&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/46a4541a5fe4a72b48e0b8d2182c1e42.png&quot; alt=&quot;9.png&quot; title=&quot;9.png&quot; class=&quot;iePngFix&quot; width=&quot;590&quot; height=&quot;555&quot; style=&quot;&quot; /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;12. TBL_B의 [편집기]창에서 입력열과 출력열에 대한 매핑을 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;기존의 add_file이 아닌 변환된 값을 저장하여야 하므로 입력열 - 출력열 의 매핑을 변경 합니다.&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/9f1fca5e3a70c6bb90cc67bd0b8e83d7.png&quot; alt=&quot;10.png&quot; title=&quot;10.png&quot; class=&quot;iePngFix&quot; width=&quot;832&quot; height=&quot;721&quot; style=&quot;&quot; /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;13. 패키지를 실해 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;늘 그러듯!&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(0, 158, 37); font-size: 12pt;&quot;&gt;&lt;strong&gt;녹색 :  정상 실행&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0); font-size: 12pt;&quot;&gt;&lt;strong&gt;빨간색 : 오류 발생&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/d6770042105a52df04a176b08ece9af3.png&quot; alt=&quot;11.png&quot; title=&quot;11.png&quot; class=&quot;iePngFix&quot; width=&quot;332&quot; height=&quot;355&quot; style=&quot;&quot; /&gt;

&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;14. 데이터를 확인 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;기존 TBL_A에는 파일의 경로만 가지고 있습니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;TBL_B에는 해당 경로의 그림파일에 대한 바이너리 값이 저장된 것을 확인 할 수 있습니다.&lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/670/473/ef6ebea24858039300dc7ce29461d761.png&quot; alt=&quot;12.png&quot; title=&quot;12.png&quot; class=&quot;iePngFix&quot; width=&quot;616&quot; height=&quot;338&quot; style=&quot;&quot; /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;열 가져오기를 활용하면 외부의 다른 툴 없이도 그림파일을 간단히 DB로 저장할 수 있을 듯 합니다.&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;strong&gt;활용은 이 글을 읽는 여러분의 몫 입니다 ^^&lt;/strong&gt;&lt;/span&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;﻿&lt;/span&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: rgb(0, 117, 200); font-size: 11pt;&quot;&gt;﻿기타 질문 및 문의 사항은 쪽지 또는 메일로 주시면 친절히 상담해 드립니다 ^^&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 117, 200); font-size: 11pt;&quot;&gt; &lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;﻿&lt;/span&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;﻿&lt;/span&gt; &lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt; &lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Thu, 26 Jan 2012 23:12:16 +0900</pubDate>
                        <category>SSIS</category>
                        <category>ETL</category>
                        <category>데이터가져오기</category>
                        <category>MSSQLSERVER</category>
                        <category>SQLSERVER2008R2</category>
                        <category>SQL2008r2</category>
                        <category>sql2008·컴퓨터</category>
                        <category>강성욱</category>
                        <category>SQLTAG</category>
                                    <slash:comments>2</slash:comments>
                    </item>
                <item>
            <title>SQL2012 출시임박</title>
            <dc:creator>성대중(지우아빠)</dc:creator>
            <link>http://www.sqler.com/473655</link>
			
            <guid isPermaLink="true">http://www.sqler.com/473655</guid>
                        <comments>http://www.sqler.com/473655#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;


드디어 SQL Server 2012가 저희의 곁으로 다가옵니다&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;오늘 가상 제품출시 이벤트 각종 SNS에 등장했고, 이미 등록페이지도 열려 있습니다.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.sqlserverlaunch.com/ww/Home&quot;&gt;http://www.sqlserverlaunch.com/ww/Home&lt;/a&gt;&lt;/p&gt;&lt;p&gt;2012년 3월 7일에 가상 제품 출시 이벤트가 진행된다고 합니다.&lt;/p&gt;&lt;p&gt;두근두근...&lt;/p&gt;&lt;p&gt; &lt;img src=&quot;http://www.sqler.com/files/attach/images/123574/648/473/359189848ed5f73880598ad036b69a52.png&quot; alt=&quot;2012릴리즈.png&quot; title=&quot;2012릴리즈.png&quot; class=&quot;iePngFix&quot; width=&quot;969&quot; height=&quot;382&quot; style=&quot;&quot; /&gt;
&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Thu, 26 Jan 2012 19:32:57 +0900</pubDate>
                                    <slash:comments>2</slash:comments>
                    </item>
                <item>
            <title>execute as owner 활용하기</title>
            <dc:creator>차주언</dc:creator>
            <link>http://www.sqler.com/473521</link>
			
            <guid isPermaLink="true">http://www.sqler.com/473521</guid>
                        <comments>http://www.sqler.com/473521#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p style=&quot;text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot; class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;line-height: normal;&quot;&gt;&lt;font color=&quot;#008000&quot; face=&quot;Fixedsys&quot;&gt;-- execute as owner 활용하기&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- 간만에 글올려봅니다... 화끈하게 어렵고 재미난 글은 아닙니다만... ^^&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- 보통 DB에 SQL 실행권한만 주고 관리들 하시죠? 그때 도움되는 아티클입니다.&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;--&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;--&amp;nbsp;&lt;span style=&quot;color: green; &quot;&gt;예제&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Fixedsys; color: green; &quot;&gt;DB&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: green; &quot;&gt;생성&lt;/span&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;CREATE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:blue&quot;&gt;DATABASE&lt;/span&gt;
&lt;span style=&quot;color:teal&quot;&gt;TESTDB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;테스트에 쓸 계정 생성&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;USE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:teal&quot;&gt;[MASTER]&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;CREATE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:blue&quot;&gt;LOGIN&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;[AUser]&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;WITH&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;PASSWORD&lt;/span&gt;&lt;span style=&quot;color:gray&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color:red&quot;&gt;N&apos;1234&apos;&lt;/span&gt;&lt;span style=&quot;color:gray&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;DEFAULT_DATABASE&lt;/span&gt;&lt;span style=&quot;color:gray&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color:teal&quot;&gt;[master]&lt;/span&gt;&lt;span style=&quot;color:gray&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;CHECK_EXPIRATION&lt;/span&gt;&lt;span style=&quot;color:gray&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color:blue&quot;&gt;OFF&lt;/span&gt;&lt;span style=&quot;color:gray&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;CHECK_POLICY&lt;/span&gt;&lt;span style=&quot;color:gray&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color:blue&quot;&gt;OFF&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;USE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:teal&quot;&gt;[TESTDB]&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;CREATE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:fuchsia&quot;&gt;USER&lt;/span&gt;
&lt;span style=&quot;color:teal&quot;&gt;[AUser]&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;FOR&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;LOGIN&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;[AUser]&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;USE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:teal&quot;&gt;[TESTDB]&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;ALTER&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:fuchsia&quot;&gt;USER&lt;/span&gt;
&lt;span style=&quot;color:teal&quot;&gt;[AUser]&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;WITH&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;DEFAULT_SCHEMA&lt;/span&gt;&lt;span style=&quot;color:gray&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color:teal&quot;&gt;[dbo]&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;실행 권한을 가지는 그룹&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;USE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:teal&quot;&gt;[TESTDB]&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;CREATE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:blue&quot;&gt;ROLE&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;[APP_USERGROUP]&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;AUTHORIZATION&lt;/span&gt;
&lt;span style=&quot;color:teal&quot;&gt;[dbo]&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;그룹에 계정 추가&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;EXEC&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:maroon&quot;&gt;sp_addrolemember&lt;/span&gt;&lt;span style=&quot;color:blue&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color:red&quot;&gt;N&apos;APP_USERGROUP&apos;&lt;/span&gt;&lt;span style=&quot;color:gray&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color:red&quot;&gt;N&apos;AUser&apos;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-----------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;CREATE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:blue&quot;&gt;TABLE&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:gray&quot;&gt;(&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style=&quot;color:teal&quot;&gt;i&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;int&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:gray&quot;&gt;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;CREATE&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:blue&quot;&gt;PROC&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;usp_select_tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;AS&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style=&quot;color:blue&quot;&gt;select&lt;/span&gt; &lt;span style=&quot;color:gray&quot;&gt;*&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;from&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;그룹에 실행 권한 주기&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;EXEC&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:teal&quot;&gt;[sp_GrantExecToSP]&lt;/span&gt;&lt;span style=&quot;color:blue&quot;&gt; &lt;/span&gt;&lt;span style=&quot;color:red&quot;&gt;&apos;APP_USERGROUP&apos;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:red&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- AUser&lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;는 프로시저 실행 권한만 있다&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;setuser&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:red&quot;&gt;&apos;Auser&apos;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:red&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;EXEC&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:teal&quot;&gt;usp_select_tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;잘된다&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;그런데&amp;nbsp;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;truncate
&lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;가 쿼리 안에 있는 경우&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;setuser&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;alter&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:blue&quot;&gt;PROC&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;usp_select_tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;AS&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style=&quot;color:blue&quot;&gt;truncate&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;table&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;setuser&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:red&quot;&gt;&apos;Auser&apos;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:red&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;EXEC&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:teal&quot;&gt;usp_select_tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;에러&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;그러면 에러가 안뜨게 할려면 권한을 무엇을 줘야할까요&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:
Fixedsys;color:green&quot;&gt;?&lt;o:p&gt;&lt;/o:p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;setuser&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;alter&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:blue&quot;&gt;PROC&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;usp_select_tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;WITH&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:blue&quot;&gt;EXECUTE&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;AS&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;OWNER&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;AS&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style=&quot;color:blue&quot;&gt;truncate&lt;/span&gt; &lt;span style=&quot;color:blue&quot;&gt;table&lt;/span&gt; &lt;span style=&quot;color:teal&quot;&gt;tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;GO&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;setuser&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:red&quot;&gt;&apos;Auser&apos;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;데이터베이스 소유자를 실제사용되는&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;owner&lt;span style=&quot;mso-ascii-font-family:Fixedsys;
mso-hansi-font-family:Fixedsys;color:green&quot;&gt;계정으로 적어준다&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;(Administrator&lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;에서 sa로변경&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;)&lt;o:p&gt;&lt;/o:p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:blue&quot;&gt;EXEC&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys&quot;&gt; &lt;span style=&quot;color:teal&quot;&gt;usp_select_tb1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:teal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:teal&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;그런데 동적쿼리가 쿼리 안에 있는 경우&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;line-height: normal; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;-- SELECT &lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;면&amp;nbsp;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;color:green&quot;&gt;SELECT
&lt;/span&gt;&lt;span style=&quot;mso-ascii-font-family:Fixedsys;mso-hansi-font-family:Fixedsys;
color:green&quot;&gt;권한있는계정을&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:Fixedsys;
color:green&quot;&gt;Caller&lt;span style=&quot;mso-ascii-font-family:Fixedsys;
mso-hansi-font-family:Fixedsys;color:green&quot;&gt;로사용한다.&amp;nbsp;&lt;/div&gt;</description>
                        <pubDate>Thu, 26 Jan 2012 16:03:28 +0900</pubDate>
                        <category>차주언</category>
                        <category>SQLER</category>
                        <category>MSSQLTIP</category>
                        <category>SQL프론티어</category>
                                    <slash:comments>5</slash:comments>
                    </item>
                <item>
            <title>sql 2012의 핵심?</title>
            <dc:creator>이상현(애아범)</dc:creator>
            <link>http://www.sqler.com/473055</link>
			
            <guid isPermaLink="true">http://www.sqler.com/473055</guid>
                        <comments>http://www.sqler.com/473055#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;MS의 최훈 부장님 인터뷰 인데.&lt;/p&gt;&lt;p&gt;2012의 핵심을 한마디로 잘 이해할수 있는 기사 인것 같습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;고가용성, BI,클라우드&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;개인적으로 빅데이터를 위한 애저+하둡의 개념이 가장 기대됩니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;http://www.ddaily.co.kr/news/news_view.php?uid=86589&quot;&gt;http://www.ddaily.co.kr/news/news_view.php?uid=86589&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;


&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Wed, 25 Jan 2012 10:33:53 +0900</pubDate>
                                    <slash:comments>2</slash:comments>
                    </item>
                <item>
            <title>IIF 함수가 SQL2012에 추가되었군요.</title>
            <dc:creator>코난(김대우)</dc:creator>
            <link>http://www.sqler.com/472992</link>
			
            <guid isPermaLink="true">http://www.sqler.com/472992</guid>
                        <comments>http://www.sqler.com/472992#comment</comments>
                                    <description>&lt;div class=&quot;xe_content&quot;&gt;&lt;p&gt;다른 개발 언어에는 존재하는 함수이나 SQL에 없어 힘드셨을 수도요...&lt;/p&gt;&lt;p&gt;IF ELSE나 CASE로 사용하셨던 분들은 이제 SQL2012 부터는 IIF 쓰시면 되겠네요.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;많은 도움 되시길 바랍니다.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;출처 : &lt;a href=&quot;http://sqlcommunity.com&quot;&gt;http://sqlcommunity.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;IIF() function is new to SQL Server family of functions. It is a brand new logical function being introduced with SQL Server 2012 that allows you to perform IF..THEN..ELSE condition within a single function. This helps in simplified code and easy to read conditions.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;In earlier versions of SQL Server, we have used IF..ELSE and CASE..ENDCASE to perform logical conditional operations. However, IIF() can be used as a shorthand way of writing conditional CASE statements in a single function. It evaluates the expression passed in the first parameter with the second parameter depending upon the evaluation of the condition and returns either TRUE or FALSE. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;table style=&quot;margin: auto auto auto 45.9pt; border: currentColor; border-collapse: collapse;&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;&lt;/span&gt;&lt;tbody&gt;&lt;tr&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;td style=&quot;background: rgb(238, 236, 225); padding: 0in 5.4pt; border: 1pt solid windowtext; width: 391.5pt;&quot; valign=&quot;top&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;In this example, we will evaluate the values of two variables and return the result of a variable which is bigger in value.&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/td&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/tr&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;tr&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;td style=&quot;border-width: 0px 1pt 1pt; border-style: none solid solid; border-color: rgb(0, 0, 0) windowtext windowtext; padding: 0in 5.4pt; width: 391.5pt; background-color: transparent;&quot; valign=&quot;top&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;DECLARE @A INT=40&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;DECLARE @B INT=30&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;SELECT IIF(@A &amp;gt; @B, &apos;A IS GREATER THAN B&apos;, &apos;B IS GREATER THAN A&apos;)&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;GO;&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;Executing the above T-SQL will return the following result:&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;-------------------&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;A IS GREATER THAN B&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;(1 row(s) affected)&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/td&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/tr&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;table style=&quot;margin: auto auto auto 45.9pt; border: currentColor; border-collapse: collapse;&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;tbody&gt;&lt;tr&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;td style=&quot;background: rgb(238, 236, 225); padding: 0in 5.4pt; border: 1pt solid windowtext; width: 391.5pt;&quot; valign=&quot;top&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;In this example, we will evaluate the age of John and Julie and identify who is older between them. Please observe the use of sub functions within IIF.&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/td&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/tr&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;tr&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;td style=&quot;border-width: 0px 1pt 1pt; border-style: none solid solid; border-color: rgb(0, 0, 0) windowtext windowtext; padding: 0in 5.4pt; width: 391.5pt; background-color: transparent;&quot; valign=&quot;top&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;DECLARE @JOHN_AGE INT=35&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;DECLARE @JULIE_AGE INT=29&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;SELECT IIF(@JOHN_AGE &amp;gt; @JULIE_AGE, &apos;JOHN IS OLDER THAN JULIE BY &apos;+LTRIM(STR(@JOHN_AGE-@JULIE_AGE))+&apos; YEARS&apos;, &apos;JULIE IS OLDER THAN JOHN BY &apos;+LTRIM(STR(@JULIE_AGE-@JOHN_AGE))+&apos; YEARS&apos;)&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;GO;&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;Executing the above statement will return the following result:&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;--------------------------------------------&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;JOHN IS OLDER THAN JULIE BY 6 YEARS&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;(1 row(s) affected)&lt;/span&gt;&lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;p&gt; &lt;/p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/td&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/tr&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;Note: Like CASE statements which can be nested up to 10 levels, IIF() function can also nest up to 10 levels.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description>
                        <pubDate>Wed, 25 Jan 2012 10:15:27 +0900</pubDate>
                        <category>IIF</category>
                        <category>함수</category>
                        <category>CASE</category>
                        <category>IF</category>
                        <category>ELSE</category>
                        <category>조건</category>
                        <category>분기</category>
                        <category>SQL서버</category>
                        <category>SQL2012</category>
                        <category>MSSQL</category>
                        <category>Microsoft SQL Server</category>
                                    <slash:comments>4</slash:comments>
                    </item>
            </channel>
</rss>

