I try to insert all record from a table in a database
to a equal table in another database
Insert into [DB1].TABLE1
(FLD1,FLD2,FLD3)
(
select
FLD1,FLD2,FLD3
from [DB2].TABLE2
)
TABLE1 and TABLE2 are equal !!!!
someone can help me ???
thank you in advance