博客园站长
这是人类成长进步中记录的每一时刻
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 72 下一页
摘要: begin begin savepoint p1; DELETE FROM sys_re_xxx; //红色部分替换为需要一起执行的SQL即可 DELETE FROM SYS_xxxx; ...... exception when others then begin rollback to savepoint p1; return; end; end; commit; end; ... 阅读全文
posted @ 2016-06-28 16:33 dm3344 阅读(155) 评论(0) 推荐(0)
摘要: var filePath="f:\xx.xlsx" string connStr = "Provider=Microsoft.Ace.OleDb.12.0;" + "data source=" + filePath + ";Extended Properties='Excel 12.0; HDR=Y 阅读全文
posted @ 2016-06-28 14:36 dm3344 阅读(1280) 评论(0) 推荐(0)
摘要: clob,nclob当值为“”空字符串时,就会出现这个错误 阅读全文
posted @ 2016-06-28 14:25 dm3344 阅读(381) 评论(0) 推荐(0)
摘要: Control.CheckForIllegalCrossThreadCalls = false; //加这句即可 Thread thread = new Thread(() => { ExecImport(); }); thread.Start();//启动线程 thread.IsBackgroun 阅读全文
posted @ 2016-06-28 09:34 dm3344 阅读(296) 评论(0) 推荐(0)
摘要: 1、先圈住要做视图的区域,如图1 2、插入——》数据透视表,点下拉小标识,选择数据透视图(注,可能此功能没有,右键工具栏空白-》自定义快速访问工具--》所有--》按下S 找到视图透视,添加到右侧) 3、点击确定 4、点击更改图标类型--》选择饼图--》确定 5、从右边“数据透视表字段列表”拉取数据字 阅读全文
posted @ 2016-06-16 15:10 dm3344 阅读(2443) 评论(0) 推荐(0)
摘要: exp username/psd@sid file='E:\xx.dmp' tables=(xxx_%) ROWS=N 以下代码没什么用,我就乱写 set oracle_sid=ora11gsqlplus / as sysdbacreate directory expdpbak as 'd:\exp 阅读全文
posted @ 2016-06-14 17:58 dm3344 阅读(279) 评论(0) 推荐(0)
摘要: --数据库表名 SELECT distinct A.OBJECT_NAME as TAB_NAME,B.comments as DESCR FROM USER_OBJECTS A , USER_TAB_COMMENTS B where A.OBJECT_NAME=B.TABLE_NAME --数据库 阅读全文
posted @ 2016-06-13 16:56 dm3344 阅读(322) 评论(0) 推荐(0)
摘要: 服务器安装了Windows Server 2008,现在要增加远程连接,开启服务器上的远程桌面连接,使用管理员账户远程登录。默认情况下Windows Server 2008允许一个连接数,一个账号最大2个连接数。 两台电脑连接的情况下,只要调整下Windows Server 2008的默认配置。 首 阅读全文
posted @ 2016-06-13 16:20 dm3344 阅读(519) 评论(0) 推荐(0)
摘要: 转:http://tieba.baidu.com/p/1115124288 第三楼 关闭正在运行的所有程序。按Win-R,在运行框中键入regedit,然后单击“确定”。在注册表编辑器中,展开到下列注册表子项: Microsoft Office Word 2013HKEY_CURRENT_USER\ 阅读全文
posted @ 2016-06-03 16:25 dm3344 阅读(651) 评论(0) 推荐(0)
摘要: 1、开始,搜索输入UAC-->选择 “更改用户账户控制设置” 2、调到最低 3、打开控制面板--》程序--》打开或关闭windows功能,去掉图里的2个选项,点确定,重启 4、重启后,再把这2个勾选上,注:indernet信息服务很多子项不勾选,需要手动展开到最底层进行勾选,然后点确认,开始安装,不 阅读全文
posted @ 2016-06-01 11:48 dm3344 阅读(10256) 评论(0) 推荐(0)
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 72 下一页