2008年11月28日
摘要: SSIS 设计简介 1.选择Business Intelligence Project 之Integration Servers Project 2.右键单击新建数据源 3.新建SSIS包 4.右键单击“连接管理器”空白处,选择“从数据源新建连接”。 5.把所需要的数据源选中(按Ctrl键可多选),单击“确定”。 6.从工具箱中拖拽控件到右边窗体中 7.双击... 阅读全文
posted @ 2008-11-28 19:20 少 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 一,读取备份文件 SQL: Restore filelistonly from disk=’’ 读取差异和完整备份文件 Restore headeronly from disk=’’ 读取日志备份文件 SQL Litespeed: Master..xp_restore_filelistonly @Filename=’’读取差异和完整备份文件 Master.. xp_restore_headeron... 阅读全文
posted @ 2008-11-28 19:17 少 阅读(449) 评论(0) 推荐(0) 编辑
摘要: public string[] GetLocalMachineInfo(string Type) { switch (Type.ToUpper()) { case "IP": IPHostEntry IPHE = new IPHostEntry(); ... 阅读全文
posted @ 2008-11-28 18:32 少 阅读(261) 评论(0) 推荐(0) 编辑
摘要: public void BindTreeView(DataTable dt,ref TreeView tvname) { //datatable.DefaultView.Sort("NodeSeq,ParentNode"); tvname.Nodes.Clear(); //创建根节点 ... 阅读全文
posted @ 2008-11-28 18:31 少 阅读(744) 评论(0) 推荐(0) 编辑
摘要: public void SetListBox(ListBox TargetBox, DataTable dt, int Col) { TargetBox.Items.Clear(); foreach (DataRow dr in dt.Rows) { TargetB... 阅读全文
posted @ 2008-11-28 18:30 少 阅读(357) 评论(0) 推荐(0) 编辑
摘要: public void ShowTxtInfo(ListView lv,ref TextBox txt) { txt.Text = ""; string tmpstr = string.Empty; for (int i = 0; i < lv.Columns.Count; i++) ... 阅读全文
posted @ 2008-11-28 18:28 少 阅读(204) 评论(0) 推荐(0) 编辑
摘要: public void SetComboBox(DataTable dt, ComboBox cbo) { cbo.DataSource = dt; cbo.DisplayMember = dt.Columns[0].ToString(); cbo.ValueMember = dt.Colum... 阅读全文
posted @ 2008-11-28 18:26 少 阅读(176) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.IO; using System.Media; using System.Runtime.InteropServices; using System.Text; namespace PAL_MES.BRLibrary { class CPlaySound {... 阅读全文
posted @ 2008-11-28 18:21 少 阅读(195) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2008-11-28 18:17 少 阅读(6) 评论(0) 推荐(0) 编辑
摘要: public void SetListView(ListView lv, DataTable dt) { ListViewItem lvi; lv.Items.Clear(); lv.Columns.Clear(); for (int i = 0; i < dt.Columns.Cou... 阅读全文
posted @ 2008-11-28 18:07 少 阅读(272) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Reflection; using System.Windows.Forms; namespace PAL_MES.BRLibrary { class CDealExcel { ... 阅读全文
posted @ 2008-11-28 18:02 少 阅读(452) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2008-11-28 16:36 少 阅读(10) 评论(0) 推荐(0) 编辑