Posts by Wallace Brun • 16 points
1 post
-
0
votes2
answers553
viewsA: Copy data from one database to another?
Since the table structures are the same, I advise you to use the following command: INSERT INTO DESTINO.dbo.cidadesibge SELECT * FROM ORIGIN.dbo.cidadesibge I hope I’ve helped.…