生成建表脚本up_CreateTable

 已经很久没用使用这个脚本了,今天用到,并做修改,增加了生成扩展属性功能。

 

Go
if object_ID('[up_CreateTable]') is not nullDrop Procedure [up_CreateTable]
Go
/* 生成建表脚本(V4.0)  Andy 2017-3-28 */
Create Proc up_CreateTable
(@objectList nvarchar(max)=null
)
as
--With ENCRYPTION/*  参数说明:@objectList 对象列表,对象之间使用","隔开存储过程生成的建表脚本,包含Column,Constraint,Index,extended_propertiesModify: andy 2017-3-28 增加了扩展属性
*/
Set Nocount OnDeclare @sql nvarchar(max),@objectid int,@id int,@Rowcount int,@ObjectName sysname,@Enter nvarchar(2),@Tab nvarchar(2)Select     @Enter=Char(13)+Char(10),@Tab=Char(9)    Declare @Tmp Table(name sysname)If @objectList>''BeginSet @sql='Select N'''+Replace(@objectList,',',''' Union All Select N''')+''''Insert Into @Tmp (name) Exec(@sql)Set @sql=nullSelect @sql=Isnull(@sql+',','')+name From @Tmp As aWhere Not Exists(Select 1 From sys.objects Where type='U' And name=a.name)If @sql>''BeginSet @sql='发现无效的表名: '+@sqlRaiserror (50001,-1,-1, @sql)Return(1)EndEndIf object_id('tempdb..#Objects') Is Not NullDrop Table #ObjectsIf object_id('tempdb..#Columns') Is Not NullDrop Table #Columns    Create Table #Objects(id int Identity(1,1) Primary Key,object_id int,name sysname);With t As(Select Object_id,Convert(int,0) As LevelNo,name As object_nameFrom sys.objects aWhere Type='U' And is_ms_shipped=0 And Not Exists(Select 1 From sys.foreign_keys Where referenced_object_id=a.object_id)Union AllSelect a.referenced_object_id As Object_id,b.LevelNo+1 As LevelNo,c.name As object_nameFrom sys.foreign_keys aInner Join t b On b.object_id=a.parent_object_idInner Join sys.objects c On c.object_id=a.referenced_object_id And c.is_ms_shipped=0where a.referenced_object_id<>a.parent_object_id)Insert Into #Objects(object_id,name)Select a.object_id,object_nameFrom t aWhere    Not Exists(Select 1 From t Where object_id=a.object_id And LevelNo>a.LevelNo) AndNot Exists(Select 1 From sys.extended_properties Where major_id=a.object_id And minor_id=0 And class=1 And Name=N'microsoft_database_tools_support')And (Exists(Select 1 From @Tmp Where name=a.object_name) Or Not Exists(Select 1 From @Tmp))Group By object_id,object_name,LevelNoOrder By LevelNo DescSet @Rowcount=@@RowcountIf @Rowcount=0Begin-- Raiserror 50001 N'没有可以生产脚本的表!'Raiserror (50001,-1,-1, N'没有可以生产脚本的表!')Return(1)End--ColumnSelect    a.object_id,a.column_id As Seq,Cast(1 As tinyint) As DefinitionType,Quotename(a.name)+Char(32)+ c.name +Case When a.user_type_id In (231,239) Then '('+Case a.max_length When -1 Then 'Max' Else Rtrim(a.max_length/2) End +')'When a.user_type_id In (62,165,167,173,175) Then '('+Case a.max_length When -1 Then 'Max' Else Rtrim(a.max_length) End+')'When a.user_type_id In (106,108) Then '('+Rtrim(a.[precision])+','+Rtrim(a.scale)+')' Else ''End+ Char(32)+Case a.is_rowguidcol When 1 Then 'Rowguidcol ' Else '' End +Case a.is_identity When 1 Then 'Identity('+Cast(d.seed_value As nvarchar(10))+','+Cast(d.increment_value As nvarchar(10))+') ' Else '' End+ Case a.is_nullable When 1 Then 'Null ' Else 'Not Null ' End+Isnull('Constraint '+Quotename(e.name)+' Default('+e.definition+')','') As definitionInto #ColumnsFrom sys.columns As aInner Join #Objects As b On b.object_id=a.object_idInner Join sys.types As c On c.user_type_id=a.user_type_idLeft Outer Join sys.identity_columns As d On d.object_id=a.object_id And d.column_id=a.column_id And a.is_identity=1Left Outer Join sys.Default_constraints As e On e.object_id=a.default_object_id And e.parent_column_id=a.column_idCreate Nonclustered Index IX_#Columns_object_id On #Columns(object_id Asc)--ConstraintInsert Into #ColumnsSelect    a.parent_object_id As object_id,Row_number() Over(Partition By a.parent_object_id Order By Case a.type When 'PK' Then 1 When 'C' Then 2 Else 3 End)As Seq,2 As DefinitionType,'Alter Table '+Quotename(object_name(a.parent_object_id)) +' Add Constraint '+Quotename(a.name)+Case a.type When 'PK' Then ' Primary Key '+Case When Exists(Select 1 From sys.indexes Where object_id=a.parent_object_id And is_primary_key=1 And type=1) Then N'Clustered ' Else N'Nonclustered ' End+'('+Stuff((Select ','+Quotename(c1.Name)+Case a1.is_descending_key When 1 Then ' Desc' Else ' Asc' EndFrom sys.index_columns As a1Inner Join sys.indexes As b1 On b1.object_id=a1.object_id And b1.index_id=a1.index_id And b1.is_primary_key=1Inner Join sys.columns As c1 On c1.object_id=a1.object_id And c1.column_id=a1.column_idWhere a1.object_id=a.parent_object_id For Xml Path('')),1,1,'')+')'When 'F' Then ' Foreign Key ('+Stuff((Select ','+Quotename(b1.Name)From sys.foreign_key_columns As a1Inner Join sys.columns As b1 On b1.object_id=a1.parent_object_id And b1.column_id=a1.parent_column_idWhere a1.constraint_object_id=a.object_id Order By a1.constraint_column_idFor Xml Path('')),1,1,'')+') References '+(Select Quotename(object_name(referenced_object_id)) From  sys.foreign_keys Where object_id=a.object_id)+' ('+Stuff((Select ','+Quotename(b1.Name)From sys.foreign_key_columns As a1Inner Join sys.columns As b1 On b1.object_id=a1.referenced_object_id And b1.column_id=a1.referenced_column_idWhere a1.constraint_object_id=a.object_id Order By a1.constraint_column_idFor Xml Path('')),1,1,'')+')'When 'UQ' Then ' Unique'+(Select Case a1.type When 1 Then ' Clustered' Else ' Nonclustered' EndFrom sys.indexes As a1Where a1.object_id=a.parent_object_id And Exists(Select 1 From sys.key_constraints Where object_id=a.object_id And parent_object_id=a1.object_id And unique_index_id=a1.index_id))+                        '('+Stuff((Select ','+Quotename(c1.Name)+Case a1.is_descending_key When 1 Then ' Desc' Else ' Asc' EndFrom sys.index_columns As a1Inner Join sys.indexes As b1 On b1.object_id=a1.object_id And b1.index_id=a1.index_id And b1.is_unique_constraint=1Inner Join sys.columns As c1 On c1.object_id=a1.object_id And c1.column_id=a1.column_idWhere a1.object_id=a.parent_object_id And Exists(Select 1 From sys.key_constraints Where object_id=a.object_id And parent_object_id=a1.object_id And unique_index_id=a1.index_id)For Xml Path('')),1,1,'')+')'When 'C' Then ' Check' +(Select definition From sys.check_constraints Where object_id=a.object_id)Else ''End As definitionFrom sys.objects As aWhere a.type In('PK','F','C','UQ')And Exists(Select 1  From #Objects Where object_id=a.parent_object_id)--IndexInsert Into #ColumnsSelect    a.object_id ,a.index_id As Seq,3 As DefinitionType,'Create '+Case a.is_unique When 1 Then 'Unique ' Else '' End+Case a.type When 1 Then 'Clustered ' Else 'Nonclustered ' End+'Index '+Quotename(a.name)+' On '+Quotename(b.name)+' ('+Stuff((Select ','+Quotename(b1.Name)+Case a1.is_descending_key When 1 Then ' Desc' Else ' Asc' EndFrom sys.index_columns As a1Inner Join sys.columns As b1 On b1.object_id=a1.object_id And b1.column_id=a1.column_idWhere a1.object_id=a.object_id And a.index_id=a1.index_id And a1.is_included_column=0For Xml Path('')),1,1,'')+')'+Isnull(' Include('+Stuff((Select ','+Quotename(b1.Name)From sys.index_columns As a1Inner Join sys.columns As b1 On b1.object_id=a1.object_id And b1.column_id=a1.column_idWhere a1.object_id=a.object_id And a.index_id=a1.index_id And a1.is_included_column=1For Xml Path('')),1,1,'')+')','')As definitionFrom sys.indexes As aInner Join #Objects As b On b.object_id=a.object_idWhere a.type>0And Not Exists(Select 1 From sys.key_constraints Where parent_object_id=a.object_id And unique_index_id=a.index_id)--extended_properties Andy 2017-3-28 添加扩展属性insert into #Columns select b.object_id,a.major_id as Seq,4 as DefinitionType,case a.minor_id when 0 then 'execute sp_addextendedproperty ''MS_Description'','''+convert(nvarchar(max),a.value)+''', ''user'', ''dbo'', ''table'', '+quotename(b.name,'''')else 'execute sp_addextendedproperty ''MS_Description'','''+convert(nvarchar(max),a.value)+''', ''user'', ''dbo'', ''table'', '+quotename(b.name,'''')+',''column'','+quotename(c.name,'''')end from  sys.extended_properties a inner join #Objects b on b.object_id=a.major_idinner join sys.columns c on c.object_id=b.object_idand c.column_id=a.minor_idwhere a.class=1--Print/*Print 'Use '+Quotename(db_name())+@Enter+'Go'+@Enter+'/* 创建表结构 Andy '+Convert(nvarchar(10),Getdate(),120)+'*/'+@EnterSet @id=1While @id<=@RowcountBeginSelect @objectid=object_id,@ObjectName=name From #Objects Where id=@idSet @Sql=@Enter+'--('+Rtrim(@id)+'/'+Rtrim(@Rowcount)+') '+@ObjectName+@Enter+'If object_id('''+Quotename(@ObjectName)+''') Is Null'+@Enter+'Begin'+@Enter+@Tab+'Create Table '+Quotename(@ObjectName)+@Enter+@Tab+'('+@EnterSelect @Sql=@Sql+@Tab+@Tab+definition+','+@EnterFrom #Columns Where object_id=@objectid And DefinitionType=1Group By Seq,definitionOrder By SeqSet @sql=Substring(@sql,1,Len(@sql)-3)+@Enter+@Tab+')'+@EnterSelect @Sql=@Sql+@Tab+definition+@EnterFrom #Columns Where object_id=@objectid And DefinitionType>1Group By DefinitionType,Seq,definitionOrder By SeqPrint Substring(@sql,1,Len(@sql)-2)+@Enter+'End'Set @id=@id+1End*/--Modify Nr:20100510 StartDeclare @MaxRow intif object_id('tempdb..#Print') Is Not NullDrop Table #PrintCreate Table #Print(Row int Identity(1,1) Primary Key,Sql nvarchar(4000))Print 'Use '+Quotename(db_name())+@Enter+'Go'+@Enter+'/* 创建表结构 Andy '+Convert(nvarchar(10),Getdate(),120)+'*/'+@EnterSet @id=1While @id<=@RowcountBeginSelect @objectid=object_id,@ObjectName=name From #Objects Where id=@idInsert Into #Print(Sql)Select @Enter+'--('+Rtrim(@id)+'/'+Rtrim(@Rowcount)+') '+@ObjectName+@Enter+'If object_id('''+Quotename(@ObjectName)+''') Is Null'+@Enter+'Begin'+@Enter+@Tab+'Create Table '+Quotename(@ObjectName)+@Enter+@Tab+'('+@Enter Insert Into #Print(Sql)Select @Tab+@Tab+definition+','+@EnterFrom #Columns Where object_id=@objectid And DefinitionType=1Group By Seq,definitionOrder By Seq           Set @MaxRow=Scope_identity()Update #PrintSet Sql=Substring(sql,1,Len(sql)-3)+@Enter+@Tab+')'+@EnterWhere Row=@MaxRowInsert Into #Print(Sql)Select @Tab+definition+@EnterFrom #Columns Where object_id=@objectid And DefinitionType>1Group By DefinitionType,Seq,definitionOrder By Seqif @@ROWCOUNT >0 Set @MaxRow=Scope_identity()Update #PrintSet Sql= Substring(Sql,1,Len(Sql)-2)+@Enter+'End'Where Row=@MaxRow Set @id=@id+1EndSet @id=1While @id>0BeginSet @sql=''Select @sql=sql From #Print Where row=@idIf @sql>''BeginPrint @sqlSet @id=@id+1endElseSet @id=0End--Modify Nr:20100510 EndPrint 'Go'Drop Table #ColumnsDrop Table #ObjectsGo

 

