分类归档: Database

Singletask exp imp ? Still There ?

玉面飞龙在一则BLOG的评注中提起

imp exp sqlldr 有个叫做 singletask 模式 relink的方式据说可以增加执行速度。

上去是某种特定平台才有.据说会消耗更多内存.在IxORA 上有一则信息

To perform a single-task export, you must use the expst executable instead of just exp. You will probably need to create the executable first, as follows.

cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk singletask

If you are intending the single-task executables to be used by a user other than oracle, then you will need to set the setuid bits as follows.

chmod 4511 $ORACLE_HOME/bin/*st

我在 Linux 下和 HP-UX 下测试了一下,现在的版本似乎都不支持了.得到的错误信息如下:

继续阅读

Metalink 也 Copy,Paste ?

Metalink 上看到一篇技术文档,Unix Commands on Different OS’s(Note:293561.1).乍一看,非常眼熟,这不是http://www.unixguide.net/上的文档么? 怎么连一点声明都没有,直接粘贴过来了? 看看 Metalink 上该文日期:Creation Date: 09-DEC-2004 Last Revision Date: 14-DEC-2004 ,Unixguide.net 上可是至少两年前就有了.天下文章一大抄 :)

继续阅读

“坚如磐石”的Oracle上周又发布了安全公告

回顾一下。上周数据库有关的最主要新闻是Oracle发布了新的CPU(Critical Patch Update)公告:cpu-jan-2005_advisory。这是个累积更新,包括著名的安全更高 #68 的所有内容。公告中还提到了 Pete Finnigan,他发现了一个关于数据库Directory对象的安全问题:DIRECTORY OBJECT – Reading outside of the directory object,此外,他的BLOG站点专门针对Oracle安全,信息翔实,而且更新比较迅速。

继续阅读

用 Sql*Plus 创建批量文件改名的脚本

用户要求对一个目录下的大量图片进行文件名修改。并给了一个对照文件:

4930503541,2019030524
4932503521,2089031230
4932503800,2389031456
4900003521,2019031211
.....

对照文件中前面的是就名字,后面的是新名字。可实际一看真正的文件名字,就傻了眼:文件名字都是类似:4930503541_1.png、4932503521_2.png 之类的,本来想用个Shell脚本来做,现在看起来,不好实现呀!

继续阅读