Can't find library when compiled with debugging

Hi all,
Compiling this code segment cannot find a library when using -g
bash-3.2$ cat tester.cc
#include <iostream>
#include <string>
using namespace std ;
static void
myRoutine()
string str= "this is in routine" ;
string str3 ;
str3 = str.substr(11,7) ;
if(str.substr(0,4) == "this") cout << "Have a hit" << endl ;
cout << "this is str3 - " << str3 << endl ;
int main(int argc, char **argv)
string str = "this is a test" ;
string str1, str2 ;
str1 = str.substr(0,4) ;
str2 = str.substr(10,4) ;
cout << "this is str1 - " << str1 << endl ;
cout << "this is str2 - " << str2 << endl ;
myRoutine() ;
return 0 ;
bash-3.2$ CC -g -o tester tester.cc
bash-3.2$ ldd tester
     libCstd.so.1 =>     /usr/lib/libCstd.so.1
     libCstd.so.1 (SUNW_1.4.2) =>     (version not found)
     libCrun.so.1 =>     /usr/lib/libCrun.so.1
     libm.so.2 =>     /usr/lib/libm.so.2
     libc.so.1 =>     /usr/lib/libc.so.1
If I comment out:
if(str.substr(0,4) == "this") cout << "Have a hit" << endl ;
bash-3.2$ cat tester.cc
#include <iostream>
#include <string>
using namespace std ;
static void
myRoutine()
string str= "this is in routine" ;
string str3 ;
str3 = str.substr(11,7) ;
// if(str.substr(0,4) == "this") cout << "Have a hit" << endl ;
cout << "this is str3 - " << str3 << endl ;
int main(int argc, char **argv)
string str = "this is a test" ;
string str1, str2 ;
str1 = str.substr(0,4) ;
str2 = str.substr(10,4) ;
cout << "this is str1 - " << str1 << endl ;
cout << "this is str2 - " << str2 << endl ;
myRoutine() ;
return 0 ;
bash-3.2$ CC -g -o tester tester.cc
bash-3.2$ ldd tester
     libCstd.so.1 =>     /usr/lib/libCstd.so.1
     libCrun.so.1 =>     /usr/lib/libCrun.so.1
     libm.so.2 =>     /usr/lib/libm.so.2
     libc.so.1 =>     /usr/lib/libc.so.1
Or if I remove -g:
bash-3.2$ cat tester.cc
#include <iostream>
#include <string>
using namespace std ;
static void
myRoutine()
string str= "this is in routine" ;
string str3 ;
str3 = str.substr(11,7) ;
if(str.substr(0,4) == "this") cout << "Have a hit" << endl ;
cout << "this is str3 - " << str3 << endl ;
int main(int argc, char **argv)
string str = "this is a test" ;
string str1, str2 ;
str1 = str.substr(0,4) ;
str2 = str.substr(10,4) ;
cout << "this is str1 - " << str1 << endl ;
cout << "this is str2 - " << str2 << endl ;
myRoutine() ;
return 0 ;
bash-3.2$ CC -o tester tester.cc
bash-3.2$ ldd tester
     libCstd.so.1 =>     /usr/lib/libCstd.so.1
     libCrun.so.1 =>     /usr/lib/libCrun.so.1
     libm.so.2 =>     /usr/lib/libm.so.2
     libc.so.1 =>     /usr/lib/libc.so.1
then I can run successfully
Any thoughts or hints?
bash-3.2$ CC -V
CC: Sun Ceres C++ 5.10 SunOS_i386 2008/07/10
Usage: CC [ options ] files. Use 'CC -flags' for details
bash-3.2$ uname -a
SunOS alpha 5.11 snv_86 i86pc i386 i86pc
Thanks,
Jim

Ack! Please ignore my earlier posting. I did not play close enough attention to details in your post. I apologize for the confusion. Let me start over:
The Studio Express release you have contains a newer version of the C++ runtime library libCstd.so.1 than is available yet in Solaris patches. We bump the internal version number when we add new interfaces. The internal version number of the Studio Express library is SUNW_1.3.2. The version of the latest release Solaris patch is SUNW_1.3.1.
Some new string class operator functions are in version SUNW_1.3.2. I think these are also defined as inline functions in the compiler headers. When you compile with -g, inlining is disabled, and you create a dependency on library version SUNW_1.3.2. (Compiling with -g0 allows function inlining, and might resolve your problem, but read on.)
We have not released a libCstd.so.1 with internal version SUNW_1.4.2, so I don't understand how that version number could appear in an error message. Did you really see that version, or is it a transcription error? For now, let's assume it is a transcription error.
When you compile and link with CC, the program gets a runpath pointing into the compiler installation area. At program run time, the loader looks for libraries in directories listed in the runpath, with /lib and /usr/lib as last resort. The "ldd" command reports what the runtime loader will do regarding dependent libraries.
If the compiler is installed in /opt, a 32-bit program gets a runpath that includes /opt/SUNWspro/lib. In that directory in Sun Studio Express is a symbolic link that points to ../prod/usr/lib/libCstd.so.1, the library with version SUNW_1.3.2.
If you try this:
% /opt/SUNWspro/bin/CC hello.cc
% ldd a.out
you should see, among other things,
libCrun.so.1 => /opt/SUNWspro/lib/libCstd.so.1
(Depending on the OS version, you might see
libCrun.so.1 => /opt/SUNWspro/prod/usr/lib/libCstd.so.1 instead.)
But if ldd can't resolve the library, you probably have a corrupted Sun Studio Express installation. In that case, uninstall it, and reinstall from a fresh download.
If you run the program on a different computer where Sun Studio Express is not installed, the loader won't be able to find the right library version, and you will get "not found" results. I addressed this issue in another thread:
http://forums.sun.com/thread.jspa?threadID=5340163

