Migrating to an SQL Server Database
For SQL Server, setup a link server relationship between the source databases and target databases, and execute a command like the following to move the data:
insert into prod.b.permit select * from dev.b.permit where serv_prov_code=’ALAMEDA’
where:
prod.b.permit
is the module configuration
in the target databasedev.b.permit
is the permit module configuration
in the source databaseALAMEDA
is the agency name.