I have a delta table located in an ADLS Gen 2 whose contents I need to retrieve using a lookup activity. I would like to be able to do this without connectivity to databricks as I have built this using an AZureDeltaDatabricks dataset. Is it possible to achieve this with an ADLS dataset instead?
Delta files are actually types of Parquet files, so you can use the Parquet file source to query them.
Please note that although this will work for simple files, I'm not sure what will happen if you delete\update data within the delta table, since Parquet source will not know how to read Delta change log. If you need support for this, you may require databricks or Synapse Serverless pool to access the Delta file.