This will copy a table, structure and data from SQL server database to another.
Damn handy!

SQL:
  1. SELECT * INTO TargetDatabase.dbo.MyTable
  2. FROM  SourceDatabase.dbo.MyTable