Inside my dataflow in Azure Data Factory, I want to have a derived column with current timestamp in Australian Eastern Standard Time (AEST) timezone (similar to getdate()) and use it as one of the columns to map in the sink.
How do i do that? I'm getting null when i refresh the preview
When I tried to repro I see the same thing
As a workaround you can try few options as below
Use currentUTC('AEST')
Note: Data preview always shows in UTC. Check form the output dataset to be precise.
You can also use fromUTC(currentUTC(),'Antarctica/Macquarie')
Refer this notation: worked for me