[20170915]sql脚本这里的@表示什么.txt
--//昨天看文章,链接https://mdinh.wordpress.com/2017/09/10/thoughts-on-rman-backup-strategy/
--//里面的sql语句在rman直接执行的,这个是12c的一个特性.但是我发现它执行有一些奇怪.
create pfile='/oradata/backup/init@.ora' from spfile;
--//里面的@ 在这里表示什么,总不会建立init@.ora文件吧.我决定测试看看.
1.环境:
SCOTT@book> @ &r/ver1
PORT_STRING VERSION BANNER
------------------------------ -------------- --------------------------------------------------------------------------------
x86_64/Linux 2.4.xx 11.2.0.4.0 Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
SYS@book> create pfile='/tmp/init@.ora' from spfile;
File created.
$ ls -l /tmp/init*
-rw-r--r-- 1 oracle oinstall 1926 2017-09-15 10:08:10 /tmp/initbook.ora
--//很明显脚本这里的@表示sid.仅仅做一个记录.