While connected to a local sql server database, I can make queries to retrieve and write data. However, this query fails:
SELECT
*
INTO
#tmp_table
FROM OPENROWSET
(
'MSDASQL'
,'Driver={Microsoft Access Text Driver (*.txt, *.csv)}'
,'select * from csv_filePath'
);
with the error message: SQL Error [7222] [S0255]: Only a SQL Server provider is allowed on this instance.
I am using dbeaver on Linux Mint 19.2. I tried the same command on SQL Server Management Studio on a windows VM, but got the same message. My firewall is set up as in the picture below:

Please help.