Skip to content

Commit

Permalink
Update db2CollectPerfomanceData.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kvk-2015 committed Jul 6, 2024
1 parent ae25112 commit ea24eda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db2/Performance/db2CollectPerfomanceData.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ with(oExec.StdIn){
with(fso.CreateTextFile(WScript.ScriptFullName.replace(/\.js/i, ".txt"), true)){
while(!oExec.Status || !oExec.StdOut.AtEndOfStream){
currentLine = oExec.StdOut.ReadLine();
if(!/^db2|>db2|^with|^SQL0204N|^drop|^declare|^insert|^ÿâëÿåòñÿ|^áûëî|ID àâòîðèçàöèè|>@echo|^00\.|exit|çàïèñåé âûáðàíî.|^\s*$/i.test(currentLine))WriteLine(currentLine);
if(/çàïèñåé âûáðàíî./.test(currentLine))WriteLine();
if(!/^db2|>db2|^with|^SQL0204N|^drop|^declare|^insert|^является|^было|ID авторизации|>@echo|^00\.|exit|записей выбрано.|^\s*$/i.test(currentLine))WriteLine(currentLine);
if(/записей выбрано./.test(currentLine))WriteLine();
}
}

Expand Down

0 comments on commit ea24eda

Please sign in to comment.