Hi @Chris
Thanks for the question and using MS Q&A platform.
Based on your error, it seems like you are facing an issue while running an Azure Data Factory pipeline to ingest tables from your Postgres database to Azure Data Lake Storage. The error message you provided indicates that there is a syntax error in the query on the source side.
To resolve this issue, you may want to check the query syntax in your pipeline and ensure that it is correct. Specifically, you may want to check the query for any syntax errors such as missing or extra characters, incorrect syntax, or incorrect table or column names.
Please try the below query and let me know.
@{concat('SELECT * FROM ', item().Schema_Name, '.', item().Table_Name)}
Additionally, you may want to check the permissions and connectivity settings for your Postgres database to ensure that the pipeline has the necessary permissions to access the database and read the data.
I hope this helps. Please let me know if you have any questions.