Can we write a web service to watch a table in sql server. whenever the corresponding table is populated with new records, the new records should appended to the another table which has the same structure of the old one.
Is this is possible using webservices if not how to perform this.
Yes, but webservice will be just fetching results of your modification.. I don’t thing it will ever monitor your table changes. To monitor table changes you can use trigger on different actions that is performed on the table and stored in another table. Your web service will just read these updates and provide you the details.