Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a Date feild as dimension.
How can I change its format to "DD-MMM-YY". I am getting just an integer right now.
Please Help.
Best Regards,
Gaurav Tyagi
Date(FieldName,'DD-MMM-YY')
hi
try this
LOAD
Date,
Year(Date) AS Year,
Month(Date) AS Month,
Day(Date) AS Day
'
'
';
LOAD
Date(Date#(DateField, 'DD-MMM-YY')) AS Date
'
'
'
'
FROM ABC.txt;
hi
In script change to
date(Datefield,'DD.MM.YYYY') as DateField
Thanx Guys