`
springluo
  • 浏览: 31509 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论
文章列表

oracle备份

http://blog.sina.com.cn/s/blog_4b81125f0100dl4i.html oracle数据库备份方式 WINDOWS: backup.bat: @echo off set var_date=%date:~0,4%%date:~5,2%%date:~8,2%     exp scott/tiger@conn file=C:\oracle9i_tjxt_%var_date%.dmp owner=(scott) 上面: %date%  为系统日期 2009-10-21 星期三       %date:~x,%  冒号后的~x,y表示截取date返回值中 ...
http://blog.csdn.net/kkdelta/article/details/7217761 dblink创建 http://blog.csdn.net/ruixj/article/details/3604325 创建和使用: http://www.blogjava.net/fastzch/archive/2009/02/17/255175.html 删除job 查询:select   *   from   dba_jobs; 删除: begin dbms_job.remove(jobno);    end;    commit; jobno 为 job查询列表中的 ...
微软SSIS http://www.cnblogs.com/tenghoo/archive/2009/10/16/ssis_lookup.html 开源kettle
微软SSIS http://www.cnblogs.com/tenghoo/archive/2009/10/16/ssis_lookup.html 开源kettle
Linux认证下如何查看系统启动时间和运行时间,第一数字即是系统已运行的时间5113396.94 秒,运用系统工具date即可算出系统启动时间。 Linux下如何查看系统启动时间和运行时间 1.uptime命令 uptime 输出:16:11:40 up 59 days, 4:21, 2 users, load average: 0.00, 0.01, 0.00 2.查看/proc/uptime文件计算系统启动时间 cat /proc/uptime 输出: 5113396.94 575949.85 //第一数字即是系统已运行的时间5113396.94 秒,运用系统工具date即可算出系统启动时 ...
最详细的介绍了两种 http://www.cnblogs.com/xiaoyaozhe/archive/2011/11/10/2244110.html http://www.cnblogs.com/lenovo_tiger_love/archive/2010/01/07/1641206.html 一、 最常见的就是使用参数为 ThreadStart类型的线程构造函数 Thread t = new Thread(new ThreadStart(FunctionName)); 可以写成 Thread t = new Thread(FunctionName);   这就是最基本的创建线 ...
增加,(应用程序配置文件)App.config <configuration>   <system.diagnostics>     <trace autoflush="false" indentsize="4">       <listeners>         <add name="listener1" type="System.Diagnostics.TextWriterTraceListener" initializeData="2.txt ...

C# 日志

    博客分类:
  • C#
增加,(应用程序配置文件)App.config <configuration>   <system.diagnostics>     <trace autoflush="false" indentsize="4">       <listeners>         <add name="listener1" type="System.Diagnostics.TextWriterTraceListener" initializeData="2.txt ...

C#线程,小例子

    博客分类:
  • C#
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Threading; namespace threadtest {     public partial class MainPanel : Form     {         public Thread m_thread;        ...
http://www.cnblogs.com/Nina-piaoye/archive/2006/09/18/507183.html 自己写的入门: create proc proc_m_new_fund(     @fundname varchar(10) ) as declare @fundname_cs varchar(10) set @fundname_cs='%' + @fundname + '%' select fundcode,rate from dbo.m_new_fund where fundname like @fundname_cs if else 声明变量,给变量赋值, ...
方式一: select a.orgid,b.orgname,a.tasktime,a.tasktype,case a.taskstatus when '0' then '准备'  when  '1' then '进行中' end as taskstatus from m_new_taskstatus a,m_branch b where a.orgid=b.orgid 方式二: select a.orgid,b.orgname,a.tasktime,a.tasktype,case when a.taskstatus='0' then '准备' else case when  a.tasksta ...
http://www.evget.com/zh-CN/Info/catalog/7145.html richedit控件显示图片 http://topic.csdn.net/t/20050226/14/3808329.html 使用腾讯的控件
ShellExecute CreateProcess PROCESS_INFORMATION pi;     STARTUPINFO si = {sizeof(si)}; DWORD dwExitCode;     BOOL ret = CreateProcess(NULL, "C:\\jcb_hlzq\\TdxW.exe", NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);     if(ret){ CloseHandle(pi.hThread); WaitForSingleObject(pi.hPro ...
在MFC程序中,可以用以下几种方法来获取命令行参数。 为方便说明,我们假设执行了命令:C:\test\app.exe -1 -2 方法一 ::GetCommandLine(); 将获取到 "C:\test\app.exe"  -1 -2 方法二 for (int i=0;i<__argc;i++) { __argv[i]; 将依次得到C:\test\app.exe  -1  -2 } 方法三 AfxGetApp()->m_lpCmdLine; 将获取到 -1 -2
cd 和linux 一样 切换盘符方便直接d: DIR /A /S /S显示当然目录及所有下级目录下的文件 /A显示所有属性的文件 也可以用: /AD 显示所有目录 /AS 显示所有系统属性的文件 /AR 显示所有只读属性的文件 /AH 显示所有隐藏属性的文件
Global site tag (gtag.js) - Google Analytics