转载于:https://www.cnblogs.com/wghao/p/6636008.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/372531.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

android程序员周记,程序员实习周记100篇

程序员实习周记100篇有效防止雷同&#xff01;简单修改即可使用&#xff01;姓名&#xff1a;XXX学号&#xff1a;20190920008专业&#xff1a;M]指导老师&#xff1a;实习时间&#xff1a;20XX-XX-XX—20XX-XX-XX2019年XX月XX日t8in6Ay8Cw7c HuktN6ttTE12V7A eZu9g e7W1Y Dxqx…

Python之装饰器

装饰器功能有两点&#xff1a;1.首先自动执行装饰器后面跟的这个函数&#xff0c;并将装饰器修饰的那个函数名作为参数带入装饰器后面函数&#xff1b;2.将装饰器后面函数的返回值&#xff0c;赋值给装饰器所修饰的那个函数。举个例子说明&#xff1a; 1 def outer(func):2 …

在独立Java应用程序中使用Tomcat JDBC连接池

这是从我们的客人文章W4G伙伴克拉伦斯豪的作者临春3从A按。 您可能会在文章结尾找到本书的折扣券代码&#xff0c;仅适用于Java Code Geeks的读者&#xff01; 请享用&#xff01; 在需要数据访问权限的独立Java应用程序中使用JDBC连接池时&#xff0c;大多数开发人员将使用com…

