I am developing a job that runs every 15 seconds that will give a "realtime" view of some of our data.
It pulls from a source on a different server that looks at a particular application.
In the past, we truncated the destination and just inserts. However, I would like to Update the destination with the new source, so we don't see a count of 4000 dip to 0, then back to 4003.
One solution is to have a temp table, then have a second task update the destination table from that temp table.
Is this the preferred way? This feels dirty.
I notice that within the Data Flow Task OLE DB Destination, I can change data access mode to SQL Command. Any idea where I can reference the source from this command? It seems logical that the data is somewhere on our side that we can manipulate.
Thanks for the assistance!