Writing to connection doesn't work during partial reload?
My application needs to sometimes write back to tables on Databricks. I previously got code working which does this, by using LIB CONNECT and SQL INSERT OVERWRITE statements. Specifically, I am batch writing using a txt file:
So I know the code works. But it is not writing to the database as written during a partial reload. No error, just not getting there. To eliminate unknowns, I took only the last 3 lines and made a new Module (the command.txt file already exists after running in partial reload):
And ran it as a full reload. The table gets written on Databricks just fine. So now I am thinking that some part of the above three lines does not work in a partial reload. either the LIB CONNECT or the SQL INSERT? Is this true, and is there a known way around this problem?