Python之路【目录】 2

http://www.cnblogs.com/wupeiqi/articles/4938499.html转载于:https://www.cnblogs.com/cp-miao/p/5750211.html

vs2019 缺android sdk,VS2019由于缺少NuGet Microsoft.NET.Sdk.Functions程序包而无法加载项目,但也无法添加此程序包(示例代码)...

我在解决方案中拥有的一个项目未在VSE2019中加载。它将引发此错误&#xff1a;C:MyProgramsrcMyProgram.Functions.csproj : error : The project file cannot be opened by the project system, because it is missing some critical imports or the referenced SDK cannot be…

数据库事物操作

事务 什么是事务?转账&#xff1a;1. 给wc账户减1000元2. 给wcxf账户加1000元 当给wc账户减1000元后&#xff0c;抛出了异常&#xff01;这会怎么样呢&#xff1f;我相信从此之后&#xff0c;wc再也不敢转账了。 使用事务就可以处理这一问题&#xff1a;把多个对数据库的操作绑…

通过OpenShift超越云技术

您是否厌倦了为您的应用程序请求新的开发机器&#xff1f; 您是否为应用程序设置新的测试环境感到烦恼&#xff1f; 您是否只想专注于和平开发应用程序而不会一直“沉迷于堆栈”&#xff1f; 我们听到你的声音。 我们也去过那里。 不用担心&#xff0c;OpenShift就在这里&#…