Similar Messages

  • Can't find Library when using Import Mailboxes option in Mountain Lion

    Hi there, I'm trying to import my Mailboxes I've created on my iMac in my Apple Mail, but I can't see the "Library" folder. I've searched the web and found instructions to unhide the "Library" folder when using Finder, but this does not help me as I can't use this when following the instructions and prompts in the Mail>File>Import Mailboxes option. I'm running Mountain Lion. Can anyone help?

    Sorry that option not available in mountain lion.
    You can use a terminal command but the easiest way to do this is to choose Go>Go To Folder ~/Library.
    When it opens drag the Folder from the window bar into your side bar.
    This will make it always available.
    To remove it just drag out of the side bar.

  • ATV freezes or can't find library when streaming from ITunes 8

    I'm running a relatively new Apple TV box, which shipped with software version 2.3. It's connected to a 64-bit Windows Vista box running iTunes 8.0.2.22. It's a wired network connection running through a Belkin N1 Vision router.
    The ATV and iTunes see each other. No problem there. But when I try to stream photos or music from the PC to the ATV, either the ATV spins forever "loading" the library, or the library loads but the entire system freezes as soon as I try to actually access anything (it stalls on the shuffle/albums/artists menu).
    I tried to get it to sync instead of stream. In this case, it stalls/freezes on the first song downloaded. I've restarted the ATV, unplugged and restarted the ATV and restored the ATV to factory settings -- each multiple times. No change.
    Oddly, I can access the iTunes store via the ATV to purchase music or video. That part still works. It's only the connection to a computer that's causing the hearburn.
    I removed the firewall, to no effect. So that's not it. Any help is most appreciated. The box is only about a month old, and this non-performance is more than a little frustrating.
    Thx --
    Joel

    Hmm.
    It's possible the networking is fine and there's some other issue such as a corrupted itunes library database/xml fiel - this could cause problems when trying to sync or transfer to AppleTv if either itunes or AppleTV falls over parsing the files.
    Could you create a new Vista user account, add some test files, then set this 'Computer' up for Sharing under AppleTv Settings. I'd log out of the normal user in Vista not just switch users as iTunes on my mac does not like 2 itunes user running concurrently when it comes to streaming - only 1 is accessible. If you can stream successfully, might point to an iTunes problem with the current user account.
    I would not set the new user up as the (single) sync library as it'll delete any synced stuff already on AppleTv which could leave you with an empty box.
    Other things you could try as a last resort might include uninstalling and resinstalling iTunes (you may need to deauthorise first, I would just in case) or performing a Sytem Restore of the AppleTV (Hold menu and down to enter diagnostics menu and select it from Diagnostics menu). Last resort things these though.
    Also, if you've only rebooted AppleTV in software pull the power cord and leave for a few mins, then restart. If some internal component is having a 'bad hair day' then it might be stuck in that state as the power isn't cut by a software reboot.
    Good luck.

  • I can't find folder when I make Search with new OS X Mavericks update?

    1- I can't find folder when I make Search with new OS X Mavericks update? I have 4 Tr HD when am looking for my file I have to make search but now search can't find files?????
    2- alt is not working?

    Hello,
    I use to do search like this before I update my Mac, how I can do it now?

  • My lightroom 4 wouldn't open.  A computer tech worked on my computer to clean it all up, etc. however lightroom still wouldn't open.  He opened a new catalog and that will work, however I can't find my old one with all my photographs.  When I click on ope

    My Lightroom 4 wouldn't open.  A computer tech worked on my computer to clean it all up, etc. however Lightroom still wouldn't open.  He opened a new catalog and that will work, however I can't find my old one with all my photographs.  When I click on open catalogs, it goes to documents and I can't find any catalogs there.

    What happens if you try File->Open Recent? What happens if you have your operating system search all of your hard disks for files whose name ends with .LRCAT?

  • Can't find library or mismatched ABI for -lstdc++-linking occi with g++

    []-pedro:/home/pedro/modelo_v4_g++>uname -a
    HP-UX des2a B.11.23 U ia64 4092774908 licencia de usuarios ilimitados
    []-pedro:/home/pedro/modelo_v4_g++>make
    g++ -mlp64 -DOCCI_NO_WSTRING=1 -mlp64 -D_RWSTD_MULTI_THREAD -I/opt/users/ora10g/rdbms/demo -I/opt/users/ora10g/rdbms/public -I/opt/users/ora10g/plsql/public -I/opt/users/ora10g/network/public -DHPUX -D_REENTRANT -DHPUX_KTHREAD -DSLXMX_ENABLE -DSLTS_ENABLE -DSS_64BIT_SERVER -DBIT64 -DMACHINE64 -DORAIA64 -DHPUX_IA64 -c Main_Program.cpp
    g++ -mlp64 -DOCCI_NO_WSTRING=1 -mlp64 -D_RWSTD_MULTI_THREAD -I/opt/users/ora10g/rdbms/demo -I/opt/users/ora10g/rdbms/public -I/opt/users/ora10g/plsql/public -I/opt/users/ora10g/network/public -DHPUX -D_REENTRANT -DHPUX_KTHREAD -DSLXMX_ENABLE -DSLTS_ENABLE -DSS_64BIT_SERVER -DBIT64 -DMACHINE64 -DORAIA64 -DHPUX_IA64 -c Modelo.cpp
    g++ -o occiteste Main_Program.o Modelo.o -L/opt/users/ora10g/lib -L/usr/local/lib -locci -lclntsh `cat /opt/users/ora10g/lib/sysliblist` -lm
    ld: Can't find library or mismatched ABI for -lstdc++
    Fatal error.
    collect2: ld returned 1 exit status
    make: *** [exe] Error 1

    []-pedro:/home/pedro/modelo_v4_g++>ldd -v -r -d /opt/users/ora10g/lib/libocci.so
    symbol not found: LdiInterCheck (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxstd (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxsti (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxsto (/opt/users/ora10g/lib/libocci.so)
    symbol not found: xaoSvcCtx (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobGetChunkSize (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIConnectionPoolCreate (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIStmtRelease (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _ZNSt9exceptionD2Ev   (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCISubscriptionEnable (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCISessionRelease (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectArrayPin (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_rethrow (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIHandleFree (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _memcmp       (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateConstruct (/opt/users/ora10g/lib/libocci.so)
    symbol not found: memchr (/opt/users/ora10g/lib/libocci.so)
    symbol not found: xaoEnv (/opt/users/ora10g/lib/libocci.so)
    symbol not found: memmove (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobLocatorIsInit (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataConvert (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __memcmp_ver (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _memset       (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCINlsCharSetNameToId (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobOpen (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lxinitc (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiParseForOutputU (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataGetType (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __memset_ver (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterToString (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_allocate_exception (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_begin_catch (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPSetObjectPtrNull (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetLdiDateTimeFromKpd (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobAppend (/opt/users/ora10g/lib/libocci.so)
    symbol not found: sLdiGetDate (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPAlloc (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetRowid (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCITypeByName (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCISubscriptionUnRegister (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterCopy (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIDefineObject (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterDivide (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateInterAdd (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIRawPtr (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _ZdaPv        (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_pure_virtual (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCINumberFromInt (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZN15HPMutexWrapperD1Ev (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _ZdlPv        (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZN15HPMutexWrapperD2Ev (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lxhname2id (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCISessionGet (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __bad_alloc_exception (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetDateContext (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxbegin (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterInterSubtract (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataIsNull (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPConvertUb1ToRowid (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIDescriptorFree (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCISubscriptionPost (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPFree (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobFileGetName (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobFileSetName (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCINumberToReal (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _ZTIv (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobCharSetId (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateFromString (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPAnyDataAttrCountSet (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetNLSLang (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCINumberToInt (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataAccess (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _Znam (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _Znwm (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIErrorGet (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIDescriptorAlloc (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIStmtExecute (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetErrorMessageNLS (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterFromTZ (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectSetData (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCINumberFromReal (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIDateTimeFromText (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterConstruct (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetErrorMessage (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectMarkDelete (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _strncpy      (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIParamSet (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetLdiIntervalFromKpd (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobLocatorAssign (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectIsLocked (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiParseForInputType (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetDefTZ (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIParamGet (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataCollAddElem (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectNew (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectPin (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataCollGetElem (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCISessionPoolDestroy (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIRefAssign (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobIsOpen (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIConnectionPoolDestroy (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataBeginCreate (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __bad_exception (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIStmtPrepare2 (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterCompare (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPIsObjectLoaded (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateDateConvert (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lxgucs2utf (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetTZI (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIRefIsNull (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIRawSize (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetEnv (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPAnyDataSetFlag (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCITypeTypeCode (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZTVN10_cxxabiv121__vmi_class_type_infoE (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectMarkUpdate (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __strcpy_ver (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterFromTZU (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __strncpy_ver (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPDefConvOCCI (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPAnyDataSetUCIOptMode (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxshift (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxabs (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxbex (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxcmp (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxdec (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxdiv (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZTVN10_cxxabiv117__class_type_infoE (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxfcn (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxflo (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxfpr (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxinc (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxlog (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCITransRollback (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxmin (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxmod (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxneg (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxmul (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxnft (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxnur (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxpfl (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxpow (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxren (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxrou (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxsgn (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxsni (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxsqr (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxsub (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxsum (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxtru (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCITypeByRef (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIRefIsEqual (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCISessionPoolCreate (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobWrite (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectUnmarkByRef (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _ZTISt9exception      (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPConvertDateToDateTime (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_call_unexpected (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPAnyDataSetNull (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIBindByPos (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterToStringU (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectMarkDeleteByRef (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCISubscriptionRegister (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAttrSet (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZNSt14_rw_exception9_C_assignEPKcm (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiParseForInputTypeU (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __memchr_ver (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAttrGet (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAQEnq (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAQDeq (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectUnmark (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPAnyDataSetInd (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIDescribeAny (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_finalize (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZTVN10_cxxabiv120__si_class_type_infoE (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZN15HPMutexWrapper4lockEPv (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateDateSubtract (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPHeapAlloc (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectFree (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxatn2 (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIStringAssignText (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobTrim (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZNSs9_nullrefE (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPIsNonFinalType (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataAttrSet (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetRidCharLen (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxcopy (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataAttrGet (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIBindObject (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __memmove_ver (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lxgutf2ucs (/opt/users/ora10g/lib/libocci.so)
    symbol not found: UnwindResume (/opt/users/ora10g/lib/libocci.so)
    symbol not found: xaosterr (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectPinTable (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCINlsCharSetIdToName (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectFlush (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_end_catch (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIHandleAlloc (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCICacheFlush (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIEnvNlsCreate (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxdtsu (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobRead (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobIsEqual (/opt/users/ora10g/lib/libocci.so)
    symbol not found: sldxgd (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __strlen_ver (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxfcnu (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lxuCvtToCtx (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIStmtPrepare (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateCompare (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lxhLaToId (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataGetCurrAttrNum (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lxhcnv (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPConvertRowidToUb1 (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterMultiply (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lxhlod (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobFileExists (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIMultiByteStrCaseConversion (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZN15HPMutexWrapper6unlockEPv (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lfpinit (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lxlinit (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPCompPrefRows (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCISubscriptionDisable (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIStmtFetch (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCITypeSchema (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCITypeName (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIStringPtr (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateCheck (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIDateAssign (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCITypeArrayByName (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPHeapFree (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxnftu (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateCopy (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetObjectPtr (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxln (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZNSt14_rw_exception10_C_vformatEi11__va_list__ (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataDestroy (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIRefClear (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIDefineByPos (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_atexit (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobLoadFromFile (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectLockNoWait (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAnyDataEndCreate (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobClose (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIContextSetValue (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIContextGetValue (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxpflu (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIEnvCreate (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobGetLength (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterFromStringU (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectGetObjectRef (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetLdiInternalFormat (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateToString (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateToStringU (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPAcquireMutex (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxqtra (/opt/users/ora10g/lib/libocci.so)
    symbol not found: lnxqtri (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _strcpy       (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPGetInternalRowid (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterInterAdd (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectLock (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiParseForOutput (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateFromStringU (/opt/users/ora10g/lib/libocci.so)
    symbol not found: _strlen       (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_personality_routine (/opt/users/ora10g/lib/libocci.so)
    symbol not found: __cxa_throw (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxstdu (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxstou (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxstiu (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCILobCopy (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCITransCommit (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiInterFromString (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectUnpin (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIStmtGetPieceInfo (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIStmtSetPieceInfo (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPasswordChange (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIAQListen (/opt/users/ora10g/lib/libocci.so)
    symbol not found: LdiDateInterSubtract (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIPReleaseMutex (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIRawAssignBytes (/opt/users/ora10g/lib/libocci.so)
    symbol not found: OCIObjectPinCountReset (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxadm (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxads (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxatz (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxcmp (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxdtd (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxdts (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxdyn (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxend (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxeti (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxgtz (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxite (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ZN15HPMutexWrapper4initEv (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxldd (/opt/users/ora10g/lib/libocci.so)
    symbol not found: ldxnxd (/opt/users/ora10g/lib/libocci.so)
    []-pedro:/home/pedro/modelo_v4_g++>

  • I get itunes can't find file when I tried to play a TV show I had purchased that was supposed to be in the cloud. There are several of these, including an entire season. In the store it shows that I purchased these shows when I checked them.

    I get itunes can't find file when I tried to play a TV show I had purchased. I then checked and had this problem with an entire TV season I had purchesed. The shows were supposed to be in the cloud. I went to the itunes store, went to the tv shows and they showed that I had purchesed them. They do not show up when I click on purchesed in the store.

    Try this...
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • Codepage problem when compiling with fastjavac

    Hi,
    I'm getting the following warnings when compiling with fastjavac:
    fastjavac: warning: Can't find codepage for "Cp1250" encoding.
    fastjavac: warning: Use default ANSI codepage.
    2 warnings
    How could I suppress these warnings?
    Thanks in advance

    I think you are posting it on the wrong Forum. This is for Forte 4GL not Forte for Java.

  • Copied objects are compiled with debug True

    I had an issue with copied packages/triggers/procedures that when they were copied showed up as compiled with debug status.
    My sql developer client has a default setting of compilng PL/SQL code with optimization level = 0 , while our database has a default = 2.
    When modifying this level and setting it to 0, the debug flag is turned on, although not specified in the sql developer client)
    preferences -> database -> PL/SQL -> Optimization Level = 2
    select * from v$parameter where name like 'plsql%' returns
    888         plsql_debug      1             FALSE    FALSE
    889         plsql_optimize_level     3             2             2 after setting the level to 0 the same query returns:
    888         plsql_debug      1             TRUE     TRUE
    889         plsql_optimize_level     3             0             0this compile with debug behavior is shown on oracle 10 and 11 databases.

    I also have sqldeveloper version 3.2.20.09 and look up the value for optimizer in the preferences menu via preferences -> database -> PL/SQL (just as in my first message)
    BTW I can still reproduce this issue (and 15 other dbas and developers at where I work) on both oracle 10 and 11.
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    "CORE     10.2.0.4.0     Production"
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    and
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE     11.2.0.2.0     Production"
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    BTW We've been using sqldeveloper here since version 2.x. We found a workaround by setting the value for Optimization Level to 2, although you might not reproduce the issue, I suggest to keep it for others, although it seems not many others experience this issue.

  • /usr/ccs/bin/ld: Can't find library: "clntsh"

    i've read all your post, and i still having this error
    1: when i do make i get this:
    make -f demo_proc.mk INAME=sample1.pc
    `/bpi/orabpi/product/lib/libclntsh.sl' is up to date.
    why???
    than i use proc sample1.pc, and the proc create sample1.c
    than i do cc -lclntsh -I$ORACLE_HOME/precomp/public sample1.c
    and in return i get: /usr/ccs/bin/ld: Can't find
    library: "clntsh"
    i really don't know what problem is this...
    can you help????
    Paulo Aboim Pinto
    [email protected]
    Portugal

    i've read all your post, and i still having this error
    1: when i do make i get this:
    make -f demo_proc.mk INAME=sample1.pc
    `/bpi/orabpi/product/lib/libclntsh.sl' is up to date.
    why??? Are you by any chance using the example makefile supplied with Oracle? This has a line in it that calls a makefile called env_precomp.mk.
    Get rid of this line---it is used (I think) for the initial setup of ProC/C++ and is superflous for building user programs.
    If you want I can supply you with a template makefile for 8.0.5 that will do the complete build for you, including handling ProC++ files, additional C/C++ source files and header files. e-mail me off list if you want this and I'll send it to you.
    Alastair
    than i use proc sample1.pc, and the proc create sample1.c
    than i do cc -lclntsh -I$ORACLE_HOME/precomp/public sample1.c
    and in return i get: /usr/ccs/bin/ld: Can't find
    library: "clntsh"
    i really don't know what problem is this...
    can you help????
    Paulo Aboim Pinto
    [email protected]
    Portugal

  • Can't find library libjsafe.so in LIBPATH (Weblogic 5.1 on AIX 4.3.3)

     

    try adding
    -Dweblogic.security.SSL.useJava=true
    to your startup script
    John Ruskin wrote:
    I am trying to start WebLogic 5.1 on AIX 4.3.3.
    WebLogic is installed in /app/weblogic/weblogic510 and
    JDK 1.2.2 is in /usr/jdk_base.
    When I run startWebLogic.sh, it throws an exception which is listed below.
    However, the first message displayed when it starts up is
    LIBPATH=/app/weblogic/weblogic510/lib/aix
    and the library mentioned in the exception is indeed there
    Despite the exception Server does start up, but complains about
    unable to Initialize/Load POSIX Performance Pack.
    Any help is appreciated!
    JR
    y 18 08:57:15 CDT 2000:<I> <WebLogicServer> Server loading from
    weblogic.class.path. EJB redeployment enabled.
    java.lang.UnsatisfiedLinkError: Can't find library libjsafe.so in LIBPATH
    LIBPATH=/usr/jdk_base/lib/aix/native_threads
    at java.lang.Runtime.loadLibrary(Compiled Code)
    at java.lang.System.loadLibrary(Compiled Code)
    at COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(Compiled
    Code)
    at COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(Compiled Code)
    at COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(Compiled Code)
    at weblogic.security.RSA.performOPJSafe(Compiled Code)
    at weblogic.security.RSA.performOp(Compiled Code)
    at weblogic.security.RSApkcs1.decrypt(Compiled Code)
    at weblogic.security.RSAMDSignature.verify(Compiled Code)
    at weblogic.security.X509.verifySignature(Compiled Code)
    at weblogic.t3.srvr.SSLListenThread.insertIntoCAChain(Compiled Code)
    at weblogic.t3.srvr.SSLListenThread.<init>(Compiled Code)
    at weblogic.t3.srvr.SSLListenThread.<init>(Compiled Code)
    at weblogic.t3.srvr.T3Srvr.start(Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(Compiled Code)
    at weblogic.Server.startServerDynamically(Compiled Code)
    at weblogic.Server.main(Compiled Code)
    at weblogic.Server.main(Compiled Code)
    Following is the last two lines before the "Server Started" message.
    Thu May 18 08:57:23 CDT 2000:<A> <Posix Performance Pack> Could not
    initialize POSIX Performance Pack.
    Thu May 18 08:57:23 CDT 2000:<E> <Performance Pack> Unable to load
    performance pack, using Java I/O.
    Please remember to ALWAYS Reference Your Case Number in the subject line.
    Ian Kushnir
    Technical Support Engineer - North Sydney
    BEA Systems
    Phone: +61-2-9923 4043
    Mobile: +61-417 889 336 or 0417 889 336
    Fax: +61-2-9923 4080
    Email: [email protected]

  • MapBuilder Error:Can not find a GeoRaster object with specified rdt and rid

    Hello,
    I can't GeoRaster data in the preview of the MapBuilder and MapViewer. The GeoRasterViewer shows the Raster images without problems.
    MapBuilders error message:
    19.11.2008 13:07:11 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    19.11.2008 13:07:11 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    19.11.2008 13:07:11 oracle.sdovis.MapMaker buildDataMBR
    WARNUNG: null MBR resulted from buildDataMBR.
    The errror message of MapViewer is nearly the same with some more informations about the spatial query and the coordintes of the query window. If I run that spatial query in the sqldeveloper it returns a result!
    I did following stebs:
    - saved a tiff-Image in a GeoRaster table with pyramid an tiled images.
    - checked the sdo_geom_metadata --> they are correct
    - checked the sdo_georaster object for the rdt table name and rasterid --> they are correct
    - checked the rdt table --> objects with that rid are saved
    - checked the mdsys.sdo_geor_sysdata table --> entry is correct
    - validate the geraster with the sdo_geor.validategeoraster function --> object is valid
    - updated the spatial extend of the image and try again the preview functio--> the same error
    The databse server is a virtual Linux server with Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit.
    The web server is a Window 2003 R2 Server with a weblogic server and mapviewer patch 5 (Ver1033p5_B081010).
    For a test I did the same (the same table script, the same raster data, the same import method) on a developer pc (WinXP Pro SP2) with Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 (32bit) the same mapbuilder version but with the MapViewer QuickStartKid and it works fine!!!
    Has anyone an idea?
    Greeting,
    Cord
    Edited by: Corti on Nov 19, 2008 2:14 PM

    Hi Joao,
    Thanks so far.
    I'm previewing a GeoRaster theme. I created it with the MapBuilder GeoRaster wizard. The theme difinition is (out of the export file):
    RAS_DGK|
    null|
    RAS_DGK|
    GEORASTER|
    <?xml version="1.0" standalone="yes"?>
    <styling_rules theme_type="georaster">
    </styling_rules>|
    (GeoRaster table name is "RAS_DGK", theme name is also "RAS_DGK")
    I get following log information:
    preview without a coordinate or scale:
    MapBuilder Error (as pop up): MAPVIEWER 01005: no spatial data to render
    log file:
    20.11.2008 10:17:27 oracle.sdovis.LoadThemeData run
    FEINER: LoadThemeData running thread: Thread-43
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Original query window: -Infinity,-Infinity,NaN,NaN
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: [Query] select grt.GEORASTER, grt.GEORASTER.metadata.getClobVal() from RAS_DGK grt
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Fetch size: 100
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:17:27 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:17:27 oracle.sdovis.MapMaker buildDataMBR
    WARNUNG: null MBR resulted from buildDataMBR.
    preview with a center coordinate of the image and a scale:
    20.11.2008 10:18:43 oracle.sdovis.SRS getOptimalQueryWindow
    AM FEINSTEN: *** isGeodetic=false, unit=METER
    20.11.2008 10:18:43 oracle.sdovis.LoadThemeData run
    FEINER: LoadThemeData running thread: Thread-45
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Original query window: 2550045.7746478873,5608500.0,2551954.2253521127,5609500.0
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: [Query] select grt.GEORASTER, grt.GEORASTER.metadata.getClobVal() from RAS_DGK grt WHERE MDSYS.SDO_FILTER(grt.GEORASTER.spatialextent, MDSYS.SDO_GEOMETRY(2003, 31466, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3), MDSYS.SDO_ORDINATE_ARRAY(?,?,?,?)), 'querytype=WINDOW') = 'TRUE'
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Fetch size: 100
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:18:43 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:18:43 oracle.sdovis.DBMapMaker renderEm
    INFO: **** time spent on loading features: 234ms.
    20.11.2008 10:18:43 oracle.sdovis.RenderingEngine prepareForRendering
    AM FEINSTEN: xfm: 0.284 0.0 0.0 -0.284 -724212.9999999999 1593097.9999999998
    20.11.2008 10:18:43 oracle.sdovis.ImageRenderer renderGeoRasterTheme
    WARNUNG: GeoRaster theme RAS_DGK has no rendered images.
    20.11.2008 10:18:43 oracle.sdovis.VectorRenderer render
    FEINER: time to render theme RAS_DGK with 0 styled features: 0ms
    20.11.2008 10:18:43 oracle.sdovis.DBMapMaker renderEm
    INFO: **** time spent on rendering: 16ms
    If I run the sql statement in the log file, it returns a result.
    select grt.georid, grt.GEORASTER, grt.GEORASTER.metadata.getClobVal()
    from ras_dgk grt
    WHERE MDSYS.SDO_FILTER(grt.GEORASTER.spatialextent,
    MDSYS.SDO_GEOMETRY(2003, 31466, NULL,
    MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
    MDSYS.SDO_ORDINATE_ARRAY(2550045.7746478873,5608500.0,2551954.2253521127,5609500.0)), 'querytype=WINDOW') = 'TRUE';
    GEORID
    2
    GEORASTER
    MDSYS.SDO_GEORASTER(20001,MDSYS.SDO_GEOMETRY(2003,31466,null,MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),MDSYS.SDO_ORDINATE_ARRAY(2550000,5608000,2552000,5610000)),RDT_RAS_DGK,522,oracle.xdb.XMLType@194a7ec)
    GEORASTER.metadata.getClobVal()
    <georasterMetadata xmlns="http://xmlns.oracle.com/spatial/georaster">
    <objectInfo>
    <rasterType>20001</rasterType>
    <isBlank>false</isBlank>
    <defaultRed>1</defaultRed>
    <defaultGreen>1</defaultGreen>
    <defaultBlue>1</defaultBlue>
    </objectInfo>
    <rasterInfo>
    <cellRepresentation>UNDEFINED</cellRepresentation>
    <cellDepth>8BIT_U</cellDepth>
    <totalDimensions>2</totalDimensions>
    <dimensionSize type="ROW">
    <size>6299</size>
    </dimensionSize>
    <dimensionSize type="COLUMN">
    <size>6299</size>
    </dimensionSize>
    <ULTCoordinate>
    <row>0</row>
    <column>0</column>
    </ULTCoordinate>
    <blocking>
    <type>REGULAR</type>
    <totalRowBlocks>4</totalRowBlocks>
    <totalColumnBlocks>4</totalColumnBlocks>
    <rowBlockSize>2048</rowBlockSize>
    <columnBlockSize>2048</columnBlockSize>
    </blocking>
    <interleaving>BSQ</interleaving>
    <pyramid>
    <type>DECREASE</type>
    <resampling>NN</resampling>
    <maxLevel>6</maxLevel>
    </pyramid>
    <compression>
    <type>NONE</type>
    </compression>
    </rasterInfo>
    <spatialReferenceInfo>
    <isReferenced>true</isReferenced>
    <SRID>31466</SRID>
    <modelCoordinateLocation>UPPERLEFT</modelCoordinateLocation>
    <modelType>FunctionalFitting</modelType>
    <polynomialModel rowOff="0" columnOff="0" xOff="0" yOff="0" zOff="0" rowScale="1" columnScale="1" xScale="1" yScale="1" zScale="1">
    <pPolynomial pType="1" nVars="2" order="1" nCoefficients="3">
    <polynomialCoefficients>17668678.695368 0 -3.14949718277477</polynomialCoefficients>
    </pPolynomial>
    <qPolynomial pType="1" nVars="0" order="0" nCoefficients="1">
    <polynomialCoefficients>1</polynomialCoefficients>
    </qPolynomial>
    <rPolynomial pType="1" nVars="2" order="1" nCoefficients="3">
    <polynomialCoefficients>-8031218.31607409 3.14949718277477 0</polynomialCoefficients>
    </rPolynomial>
    <sPolynomial pType="1" nVars="0" order="0" nCoefficients="1">
    <polynomialCoefficients>1</polynomialCoefficients>
    </sPolynomial>
    </polynomialModel>
    </spatialReferenceInfo>
    <layerInfo>
    <layerDimension>BAND</layerDimension>
    <subLayer>
    <layerNumber>1</layerNumber>
    <layerDimensionOrdinate>0</layerDimensionOrdinate>
    <layerID>1</layerID>
    <colorMap>
    <colors>
    <cell value="0" blue="255" red="255" green="255" alpha="255"/>
    <cell value="1" blue="0" red="0" green="0" alpha="255"/>
    </colors>
    </colorMap>
    </subLayer>
    </layerInfo>
    </georasterMetadata>
    I checked also the content of rdt table and it contains entries with that raster id (= 522).
    Finally the log file when I use the preview directly on the GeoRaster table without a theme:
    20.11.2008 10:23:46 oracle.sdovis.LoadThemeData run
    FEINER: LoadThemeData running thread: Thread-55
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Original query window: -Infinity,-Infinity,NaN,NaN
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: [Query] select grt.GEORASTER from RAS_DGK grt where grt.GEORASTER.rasterid = ? and grt.GEORASTER.rasterdatatable = ?
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Fetch size: 100
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:23:46 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:23:46 oracle.sdovis.MapMaker buildDataMBR
    WARNUNG: null MBR resulted from buildDataMBR.
    If you need more information - please ask for it.
    Cord

  • Where can I find a live chat with a representative?

    Where can I find a live chat with a representative? I'm about fed up with Verizon. Their're about as bad as AT&T!!!

    When you go to like look at a phone section online it always pops up live chat. Anywhere on the main page it will pop up if your there few minutes.

  • Data not visible in table o/p when compiled with webdynpro compiler

    Hi,
    I am using a Z BAPI to retrieve data from backend ECC6 server and show it using a VC application.
    When I compile this VC application using FLASH(FLEX2), the data is shown in the table, whilst if the VC application is compiled using Webdynpro compiler, the data is not shown in the table.
    The No. Of Rows  parameter has been updated with 10.
    Please suggest what can be done so that data is shown when compiled with Webdynpro compiler.
    Regards,
    Ranu

    Hi Ranu,
    WebDynpro Compiler only supports Webservices.
    You can look at the below link to get into full details -
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/limitationsofWeb+Dynpro
    Regards,
    Vipin Vijayan.

  • Pragma error when compiling with SDK X

    Hi,
    I am trying to compile my plugin application (which compiled fine with the previous sdk) using the SDK X, but receive errors in CAVAlert.h on the exception handler construct DURING, HANDLER, END_HANDLER.
    The errors are listed here:
    Headers/API/CAVAlert.h:156:3: error: 'suppress' was not declared in this scope
    Headers/API/CAVAlert.h:156:3: error: 'warning' was not declared in this scope
    Headers/API/CAVAlert.h:156:3: error: '__pragma' was not declared in this scope
    Headers/API/CAVAlert.h:156:3: error: expected ';' before 'jmp_buf'
    Headers/API/CAVAlert.h:156:3: error: 'ASException' was not declared in this scope
    Headers/API/CAVAlert.h:156:3: error: expected ')' before ':' token
    Headers/API/CAVAlert.h:156:3: error: expected ';' before 'struct'
    Headers/API/CAVAlert.h:162:3: error: request for member 'E_RETURNOutsideDURINGBlock' in 'gBadReturnCatcher', which is of non-class type 'int'
    Headers/API/CAVAlert.h:162:3: error: expected ')' before ':' token
    Headers/API/CAVAlert.h:162:3: error: expected ';' before 'int'
    Headers/API/CAVAlert.h:165:3: error: 'ENDHANDLEROutsideHANDLER' was not declared in this scope
    To compile against to SDK X all I did was:
    1) Used PIMain.c from the SDK X API directory.
    2) Changed ACRO_SDK_LEVEL=0x00090000 => ACRO_SDK_LEVEL=0x000A0000
    3) Changed the include directories to point to the new SDK X directories
    Is there another directive I must add to get the plugin to compile with SDK X?
    My preprocessor list is as follows:
    ACRO_SDK_LEVEL=0x000A0000
    HAVE_W32API_H
    PDMETADATA_HFT=1
    PLUGIN=1
    WIN32
    WIN_ENV
    WIN_PLATFORM
    WXUSINGDLL
    _CRT_SECURE_NO_DEPRECATE
    _DEBUG
    _WINDOWS
    __GNUWIN32__
    __WIN32__
    __WXMSW__
    Thank you,
    Magda

    Without seeing your code, I can't really help.
    If you want help with your code, open a formal support ticket.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Tue, 6 Dec 2011 04:09:25 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Pragma error when compiling with SDK X
    Pragma error when compiling with SDK X
    created by magdakuit<http://forums.adobe.com/people/magdakuit> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4066378#4066378

Maybe you are looking for