Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Folks,
I HAVE CODE FOR INCREMENTAL LOAD IN ONE QVW called incremental.qvw
if I released the same qvw into production always my first line of code is going to be
intial load ( loading source data and will create qvd)
I don't want comment this code but it should not excute in daily refresh.
even its not required for us also . but we should have this code in our script .
how to handle this code not to refresh in every day ?
You could wrap this statement within an if-loop maybe on an additional variable which contained your environment (dev, test or prod) or on the computername like:
if computername() = 'xyz' then
YourStatements
end if
- Marcus