I have two database. First database name "DB1" and second one's name is "DB2". These database have same tables, Beside that ,All of the properties is same.I want to take some of information from one table or more tables in DB1, than ,I want to put these information into the "DB2"
INSERT INTO DB2.dbo.Company(DB2.dbo.Company.Name, DB2.dbo.Company.Number,...)
SELECT DB1.dbo.Company.Name, DB1.dbo.Company.Number,...
FROM DB1.dbo.Company,..
Where ...
how can i do same work by using llblgen ?
thank you...