Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Is there any way I can just log record counts to a log file. We want to do custom logging for the number of records in source table and after join the record count in load script.
Thanks
Dasu.G
I believe you can do this a bit simpler, without a resident load.
LET vCount = NoOfRows('SomeTable');
TRACE 'Count of SomeTable: ' $(vCount);