使用与默认终结符不同的终结符运行Oracle SQL

时间:2015-03-19 18:40:13

标签: sql oracle sqlplus

我有一个我从供应商处收到的oracle脚本。但是,查看SQL,终结符不是默认的;/

create table TableA
(
   Column1 raw(16) not null,
   Column2 blob not null,
   Column3 not null
)$$

如何将终止符更改为$$

编辑:我正在尝试在SQLPlus中运行此SQL文件。

1 个答案:

答案 0 :(得分:-1)

在pl / sql中以

开头
Delimiter $$

然后是你的创作。