You can use it like this by creating a store procedure then executing it
Code:
create store procedure cr_sp_selectinto
as
select * into <destination> col1, col2, col3
from <source>
where <criteria>
When referencing another database use four part naming
Code:
database.dbo.table.object
or
Code:
execute cr_sp_selectinto
Jaime E. Maccou