`
E生迅徒
  • 浏览: 4766 次
  • 性别: Icon_minigender_1
  • 来自: 火星外层
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
<html> <head> <title>播放器 By Roger Li</title> <script language="javascript"> function goto(t) { t.setCapture(); var ox=event.clientX; foreDiv.style.width = ox-138; t.releaseCapture(); } function updatetime() { // 一 ...
VSS备份有以下两种方式 一、备份为rar文件 脚本文件vss_bak.bat rem ==========vss备份开始========== set projectName=CMGP set winrarpath=.\ set vssServerPath=\\pcserver1\aspire_vss\*.* set vssPathBak=E:\workspace\vss_bak\ FOR /F %%J IN ('date /t') DO SET DAY=%%J %winrarpath ...
SELECT a.tablespace_name "表空间名",        round(total / 1024 / 1024, 2) || 'M' 表空间大小,        round(free / 1024 / 1024, 2) || 'M' 表空间剩余大小,        round((total - free) / 1024 / 1024, 2) || 'M' 表空间使用大小,        ROUND((total - free) / total, 4) * 100 "使用率 %"   FROM (SELECT tablespace_nam ...
正则表达式 "^\\d+$"  //非负整数(正整数 + 0) "^[0-9]*[1-9][0-9]*$"  //正整数 "^((-\\d+)|(0+))$"  //非正整数(负整数 + 0) "^-[0-9]*[1-9][0-9]*$"  //负整数 "^-?\\d+$"    //整数 "^\\d+(\\.\\d+ ...
Global site tag (gtag.js) - Google Analytics