同时将相同的数据插入两个不同的数据库中
问题描述:
任何人都可以帮助我
我想在两个不同的数据库中同时插入相同的数据.
虽然两个数据库都具有相同的表及其架构....
感谢
Hi,
Any one can help me please
i want insert same data in two different database simultaneously.
While both database has same table and their schema....
thanks
答
You can do in 2 approch either you change the query where you inserting the data in one datebase at the same time you save the data in different database
2nd one in code behind you change the connection string 2 times for insert data in 2 different database
INSERT INTO
db1.myTbl(value)
INSERT INTO
db2.myTbl(value)