@echo off
setlocal enableextensions disabledelayedexpansion
echo print this line
set "firstLineReady="
(
for /F "eol=$ delims=" %%a in (DCRs_*.csv) DO (
if defined firstLineReady (echo()
set "firstLineReady=1"
<nul set /p "=%%a"
)
) > NewFile.csv
echo I am done
Type NewFile.csv > DCRs_*.csv
del NewFile.csv
Informatica Target Flat 파일에서 생성 된 마지막 빈 줄을 제거하려고합니다.
위의 스크립트가 로컬 시스템에서 작동하지만 Informatica Command Task (Echo 명령 만 인쇄 됨)에서는 작동하지 않습니다. 올바른 해결책을 알려주십시오.
서버에 대한 쓰기 권한이 있습니까?
—
nohillside
예, 알겠습니다. Informatica User have have ..
—
Chetana Naidu