android+4.4+稳定性,新系统新UI!台电A10h四核安卓4.4.2性能测试

国内著名商标&#xff0c;数码用户首选品牌的台电科技在12月20日全国首发了安卓4.4.2系统&#xff0c;并且运行台电全新tUI同时&#xff0c;支持从安卓4.2系统OTA一键升级至安卓4.4.2系统&#xff01;作为国内首款升级到目前全球最新的Android4.4.2系统之后&#xff0c;整体性能…

网络知识点小结

VMware虚拟机三种联网方法及原理一、Brigde——桥接&#xff1a;默认使用VMnet0 1、原理&#xff1a; Bridge 桥"就是一个主机&#xff0c;这个机器拥有两块网卡&#xff0c;分别处于两个局域网中&#xff0c;同时在"桥"上&#xff0c;运行着程序&#xff0c;让…

在JUnit中超越核心Hamcrest

在通过JUnit和Hamcrest改进对assertEquals的文章中&#xff0c;我介绍了将Hamcrest与JUnit一起使用 。 然后&#xff0c;我查看了JUnit的内置Hamcrest Core Matcher支持 。 在本文中&#xff0c;我将介绍如何将Hamcrest的非核心匹配器与JUnit一起应用。 这些非核心匹配器默认情…

4pics1word android,4 Pics 1 Word

