huskerdoug
IS-IT--Management
Here is my scenario:
I have a view on one server (A). I would like to replicate the view to another server (B) that is used by our intranet.
Let’s say this view has the following fields: patientNumber, lastName, firstName
The table has the same three fields but also has: id (primary key), update (nullable), date (nullable)
I haven’t been successful replicating a view, so I set up DTS to create a table on the same server as the view (A), and then I would simply replicate to the same table on server (B). But, the problem I’m running into is DTS will not insert the data into the table because the id column in the table will not accept null values.
The purpose of the app is to provide read only data (the view info) from our billing system that will feed a table (as above) that can be updated from an active server page.
I have a view on one server (A). I would like to replicate the view to another server (B) that is used by our intranet.
Let’s say this view has the following fields: patientNumber, lastName, firstName
The table has the same three fields but also has: id (primary key), update (nullable), date (nullable)
I haven’t been successful replicating a view, so I set up DTS to create a table on the same server as the view (A), and then I would simply replicate to the same table on server (B). But, the problem I’m running into is DTS will not insert the data into the table because the id column in the table will not accept null values.
The purpose of the app is to provide read only data (the view info) from our billing system that will feed a table (as above) that can be updated from an active server page.