摘要:
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the 阅读全文
摘要:
# Obtain a suitable buffer length by partial file length function Get-BufferLength ([int]$partialFileLength) { [int]$MinBufferLength = 1MB # No need to consume great amount memory,initialize as 50M, y 阅读全文
摘要:
CREATE OR REPLACE PROCEDURE DIVIDE_BY_MON_DAY(START_DATE IN DATE, END_DATE IN DATE) IS BEGIN FOR D IN (SELECT START_DATE + (LEVEL - 1) CUR_DATE FROM DUAL CONNECT BY LEVEL <= END_DATE - START_DATE) LOO 阅读全文
摘要:
:: git-pull-all.bat @ECHO OFF SETLOCAL ENABLEEXTENSIONS SET MYGIT="C:\Program Files\Git\bin\git.exe" FOR /D %%X IN (*) DO ( IF EXIST "%%X\.git\" ( CD 阅读全文