Oracle 19c Online statistics gathering between sqlloader and insert append Tips
This is test with sqlloader/insert append sql.
Oracle SQL loader Tips
Unix SSH Timeout Tips
Centos 7.6 + Postgresql 10 Install Tips
实战介绍在 CentOS 7.6 环境下如何 源码安装 Postgresql 10
Ubuntu Change default editor Tips
$ echo export EDITOR=/usr/bin/vim >> ~/.bashrc
$ update-alternatives --config editor
-> 3 (vim.basic)
root@inst-hk01:~# update-alternatives --config editor
There are 4 choices for the alternative editor (providing /usr/bin/editor).
Selection Path Priority Status
------------------------------------------------------------
0 /bin/nano 40 auto mode
1 /bin/ed -100 manual mode
2 /bin/nano 40 manual mode
* 3 /usr/bin/vim.basic 30 manual mode
4 /usr/bin/vim.tiny 10 manual mode
Press <enter> to keep the current choice[*], or type selection number: 3
root@inst-hk01:~#
$ sudo apt-get remove nano
test
$crontab -e
Oracle Linux pstack Tips
Install gdb by yum and there are pstack and gstack in gdb.
Oracle Linux yum/wget proxy Tips
Linux Yum/Wget proxy setting
Oracle 12c PDB LOCKDOWN Profiles Tips
Oracle Database 12.2 New Feature – PDB Lockdown Profiles
Having fun with PDB LOCKDOWN PROFILES
oracle 12cR2新特性-PDB lockdown profile
Have a good work&life! 2019/09 via LinHong
Oracle 19c Query the patch Tips
Query the patch applied on database 19c.
SYS@orcl> !cat patch_list.sql
set line 300
col action form a12
col version form a40
col comments form a60
col action_date form a20
select comments, action, to_char(action_time,'DD/MM/RR HH24:MI:SS') action_date, version from registry$history order by action_date;
set line 300
col action form a12
col version form a40
col description form a60
col action_date form a20
select description, action, to_char(action_time,'DD/MM/RR HH24:MI:SS') action_date, ' ' version from dba_registry_sqlpatch;
SYS@orcl>
Oracle 19c Import with disable_archive_logging Tips
Oracle12c feature is the ability to run in nologging mode in import execution, disabling archive logging during a large import. Only for table and index Not for tablespace.
transform=disable_archive_logging:Y
transform=disable_archive_logging:Y:tablename
transform=disable_archive_logging:Y:indexname
Linux 7 enable Autostarting of Oracle Database 19c Tips