1

have you ever made an azure data convert Azure Data Lake excel conversion to CSV file.

first, I have tried using SSIS with Azure Data Lake Source, but when Mapping is not possible, the choice is to add text.

second, says try using azure apps logic with create CSV table but the csv that comes out is only the structure in that folder

Thank you in advance

  • Check this - https://stackoverflow.com/questions/2536181/is-there-any-simple-way-to-convert-xls-file-to-csv-file-excel https://stackoverflow.com/questions/42926710/converting-xlsx-file-using-to-a-csv-file https://stackoverflow.com/questions/31316551/convert-excel-file-xls-or-xlsx-to-csv-file – GRVPrasad Feb 21 '20 at 10:26
  • Hi Oki Kuswanda, If my answer is helpful for you, please mark it as answer( click on the check mark beside the answer to toggle it from greyed out to filled in.). This can be beneficial to other community members. Thank you. – Leon Yue Feb 25 '20 at 06:48

2 Answers2

1

There is not a built-in way to extract from excel file in Azure data lake. I would suggest you to try one of the below approaches:

Venkataraman R
  • 12,181
  • 2
  • 31
  • 58
0

As I know about Azure, These isn't any way can help convert the excel file to csv directly.

You could follow these steps:

  1. Download the excel file to you computer.

  2. Import the excel file to the you SQL database.

  3. Then export the table data as CSV file to you Blob Storage.

You could reference this document:

  1. Import data from Excel to SQL Server or Azure SQL Database
  2. Connect to Azure Blob Storage (SQL Server Import and Export Wizard)

Hope this helps.

Leon Yue
  • 15,693
  • 1
  • 11
  • 23