You look for INSERT from Query
doc is here http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=RSQL_insert#RSQL_insertselect
As far as I see it should work the way you have written
(assuming data types between target and source match)
To estimate runtime you may try the select count(*) from VwSrcTable first to get a feeling
how many records that will be.
Then during load running Select count(*) from DestTable from a 2nd session may let you see your progress.
- Log in to post comments
