linux sqluldr2命令,sqluldr2 linux64
上傳解壓后,放入path路徑
先直接調用執行試試,一般會報如下錯誤:
sqluldr2linux64.bin: error while loading shared libraries: libclntsh.so: cannot open shared object file: No such file or directory
也可以用ldd命令來看缺什么包: ldd ./bin/sqluldr2linux64.bin
完整的輸出:
[oracle@offdb ~]$ sqluldr2linux64.bin
sqluldr2linux64.bin: error while loading shared libraries: libclntsh.so: cannot open shared object file: No such file or directory
[oracle@offdb ~]$ ldd ./bin/sqluldr2linux64.bin
linux-vdso.so.1 => (0x00007ffdf0778000)
libclntsh.so => not found
libc.so.6 => /lib64/libc.so.6 (0x00007fd398371000)
/lib64/ld-linux-x86-64.so.2 (0x000055b5a4b9e000)
[oracle@offdb ~]$
缺這個的這個文件,可以在oracle安裝目錄中找到,做一個軟連接到lib中去,注意權限問題,root操作,否者沒權限
ln -s /u01/app/oracle/product/11.2.0/db_1/lib/libclntsh.so /lib64/libclntsh.so
再次執行即可運行成功
[root@offdb ~]# ln -s /u01/app/oracle/product/11.2.0/db_1/lib/libclntsh.so /lib64/libclntsh.so
[root@offdb ~]# su - oracle
[oracle@offdb ~]$ sqluldr2linux64.bin
SQL*UnLoader: Fast Oracle Text Unloader (GZIP, Parallel), Release 4.0.1
(@) Copyright Lou Fangxin (AnySQL.net) 2004 - 2010, all rights reserved.
License: Free for non-commercial useage, else 100 USD per server.
總結
以上是生活随笔為你收集整理的linux sqluldr2命令,sqluldr2 linux64的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 支付宝app支付java后台流程、原理分
- 下一篇: C#使用了未赋值的局部变量