Forum Discussion
Need Help with SQL Server Express, Folder of CSVs and Power BI
- Mar 21, 2024
Hi shaebert
I have a similar situation and I am using DBATools , specifically the module Import-DbaCsv which allow you to imports multiple files in one shot into a SQL Table
https://docs.dbatools.io/Import-DbaCsv.html
It is a PowerShell tool and definitively super easy to use.
Since you use SQL Express Edition you don't have a SQL Server Agent to schedule the task but you can use Windows Task Scheduler
Regards
Javier
Hi shaebert
I have a similar situation and I am using DBATools , specifically the module Import-DbaCsv which allow you to imports multiple files in one shot into a SQL Table
https://docs.dbatools.io/Import-DbaCsv.html
It is a PowerShell tool and definitively super easy to use.
Since you use SQL Express Edition you don't have a SQL Server Agent to schedule the task but you can use Windows Task Scheduler
Regards
Javier
Javier_Villegas Awesome thank you!