I would like to get all the details of a single table from Remote server DB to my local DB, during
page load event or some other good approach, which should happen as a back end process can any one help me over this issue.
1. Single Application created in Desktop and Web Application.
2. When User enroll new customer in Desktop Application that new Customer should be added in the Web Application Db when the Application is started.
NOTE:
Server DB table Columns may slightly differ from local DB. Each time when a new user is added in the server, it should update the local DB when the UserPage.aspx page is loaded.
Tools using: ASP.NET,SQL SERVER 2008.
Eg: Let the DB name be sample and the table name is customer
Table Header in Server DB: Cus_id,Cus_name,Cus_address,Cus_email,Cus_mob,Link_Id
Table Headers in Local DB: Cus_id,Cus_name,Cus_address,Cus_email,Cus_mob,Cus_password,Link_Id
here the Link_id is used as common for Desktop and web Application..initially in web application,
when a new user is added all the data are stored in DB except the
Link_id, which is get as a response from the server and save in the local DB.
Thanks.