create - 一時テーブル - 項目+データコピー


copy-temp-Table.sql
select *
 into #test
  from [DT_Table]

from の中身を test 一時テーブルを作りぶち込む
鯖直下の一時テーブルフォルダにテーブルできる

データは直接見れないらしい


追記:

copy-temp-Table.sql
select *
 into test
  from [DT_Table]

これでDT_Tableのコピーとしてtest作れる
一時テーブルはあくまでおまけじゃったか...