This is the following use case:
I have different csv files from my data lake and want to copy this to my Azure SQL DB. a typical file name of the csv looks like this : Sale-Internet-Header.csv.
In the Sink property of Azure SQL DB i used the expression in the sink dataset @replace(item().name, '-','_'). After execute the copy pipeline the sql table has the following name: dbo.sales_internet_header.csv
I would like to change my expression in the sink dataset to remove the ".csv" so that the SQL table name going to look like : dbo.sales_internet_header
Any suggestions?
Many thanks