I have a string of timestamp as 27/Mar/2023:15:36:58 +0900
I want to cast it to timezone(0) preserving the timestamp info.
I am trying to run following SQL but it fails saying Invalid Timestamp
CAST('27/Mar/2023:15:36:58 +0900' AS TIMESTAMP(0) WITH TIME ZONE FORMAT 'DD/MMM/Y4:HH:MI:SSBZ')
Is there any way to pass custom timezone hours format to CAST function.