1. Select Into
Create a new table in the destination database
select * into sif.dbo.callDetail from I3_IC.dbo.calldetail_viw;
2. Insert into From
Insert into existing table, column needs to assigned explicitly. * may not work in some databases.
INSERT INTO table2 (column1, column2, column3, ...)SELECT column1, column2, column3, ...FROM table1WHERE condition;