4 Pics 1 Word是一款非常有意思的看图猜词游戏&#xff0c;这款游戏中会给我们四张图片&#xff0c;玩家需要通过图片给出的信息来猜出是哪个词&#xff0c;看西西的介绍你可能以为这是一款千篇一律的看图猜词游戏&#xff0c;不过这里猜的不是中文而是英语单词。4 Pics 1 Word…

页面内锚点定位及跳转方法总结

接着上一篇&#xff0c;其实是一个功能&#xff0c;本来感觉挺简单的一个问题&#xff0c;没想到遇到两个坎儿&#xff0c;无语。。。 上一篇是关于scroll事件绑定的问题&#xff0c;这一篇的问题是&#xff1a;点击锚点跳转到相应DIV的问题。 最简单的方法是锚点用<a>标…

基于android的水稻叶片特征测量系统,基于Android的水稻叶片特征参数测量系统

基于Android的水稻叶片特征参数测量系统路艳1&#xff0c;肖志勇2&#xff0c;3&#xff0c;杨红云2&#xff0c;3*&#xff0c;周琼1&#xff0c;孙玉婷1【摘要】摘要&#xff1a;【目的】提供基于Android的水稻叶片特征参数测量系统&#xff0c;为农学研究提供精准数据。【方…

JAVA学习绘图颜色及其笔画属性设置字体显示文字

package com.graphics;import java.awt.*; import java.awt.geom.Rectangle2D; import java.util.Date;import javax.swing.*;/*** * author biexiansheng**/ public class DrawString extends JFrame{private Shape rect;//矩形对象private Font font;//字体对象private Date …

lightoj 1044 - Palindrome Partitioning(需要优化的区间dp)

题目链接&#xff1a;http://lightoj.com/volume_showproblem.php?problem1044 题意&#xff1a;求给出的字符串最少能分成多少串回文串。 一般会想到用区间dp暴力3个for但是这里的数据有1000&#xff0c;3个for肯定超时的。 但是这题只是判断回文串有多少个所以可以先预处理一…

对JavaFX Mobile应用程序进行性能分析

注意&#xff1a;本文最初发表于2009年&#xff0c;仅供参考。 请查阅我们其余的JavaFX文章 。 对于每个JavaFX Mobile应用程序开发人员来说&#xff0c;今天都是美好的一天。 你想知道为什么吗&#xff1f; 因为JavaME SDK 3.0已发布。 根据我午休时听到的消息&#xff0c;这是…

第六天20160810

a) 形参与实参 一、 形参为基本数据类型&#xff1a;形参改变&#xff0c;实参不变。 二、 形参为引用数据类型&#xff1a;形参改变&#xff0c;实参通常都会改变。 b) 可变长参数&#xff1a;JDK1.5开始出现 一、可变长参数只能用于…

android原生系统开发板,安卓学习必备开发板-Rayeager PX2

由谷歌主导并推动的移动终端操作系统Android&#xff0c;由于其开源开放的特性&#xff0c;自发布之日起便受到全球各大IT厂商的欢迎。在各厂商的热情推动下&#xff0c;基于Android系统的手机、平板、智能手表等各类产品层出不穷&#xff0c;迅速普及到人们的日常生活&#xf…

变量类型取值范围

ascii&#xff1a;Oct Dec Hex Char──────────────────────────101 65 41 A102 66 42 B103 67 43 C141 97 61 a142 98 62 b143 99 63 c 取值范围&#xff1a;-1 ~ 0xFFFFFFFF ~ 全1127 ~ 0x7F255 ~ 0xFF ~ 11111111 char -128 ~ 127 …

热点中的即时编译器(JIT)

即时编译器&#xff08;JIT&#xff09;的概念以及更广泛的自适应优化是除Java&#xff08;.Net&#xff0c;Lua&#xff0c;JRuby&#xff09;之外的许多语言中众所周知的概念。 为了解释什么是JIT编译器&#xff0c;我想先定义一个编译器概念。 根据维基百科&#xff0c;编译…