Hi @Shell ,
You could use an ODBC connection to connect to a CSV file. You just need to point the ODBC connection at the folder the files are in:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source="\\\\SERVER_NAME\\FOLDER_NAME\\SUB_FOLDER_NAME";Extended Properties="text;HDR=YES;FMT=Delimited"
(Note the double backslashes and header property HDR)
Then select from the filename in your query:
SELECT * FROM FILENAME.TXT
Attach a video link here: How to use CSV file as Data Source in SSRS Report-SSRS Interview Questions and Answers.
Hope this helps.
Best Regards,
Joy
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.