I have a PowerQuery in Excel that basically reads and cleans up a PDF of what looks like a Reporting Services report which contains a table. My PowerQuery sorts all that mess out and changes all the data types. So, in theory, I should be able to import that into SQL Server pretty easily.
The PowerQuery source in SSIS is complete crap. Just flat out doesn't work at all, so I can't just move the PowerQuery to SSIS and then append that way.
Is there any way to keep the data types in PowerQuery when importing to SQL Server? (Can I do that with BULK INSERT and a format file so that the data types are cast before the insert occurs?)
IS there any other way of doing this with a local SQL Server (not Azure)... I know Azure can create a pipeline to do the transforms and then dump the result into a database... Kinda like should have been done in PQ on the desktop, but then MSFT couldn't charge for it. =(
Thanks!