简体   繁体   English

imp:符号查找错误:未定义符号sldext

[英]imp : symbol lookup error : undefined symbol sldext

I trying to import a dump file from app server to db server using code below in linux environment : 我试图在Linux环境中使用以下代码将转储文件从应用程序服务器导入数据库服务器:

imp usrname/password FULL=y file=filepath log=log.log 

when i execute the script in db server, it works well. 当我在数据库服务器中执行脚本时,它运行良好。 However, when i use this in app server. 但是,当我在应用服务器中使用它时。 it show " imp: symbol lookup error: imp : undefined symbol : sldext". 它显示“ imp:符号查找错误:imp:未定义的符号:sldext”。 I've checked the app server sqlplus client release is using the same version as db server 11.2.0.4.0. 我已经检查了应用服务器sqlplus客户端版本使用的是与db服务器11.2.0.4.0相同的版本。 the only difference is under the copyright (c) 1982, App server is using 2011 and DB server is using 2013 instead. 唯一的区别在于版权(c)1982下,App服务器使用2011,而DB服务器使用2013。

Kindly advice is there any method to allow app server to imp dump file to db server 请注意,是否有任何方法允许应用服务器将文件导入到db服务器

when i execute the script in db server, it works well. 当我在数据库服务器中执行脚本时,它运行良好。 However, when i use this in app server. 但是,当我在应用服务器中使用它时。 it show " imp: symbol lookup error: imp : undefined symbol : sldext" 它显示“ imp:符号查找错误:imp:未定义符号:sldext”

Impdp or IMP(deprecated) doesn't work on a client machine(in your case the App server) because... Impdp或IMP(不建议使用)在客户端计算机(在您的情况下为App服务器)上不起作用,因为...

Data Pump is server-based, rather than client-based, dump files, log files, and SQL files are accessed relative to server-based directory paths. Data Pump是基于服务器而不是基于客户端的,转储文件,日志文件和SQL文件是相对于基于服务器的目录路径访问的。 Data Pump requires you to specify directory paths as directory objects. 数据泵要求您将目录路径指定为目录对象。 A directory object maps a name to a directory path on the file system. 目录对象将名称映射到文件系统上的目录路径。

Overview of Oracle Data Pump Oracle Data Pump概述

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 符号查找错误:未定义的符号:_alloca - symbol lookup error: undefined symbol: _alloca 符号查找错误:未定义符号:FT_Get_Font_Format - symbol lookup error: undefined symbol: FT_Get_Font_Format 如何修复符号查找错误:群集环境中的未定义符号错误 - How to fix symbol lookup error: undefined symbol errors in a cluster environment 符号查找错误未定义符号:mysql_init - Symbol lookup error undefined symbol: mysql_init 系统查找错误未定义符号SFML - system lookup error undefined symbol SFML 符号查找错误未定义符号,但似乎所有符号都存在 - Symbol lookup error undefined symbol, but all symbols seem to be present 符号查找错误:未定义的符号 atexit (linux/C) - Symbol lookup error: undefined symbol atexit (linux/C) 无法安装 gobject-introspection - 符号查找错误:和未定义的符号:g_unicode_type_get_type - Unable to install gobject-introspection - symbol lookup error: and undefined symbol: g_unicode_type_get_type 符号查找错误:/usr/local/lib/libsvn_subr-1.so.0:未定义的符号:apr_atomic_xchgptr - symbol lookup error: /usr/local/lib/libsvn_subr-1.so.0: undefined symbol: apr_atomic_xchgptr freshclam:符号查找错误:freshclam:未定义符号:print_version,版本 FRESHCLAM_PRIVATE - freshclam: symbol lookup error: freshclam: undefined symbol: print_version, version FRESHCLAM_PRIVATE
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM