Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Dear friends
Please Help me
How to use Function "Where"in edit script If Read data from database ( SQL) ?????
see attachment please
You can do with it
Sample:
Load * from Qvd Where Month = 'April';
Store Sample into Path\Sample_April.qvd (qvd);
You can use before semi colon only
Load * from Qvd Where Condition;
Put the Where condition after (qvd) and before ;
Load
a,
b,
c
from MyQvd.qvd (qvd) where CONDITIONS ;
Hi,
try like below
Fact:
LOAD
Table_Columns;
SQL SELECT *
FROM [SQL table name]
Where Condition = value;
STORE Fact into $(vQVDPath)\Fact.QVD;
Remove colon..
colon means end of the statement
Use colon (;) after your last code of the script ...
thanks Dear
Is that not work
Hi,
Refer below screen,
Thanks Dear
Don't work it
please help me