zoukankan
html css js c++ java
提取SQL脚本代码
public
static
IList
<
string
>
GenerateStoredProcedures()
{
int
i
=
0
;
IList
<
string
>
list
=
new
List
<
string
>
();
DBUitility db
=
new
DBUitility();
SqlConnection conn
=
db.CreateConnection(
@"
Data Source=.\sqlExpress;Initial Catalog=PBCS;Integrated Security=True
"
);
DataTable dt
=
db.GetDataAsDataTable(
"
select name, object_id from sys.objects where type='P' and charindex( '_', [name]) =0 and objectproperty(object_id,'IsProcedure' ) =1
"
);
foreach
(DataRow dr
in
dt.Rows)
{
string
id
=
dr[
"
object_id
"
].ToString();
string
name
=
dr[
"
name
"
].ToString();
DataTable dtText
=
db.GetDataAsDataTable(
string
.Format(
"
exec sp_helptext '{0}'
"
, name));
i
++
;
StringBuilder sb
=
new
StringBuilder();
sb.AppendLine(
string
.Format(
"
if exists (select * from dbo.sysobjects where id = object_id('[dbo].[{0}]') and OBJECTPROPERTY(id, 'IsProcedure') = 1)
"
, name));
sb.AppendLine(
"
begin
"
);
sb.AppendLine(
string
.Format(
"
drop procedure [dbo].[{0}]
"
, name));
sb.AppendLine(
"
end
"
);
sb.AppendLine(
"
go
"
);
sb.AppendLine();
bool
bStart
=
true
;
foreach
(DataRow drText
in
dtText.Rows)
{
if
(bStart
&&
drText[
0
].ToString().Trim()
!=
""
)
{
bStart
=
false
;
}
if
(
!
bStart)
{
sb.Append(drText[
0
].ToString());
}
}
sb.AppendLine();
sb.AppendLine(
"
go
"
);
sb.AppendLine();
Debug.AutoFlush
=
true
;
Debug.WriteLine(sb.ToString());
list.Add(sb.ToString());
}
conn.Dispose();
return
list;
}
public
static
IList
<
string
>
GenerateFunctions()
{
int
i
=
0
;
IList
<
string
>
list
=
new
List
<
string
>
();
DBUitility db
=
new
DBUitility();
SqlConnection conn
=
db.CreateConnection(
@"
Data Source=.\sqlExpress;Initial Catalog=PBCS;Integrated Security=True
"
);
DataTable dt
=
db.GetDataAsDataTable(
"
select name, object_id from sys.objects where type='TF' and charindex( '_', [name]) =0
"
);
foreach
(DataRow dr
in
dt.Rows)
{
string
id
=
dr[
"
object_id
"
].ToString();
string
name
=
dr[
"
name
"
].ToString();
DataTable dtText
=
db.GetDataAsDataTable(
string
.Format(
"
exec sp_helptext '{0}'
"
, name));
i
++
;
StringBuilder sb
=
new
StringBuilder();
sb.AppendLine(
string
.Format(
"
if exists (select * from dbo.sysobjects where id = object_id('[dbo].[{0}]'))
"
, name));
sb.AppendLine(
"
begin
"
);
sb.AppendLine(
string
.Format(
"
drop function [dbo].[{0}]
"
, name));
sb.AppendLine(
"
end
"
);
sb.AppendLine(
"
go
"
);
sb.AppendLine();
bool
bStart
=
true
;
foreach
(DataRow drText
in
dtText.Rows)
{
if
(bStart
&&
drText[
0
].ToString().Trim()
!=
""
)
{
bStart
=
false
;
}
if
(
!
bStart)
{
sb.Append(drText[
0
].ToString());
}
}
sb.AppendLine();
sb.AppendLine(
"
go
"
);
sb.AppendLine();
Debug.AutoFlush
=
true
;
Debug.WriteLine(sb.ToString());
list.Add(sb.ToString());
}
conn.Dispose();
return
list;
}
查看全文
相关阅读:
调试
webpack output的path publicPath
CSS实现单行、多行文本溢出显示省略号
docker安装mysql
构建docker镜像
Tensorflow博文列表
ML理论知识博文列表
Python博文列表
Opencv博文收藏列表
Centos文章列表
原文地址:https://www.cnblogs.com/rockniu/p/753210.html
最新文章
linux awk
MySQL创建索引命令
redis使用中的常见错误
Linux系统管理第一二三四章 系统管理 目录和文件管理 安装及管理程序 账号管理
Linux系统管理第二次作业 目录和文件管理 rpm安装 创建yum仓库
Linux系统管理第一次作业 系统命令
测试
路由器交换机工作原理
计算机网络基础
三层交换机配置
热门文章
TCP
计算机网络基础
计算机网络基础
图片优化
h5移动端 input兼容性问题
curl
react搭建
css发展过程
前端自动化测试 参考
react 错误处理
Copyright © 2011-2022 走看看