Hi @Raki ,
In SQL Server, we could use CONVERT with datetime data in different formats .
One is like below:
SELECT CONVERT(VARCHAR, GETDATE(), 102)
--01/07/2021
Please try with below replacement and check whether it is helpful to you.
Replace
convert('{6}','yyyy/mm/dd',102)
with
convert(varchar,'{6}',101)
Best regards
Melissa
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.