Hi,
I have a situation where I receive a continuous stream of data. This data gets processed and transferred into a database (SQL Server).
Now, I'm trying to code a model where if the db is down, the data is 'saved' locally (say in a file) -- and flushed out to the db when it recovers.
I was wondering if there are any existing better designed programming models for solving this problem.
Thanks.