代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
批量附加指定目录下的所有数据库文件到数据库中
作者:
xqf222
/ 发布于
2014/2/25
/
428
批量附加指定目录下的所有数据库文件到数据库中
应用场合:因为经常更换操作系统,所以D盘存放数据库文件目录的数据库每次都要一个一个的附加到MSSQL中,因此设计程序批量附加省时间也方便自己和大家。 程序不足:没有去研究跟实现NDF日志文件附加和多个日志文件的数据库附加。 程序源码: /// <summary> /// 循环查找指定目录下要附加的数据库文件和对应的日志文件,连接本地数据库并执行数据库附加命令 /// </summary> private void AttachFolderDB() { string strFileFolder = ""; FolderBrowserDialog myFolderBrowserDialog = new FolderBrowserDialog(); myFolderBrowserDialog.ShowDialog(); if (myFolderBrowserDialog.SelectedPath != "") { strFileFolder = myFolderBrowserDialog.SelectedPath; } //查找所有的MDF文件列表 string[] arrAttachFilePath = null; if (strFileFolder != "") { DirectoryInfo dir = new DirectoryInfo(strFileFolder); //判断目录下是否存在主数据库文件 FileInfo[] finfo = dir.GetFiles("*.mdf"); if (finfo.Length > 0) { arrAttachFilePath = new string[finfo.Length]; if (finfo.Length > 0) { int i = 0; foreach (FileInfo f in finfo) { arrAttachFilePath[i] = f.FullName; i = i + 1; } } } } //循环附加数据库 if (arrAttachFilePath != null) { for (int i = 0; i < arrAttachFilePath.Length; i++) { string strFile = arrAttachFilePath[i].ToString(); string strMdfFilePath = arrAttachFilePath[i].ToString();//mdf路径 string strLogFilePath = "";//日志文件路径 string strLdfFilePath = "";//日志文件路径 string strDataFileName = strMdfFilePath.Substring(strMdfFilePath.LastIndexOf("\\") + 1, strMdfFilePath.Length - strMdfFilePath.LastIndexOf("\\") - 1); strDataFileName = strDataFileName.Remove(strDataFileName.LastIndexOf(".")); string logIndex = "_Data"; int n = strDataFileName.IndexOf(logIndex); if (n == -1) { strLogFilePath = strMdfFilePath.Remove(strMdfFilePath.LastIndexOf("\\")) + "\\" + strDataFileName + "_log.ldf"; strLdfFilePath = strMdfFilePath.Remove(strMdfFilePath.LastIndexOf("\\")) + "\\" + strDataFileName + ".ldf"; } else { strDataFileName = strDataFileName.Remove(strDataFileName.LastIndexOf("_")); strLogFilePath = strMdfFilePath.Remove(strMdfFilePath.LastIndexOf("\\")) + "\\" + strDataFileName + "_log.ldf"; strLdfFilePath = strMdfFilePath.Remove(strMdfFilePath.LastIndexOf("\\")) + "\\" + strDataFileName + ".ldf"; } StringBuilder sb = new StringBuilder(); sb.Append("sp_attach_db @dbname='" + strDataFileName + "',@filename1='" + strMdfFilePath + "'"); if (System.IO.File.Exists(strLogFilePath)) { sb.Append(",@filename2='" + strLogFilePath + "'"); AttachDataBase(sb.ToString()); } else if (System.IO.File.Exists(strLdfFilePath)) { sb.Append(",@filename2='" + strLdfFilePath + "'"); AttachDataBase(sb.ToString()); } else { Console.WriteLine("数据库文件" + strMdfFilePath + "缺少必备的日志文件!"); } } } } /// <summary> /// 连接数据库并执行附加对应的数据库文件命令 /// </summary> /// <param name="strSql">附加数据库命令字符串</param> /// <returns></returns> private bool AttachDataBase(string strSql) { SqlConnection con = new SqlConnection(@"Data Source=(local);Initial Catalog=master;Integrated Security=True"); try { con.Open(); SqlCommand cmd = new SqlCommand(); cmd.Connection = con; cmd.CommandText = strSql; cmd.ExecuteNonQuery(); return true; } catch (Exception ex) { //如果数据库中存在名为要添加的数据库时则抛出异常 Console.WriteLine("附加数据库时异常:" + ex.Message); return false; } finally { con.Close(); } }
试试其它关键字
附加数据库
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
xqf222
贡献的其它代码
(
82
)
.
VB编写的登录局域网内的sql2000数据库服务器
.
ASP .NET登录界面用户验证码
.
VB操作ACCESS数据库
.
批量发送邮件程序
.
批量抓取网页代码中的HTTP和邮件地址
.
禁止站外提交参数测试
.
FTP网站文件到本地的
.
调用对应的应用程打开文件
.
抓取邮件内容解析
.
保存文件时候的弹出选择要保存的文件夹带新建文件夹效
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3