I am planning for monitoring application which will use SQL 2005/08 database. It will monitor old server(s) which are using SQL 2000 db. Tools task is to pick the data from the servers do some statistics and insert the data back into tools own database for reporting purpose.
I am using .NET(C#) as development environment.
What i would really like to do is implement Stored Procedures which will pick the monitoring data from other servers and insert it into the monitoring tools databases table.
Now i would like to know whether its possible to write stored procedure like this ? Or i would have to pick the data from servers in program using one connection and then insert it into tools database using the other connection?
Please let me know if in case you can foresee any complication that i should be aware of.
Also some informative/helpful pointers(links, books) will be helpful.
Thanks all for valuable inputs.