Export from Oracle to SQLServer!
I have a linq script that connects to an Oracle db and returns my data (using ordinary sql!). I then want to pump that data into a sql server staging table? All from the same script?
Alternatively, is it possible to double click my linq file so that it runs and exports the data to csv?????
Alternatively, is it possible to double click my linq file so that it runs and exports the data to csv?????
Comments
lprun -format=csv C:\MyPath\MyLinqFile.linq > MyData.csv
You could do this: and then parse the CSV with a library such as CsvHelper.