Forum Discussion
PBILover
Helper V
1 year agoget Metadata for Azure blob storage file and store into Lakehouse table
Hi, I have a fabric pipeline where i want to get a content of the file and name of the file in alakehouse table. But I am not able to get the file name in a seperate column of the table . (My file h...
- 1 year ago
Hi PBILover,
Please use the script function
@{concat('INSERT INTO MetaData VALUES (GETDATE(), ''', variables('Path'), ''')')}If this post helps, then please consider Accept it as a solution to help the other members find it more quickly.
Thank you.
v-saisrao-msft
Community Support
1 year agoHi PBILover,
Thank you for reaching out to the Microsoft Fabric Forum Community.
Please use the set variable activity, store the metadata ( which is file name ) to a variabl and use this variable in copy data activity to insert data into a table.
Thank you.