Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am running a code and it was fine for many months.
All of sudden, i am receiving an unknown error. If i comment this inline statement script working properly.
What might be the issue? Can anyone help me?
remove single quotes for values in the inline and reload,
hello
is it running on a server or desktop client ?
do you have the log of the execution ?
and the source code ?
did you modify something somewhere in the script ?
Hi,
That is variable, hence kept single quotes.
It is desktop version and need to check if it gets failed from server today.
Receiving the below error.
Error: Unknown Error
could you post the code and the content of the log ?
check is that variable generating the value or not ?
post scramble data of variables also
Thanks for trying to help me. Code is something like this.
LET Starttime =Now();
Table1:
Load * from table;
LET Endtime =Now();
LET NoOfRows =noofrows('Table1');
Load * inline
[
TableName,Starttime,Endtime,NoOfRows
'Table1','$(Starttime)','$(Endtime)','$(NoOfRows)'
];
Thanks for trying to help me. Code is something like this.
LET Starttime =Now();
Table1:
Load * from table;
LET Endtime =Now();
LET NoOfRows =noofrows('Table1');
Load * inline
[
TableName,Starttime,Endtime,NoOfRows
'Table1','$(Starttime)','$(Endtime)','$(NoOfRows)'
];