I finally used the managed table creation and works perfectly. So I don't need to schedule. I leave the code here in case is of any use for someone:
%sql
CREATE TABLE IF NOT EXISTS esprosilver.XXXX.encuestas_talleres
USING CSV
OPTIONS (
  path "abfss://landing@esproanalyticscenterdl.dfs.core.windows.net/oracle-dwh/encuestas_talleres/encuestas_talleres.csv",
  header "true",
  inferSchema "true",
  delimiter ";",
  format "csv"
)
Thank you very much Mo for your time and giving me the idea of using tables. Have a great day!