Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
guide in this
Regards
Nirmala
Create a variable like below
Let vStartTime = NOW();
before your inline table
and use vStartTime variable
PFA.
Thanks,
Ram
load name, age, now() as time;
load * inline
[
name, age
a,20
];
Hi,
Try like this
TableName:
load *,
Now() AS Timestamp
inline
[
Column1, Column2
Value1, Value2
];
Regards,
Jagan.
Please check i update now
Write a variable like
Let vTimeNow = NOW();
and use this in the inline table
TimeTable:
LOAD * Inline
[
Time
'$(vTimeNow )'
];
Hi Anand,
Time not displaying
Steal from previous answer
LET vTimeNow = NOW();
TableName:
load *,
Now() AS Timestamp2
inline
[
Column1, Column2,Timestamp
Value1, Value2,$(vTimeNow)
];
Try any of these
T1:
Load
Timestamp(Now(),'DD/MM/YYYY hh:mm:ss') as Time
AutoGenerate 1;
Or
Let vT = Timestamp(Now(),'DD/MM/YYYY hh:mm:ss');
T2:
Load
* Inline
[
TimeVar
$(vT)
];
Thank u
its working...