zoukankan      html  css  js  c++  java
  • Windows系统下做定时任务为Oracle数据库每天自动备份

    1.创建备份目录d:ackup, 创建批处理命令Bak.bat,编写备份脚本

    1
    2
    exp user/passwd@orcl DIRECT=Y BUFFER=100000 FILE=D:ackupscdd%date:~0,10% OWNER=('scdd') LOG=D:ackupdata.log
    forfiles /p "D:ackup" /s /m *.dmp /d -3 /c "cmd /c del @path"

    说明:

    exp命令是oracle提供的dump备份命令,其中的%date:~0,10%是DOS里取日期的命令,例如:C:Usersqyy>echo %date:~0,10%得到2016-11-30

    forfiles是windows的文件查找命令,查找在backup,dmp后缀产生三天的文件,找到后执行删除操作

    2.Windows定时任务每日自动执行批处理文件 3.保留最近三天的文件,自动删除以前日期的备份文件

    forfiles参数说明:

    /P 可是搜索的路径。在我们这里就是要在哪个目录寻找要删除的文件

    /M 根据搜索掩码搜索文件。默认为*,如果要找备份处dump文件,格式为*.dmp

    /D 文件修改时间在某个时间之前或者之后。-3 表示3天之前的文件。

    /s 包含子目录

    /C 表示为每个文件执行的命令,如果要删除该文件可以为"cmd /c del /F /s /q @file"。其中变量@file表示该文件名 f s q表示强制静默删除可以不用;cmd /c表示执行字符串指定的命令然后终断

    其中@file可以返还如下结果,我们这里用@path

    @file - returns the name of the file.

    @fname - returns the file name without extension.

    @ext - returns only the extension of the file.

    @path - returns the full path of the file.

    @relpath - returns the relative path of the file.

    @isdir - returns "TRUE" if a file type is a directory, and "FALSE" for files. @fsize - returns the size of the file in bytes.

    @fdate - returns the last modified date of the file.

    @ftime - returns the last modified time of the file

  • 相关阅读:
    廖雪峰Java10加密与安全-1数据安全-1加密与安全概念
    廖雪峰Java9正则表达式-2正则表达式进阶-6搜索和替换
    廖雪峰Java9正则表达式-2正则表达式进阶-5非贪婪匹配
    (1)结构体问题(哎,困扰很久了)
    5)蟠桃计,但是涉及一个变量初始化位置问题
    4)mysqlDB
    2)header的使用
    )ASCII比较大小
    3)大数相加问题
    2)处理用空格的字符串输入
  • 原文地址:https://www.cnblogs.com/haw2106/p/8880558.html
Copyright © 2011-2022 走看看