创建临时表

创建临时表:
create global temporary table TestTemp
(
    division   nvarchar2(255),
    dam_name   nvarchar2(150),
    avg_call    number,
    starttime   nvarchar2(30)
)
on commit preserve rows
nocache;

posted @ 2010-12-31 12:00  emmy  阅读(217)  评论(0编辑  收藏  举报