RMAN中修改session的时间格式
RMAN> sql "alter session set nls_date_format=''yyyy-mm-dd hh24:mi:ss''";
|
为什么是这种格式呢,因为你想得到一个
nls_date_format='yyyy-mm-dd hh24:mi:ss'
|
这样的串,因为''是特殊字符,而且是在" "中,所以要用两个''表示一个'
再举个例子,假如你想往一个表中添加一行数据,其中的数据包含''
SQL> create table test(aa varchar2(10));
Table created.
SQL> SQL> insert into test values('''aa''');
1 row created.
SQL> select * from test;
AA ----------
'aa'
|
阅读(780) | 评论(0) | 转发(0) |