@echo off
setlocal EnableExtensions
cd /d C:\Users\oshim\jrvltsql
set "JL=venv32\Scripts\jltsql.exe"
echo === RACE fetch by year (option 1) ===
echo Odds NL_O1 are inside RACE. Do NOT use --spec O1.
echo.
for %%Y in (2020 2021 2022 2023 2024 2025 2026) do (
  echo.
  echo ===== %%Y =====
  "%JL%" fetch --from %%Y0101 --to %%Y1231 --spec RACE --option 1
  if errorlevel 1 (
    echo [WARN] %%Y failed - check JV-Link then continue
  )
)
echo.
echo === done - run check again ===
pause
