Solaris 64 bits linking issue

OS: Sun 5.2
Code: C++
Objective: Create static library as general.so
I using Xerces in my application program. I compiled my application program successfully. When I was creating general.so, i should include the library libxerces-c.sl.24 (64 bit version). But the linker gives me error message, libxerces-c.sl.24 wrong machine class.
If anyone can help me, I will appreciate that.
Ramesh

Hi Ramesh,
Have you used the 64 bit compilation flags while compiling your program. By default the compilation happens for 32 bit. You would have to use the following flags to compile flag.
%CC -xarch=v9 -o <target> <filename>
You can check this out by writing a small program which has an infinite loop in it. Compile the program normally and run the proram in the background. Note the pid.
Issue the following command.
%pflags <pid>
It will show something like
data model = _ILP32
Compile the program once again with the -xarch=v9 flag and repeat the same process.
This time you would be able to see data model = _LP64
So I think this should resolve your linking problem if you compile for 64 bit.
I hope this helps
Regards
Aviroop

Similar Messages

  • OraOledb for 64-bit, Linked Servers and SQL Server 2005 issues

    Our environment is : SQL Server 2005, Windows Server 2003, 64-bit and 32-bit operating systems.
    Problem on 64-bit operating system box: (32-bit works fine).
    I am trying to access Oracle 10g database using linked server from our SQL Server 2005. In case of number fileds i got the following error:
    Invalid data for type "numeric".
    After going through one of the posting in this forumn i was able to resolve the problem by converting those column values to char while querying and then converting them back to numeric type on SQL server side.
    But today i ran into another problem. There is a VARCHAR2 column. I was able to retrieve the data yesterday for that column but today i am getting a blank recordset. If i exclude the colum from the query then i am getting all the rows.
    I am querying against a view and it has got a number of columns whose data type is VARCHAR2.
    Again the problem is on 64-bit operating system only. We have a 32-bit operating system on which i am able to retrieve the data including this column. I looked at the data and everything looks OK. No funny characters etc.
    I tried workarounds like using cast, to_char, checking for nulls etc., Nothing works.
    Any help is greately appreciated. Thanks.

    Did you find a resolution for this? We have similar problem. Set up a linked server in SQL 2006 to Oracle (running on Windows 64-bit) Linked server works and views I had set up were working but they added some new data in the Oracle test database I am using and now I get errors on one of the views.
    Error I am getting on the view is "Cannot initialize the data source object of OLE DB Provider "OraOLDEDB.ORacle" for the linked server"
    If I fine tune my queries to find the specific table or view that is at issue, then I get the error "inconsistent metadata for a column"

  • Solaris 9, Solaris Management Console ISSUE

    Solaris 9, Solaris Management Console ISSUE
    I have Solaris 9 installed and I am unable to use the Solaris Management console.
    I have managed to start it:
    /etc/init.d/init.wbem start
    /etc/init.d/init.wbem status -> shows it's running
    But if I try browser with the link http:// host:898, I have got the following error:
    "A web version of the Solaris Management Console is not available at this time."
    any Idea why?

    Are you running Trusted Extensions? What patch cluster are you on? What toolbox are you opening?

  • Solaris 8 linker patch 109147-21 / 109148-21 breaks runtime linker

    The "Sun ONE Studio 8, Compiler Collection Early Access" release requires the
    installation of a linker patch (109147-21 sparc / 109148-21 x86).
    It seems that the solaris 8 linker patch breaks the runtime linker audit feature
    for multithreaded applications.
    I can reproduce the problem like this (using $LD_PROFILE, which makes
    use of the runtime linker audit feature):
    % cat thr.c
    #define _REENTRANT
    #include <stdio.h>
    #include <stdlib.h>
    #include <pthread.h>
    void*
    thr_main(void*arg)
    printf("hello, world!\n");
    int
    main(int argc, char **argv)
    pthread_t tid;
    void *rval;
    pthread_create(&tid, NULL, thr_main, NULL);
    pthread_join(tid, &rval);
    exit(0);
    % cc -o thr thr.c -lpthread
    % thr
    hello, world!
    OK, fine so far...
    Now we try to run the application under rtld audit control:
    % env LD_PROFILE=libc.so.1 thr
    < the multithreaded application hangs >
    % env LD_PROFILE=libc.so.1 LD_LIBRARY_PATH=/usr/lib/lwp thr
    < the multithreaded application hangs >
    (on a S8 system with 109148-14 installed, this works without hanging!!)
    A "pstack `pgrep thr`" command shows multiple LWPs, all blocked
    waiting in an lwp_mutex_lock() call, all trying to lock the same
    mutex - which happens to be the dynamic linker's global 'rtldlock'.
    % pstack `pgrep thr`
    7631: thr
    ----------------- lwp# 1 --------------------------------
    dfbd6b5f lwp_mutex_lock (dfbf1618)
    dfbd69f6 lwpmutex_lock (dfbf1618) + 2a
    dfbc8739 rt_mutex_lock (dfbf1618) + 19
    dfbcd575 enter () + 29
    dfbd2193 elf_bndr (dfa94eac, 50) + 23
    dfbc3339 elf_rtbndr () + 5
    ----------------- lwp# 2 / thread# 2 --------------------
    dfbd6b5f lwp_mutex_lock (dfbf1618)
    dfbd69f6 lwpmutex_lock (dfbf1618) + 2a
    dfbc8739 rt_mutex_lock (dfbf1618) + 19
    dfbcd575 enter () + 29
    dfbd2193 elf_bndr (dfa94eac, 238) + 23
    dfbc3339 elf_rtbndr () + 5
    ----------------- lwp# 3 --------------------------------
    dfbd6b5f lwp_mutex_lock (dfbf1618)
    dfbd69f6 lwpmutex_lock (dfbf1618) + 2a
    dfbc8739 rt_mutex_lock (dfbf1618) + 19
    dfbcd575 enter () + 29
    dfbd4257 auditpltenter () + bb
    dfbd431a audit_pltenter (dfa94eac, dfa60414, df92131c, 48, df8a4cd0, df921318) + 7a
    dfbc32a2 elf_plt_trace (3, ffffffff, df8a4d44) + 52
    df8f435e scsetup (ffffffff, 1) + 7a
    df8ea13e lwpstart () + 22
    -------------------------- thread# 1 --------------------
    df8e961b _swtch   (0) + 3b3
    df8eb806 _dopreempt (0) + ea
    df8ed247 _sigon   () + 37
    df8f41d0 bindclear (1) + 48
    dfbc8799 rt_bind_clear (1) + 19
    dfbcd87c leave (dfbef0f4) + e8
    dfbca8f7 call_init (df8d0288, 1) + 10f
    dfbca339 setup (80470fc, 80471e4, 0, 8047ff2, 1000, dfbc17af, dfbf06e4, dfbc0000, ...) + cd5
    dfbd3393 _setup   () + 2f7
    dfbc323a rtboot () + 58
    0804725c ???????? ()
    -------------------------- thread# 3 --------------------
    df8e7958 threadstart ()
    % dbx - `pgrep thr`
    Reading -
    Reading ld.so.1
    Reading libpthread.so.1
    Reading libc.so.1
    Reading libdl.so.1
    Reading libthread.so.1
    Reading ldprof.so.1
    Reading libmapmalloc.so.1
    detected a multithreaded program
    Attached to process 7631 with 3 LWPs
    t@3 (l@null) stopped in threadstart at 0xdf8e7958
    0xdf8e7958: threadstart : call threadstart+0x5 <0xdf8e795d>
    (dbx) x 0xdfbf1618 /4X
    dbx: warning: unknown language, 'c' assumed
    0xdfbf1618: rtldlock : 0x00000000 0x00000000 0x00000000 0x01010000
    (dbx) q
    detaching from process 7631
    Is this a known bug?
    Are there patches to fix this issue?

    I think this is bugid 4804328.
    Synopsis: auditing of threaded applications results in deadlock
    It doesn't look like the next patch is avilable
    yet, but the bug seems to be on track for being
    fixed in patchid 109147-22 (the next rev of the
    patch you mention. There should be new patches
    for Solaris 8 sparc/intel and Solaris 9 sparc/intel.

  • Slow program response, crashes when creating titles and dynamic link issues

    Dear reader,
    I am now trialling Adobe CC OSX with Premiere Pro and After Effects before deciding to subscribe but I am experiencing a lot of issues while working.
    I am now working on an animation, but editing raw mxf files also gives crashes and slow responses/ program refreshes.
    1) Slow mouse response
    2) Slow program refresh while key framing visuals
    3) Rendering in PP is extremely slow when AE is open in the background, when closing AE and re-initiate the render in PP it renders super fast
    4) Crashes. When I overlay titles in my time line PP regularly crashes
    5) Dynamic Link issues when working combined in AE and PP where file connections in the time line get lost when the AE project has too many sequences
    I am curious to find out if other people are also experiencing these issues.
    I am indecisive in getting the paid yearly plan or move to FCPX instead? Or should I get a new MacPro and is this model too old?
    It worked fine 2 months ago, however I was still working on FCP7. After updating it is really bad working with it...
    My system consist of:
    MacPro mid-2010
    OSX 10.9.5 (13F34) (new installation)
    2x2,66Ghz 6-core Intel Xeon
    24GB DDR3 ECC
    Nvidia Quadro K5000, 4GB
    2x PCIe SSD 1TB
    2x HDD 3TB
    2x HDD 2TB
    Feedback is much appreciated! Best regards, Alexander

    this does work for basic colour correction but not when trying to grade an entire suqence to achieve a specific style, applying a vingette or certain effects have to be done in after effects.
    I want to try and get my whole sequence into after effects but preserve the edits and effects added in permier pro, is there any way to do this?
    rich

  • URL link issue

    Hi
    I am trying to create a link in my project to one of our
    company intranet pages. I am using a click box and the URL - it
    works fine in the Preview from Slide or next 5 slides, but when I
    Preview in Web Browser it doesn't connect. Any suggestions as to
    what might be the cause?
    Thanks
    Alex

    Hi Alex
    Hmmm, before investigating too deeply, I'm seeing some
    familiarity here. For starters, the first link is to a .PDF. It's
    been my experience that links to .PDF and Word .DOC files is "iffy"
    at best. If you truly copied and pasted the links, I'd first try
    removing the %20 from that first link. That's something the browser
    normally inserts for a space. So instead of:
    http://wlgweb/Corporat/HumanResources/Staff%20Conduct/EmailInternetUsagePolicy.pdf
    Change it to read:
    http://wlgweb/Corporat/HumanResources/Staff
    Conduct/EmailInternetUsagePolicy.pdf
    This may help and it may just be twisting in the wind. But
    I'd try that first. I've often seen linking issues arise from that
    silly %20. If possible, try to avoid that. I'm guessing here that
    it may not be possible to control in your case as someone else may
    be in control of those names. I've personally always opted to
    either use a mix of upper/lower case names ( StaffConduct ) or
    substitution of an underscore where spaces would normally occur (
    Staff_Conduct ).
    Other wierdness I've seen when linking to .PDF content:
    * I personally had a different PDF reader (Foxit) installed
    as my default. When Foxit was my default reader, PDF links refused
    to open.
    * I think this one is IE specific, but I've also seen it
    where if I have a .PDF in the same folder and open that way, even
    though the address is totally correct, the first time through, the
    link fails. With the totally correct address showing in the address
    bar. I simply refresh the page and bingo, the PDF shows! Go figure.
    I really don't believe that this one is related to Captivate and
    the way it calls the links. My gut tells me it's an IE thing. But I
    have nothing to back me up on this.
    I'm not sure what to say or suggest for the second link. I
    tested it myself and it doesn't work, which tells me that either
    the link is simply incorrect, or possibly it's located on an
    intranet site.
    Sincerely... Rick

  • OCCI linking issue on HUPX11

    Hello,
    I am trying to make an OCCI9.2 sample application (occidesc) getting linking issue. I am don't think I have all the required Oracle library in my linking options. What am I missing?
    My development environment: HUPX11, g++3.3.2, OCCI 9.2
    ===============================================
    Link flags:
    LDFLAGS = -L$(ORACLE_HOME)/lib32 \
    -L$(ORACLE_HOME)/rdbms/lib32 \
    -locci -locci9 -lclntsh \
    `cat /u01/home/oracle/product/920/lib32/sysliblist`
    ========================================================
    Linker errors:
    /usr/ccs/bin/ld: Unsatisfied symbols:
    typeinfo for oracle::occi::SQLException(first referenced in occidesc.o) (data)
    oracle::occi::SQLException::SQLException[in-charge](oracle::occi::SQLException const&)(first referenced in occidesc.o) (code)
    oracle::occi::Environment::createEnvironment(oracle::occi::Environment::Mode, void*, void* (*)(void*, unsigned long), void* (*)(void*, void*, unsigned long), void (*)(void*, void*))(first referenced in occidesc.o) (code)
    oracle::occi::MetaData::getBoolean(oracle::occi::MetaData::AttrId) const(first referenced in occidesc.o) (code)
    oracle::occi::MetaData::operator=(oracle::occi::MetaData const&)(first referenced in occidesc.o) (code)
    oracle::occi::MetaData::getUInt(oracle::occi::MetaData::AttrId) const(first referenced in occidesc.o) (code)

    I can't find any documentation referencing supported compiler for OCCI. Do you know of any from Oracle that support my environment?
    Environment:
    Oracle 9.2
    HPUX B.11.00 A
    Thanks,
    Minh

  • Secure link issue

    I cannot update my I tunes. I get a secure link issue when I run a diagnostic check. This is using windows xp system

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Windows 2008 64-bit SQL Server 2008 64-bit Linked Server fails - ODBC connects but has issues

    Installed the 64 but Oracle 11g client and Oracle ODAC. 
    From SQL Server Management Studio run script :  exec master.dbo.xp_cmdshell 'PING OracleHostNameHere'        Ping was successful
    OraOLEDB.Oracle shows up in the Provider list.  Run This Script:
    EXEC master.dbo.sp_MSset_oledb_prop N'OraOLEDB.Oracle', N'AllowInProcess', 1
    GO
    EXEC master.dbo.sp_MSset_oledb_prop N'OraOLEDB.Oracle', N'DynamicParameters', 1
    GO
    EXEC master.dbo.sp_addlinkedserver @server = N'Nav14', @srvproduct=N'Oracle', @provider=N'OraOLEDB.Oracle', @datasrc=N'TheOracleHostName'
    EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'TheOracleHostName',@useself=N'False',@locallogin=NULL,@rmtuser=N'TheUser',@rmtpassword='ThePassWord'
    Msg 15015, Level 16, State 1, Procedure sp_addlinkedsrvlogin, Line 49     The server 'TheHostName' does not exist. Use sp_helpserver to show available servers.
    Did the same process on a Windows 7 32 bit Enterprise - ODBC Works after installing ODAC
    ODBC worked, shows list of Oracle servers - picked the server - ODBC successful - MS Access able to use that ODBC service.
    In Windows 2008 64 bit installed both Oracle 11g Client and 64 bit ODAC - ODBC opens, the list of oracle servers doesn't populate, hard code in the host name - ODBC reports Success.
    Another Person Suggested:  Win7 64-bit with Oracle 11g. Oddly enough, it ran differently when I opened a command prompt window as administrator and ran setup.exe with the suggested command-line options:
    setup.exe -debug -printtime -printmemory -printdiskusage -logLevel finest
    While it had previously been failed both by running setup from the Explorer windows as administrator and by running it from the command line as administrator - it died every time at the same point mentioned by others in this thread - just after this message appeared in the log:
    Get view named [SummaryUI]
    ( I have tried re installing with no success)

    Windows 7 Enterprise 32-Bit
    Installed the version 12 for 32 bit ODAC and it worked. The key is to Install as Administrator once it is unzipped.
    Was able to set up Listener then
    Was able to set up ODBC using the ODAC. Connect MS Access 2010 to the Oracle views.
    Then, tried to install the 64 Bit onto Windows 2008 Server.
    It locked up during installation both times.
    Installed ODAC without an error.
    However, the ODBC setup will not provide a list of the servers in the ODBC  TNS Service Name listbox for Server 2008.
    In Windows 7, it populates the TNS Service Name.
    The list box in Windows 2008 is empty.
    Do you know what would cause that?
    The .ORA file scrips look the same on Windows 2008 as they do on Windows 7 except it does not have the (server = Dedicated) argument.
    Thanks.

  • Qosmio X300 64 bit vista ultimate upgraded to windows 7 64 bit ultimate - issues

    Hi there,
    Hoping you can help me, any help would be greatly appreciated. I cannot find my laptop amongst the given models - first issue.
    Second issue: given gratis CD voucher for upgrade to windows 7 ultimate  with purchase of laptop, whihc i have redeemed and loaded to laptop. below are my laptop specs. And below that the consequent issues awaiting resolve PLEASE HELP!!!!!
    OS Name Microsoft Windows 7 Ultimate
    Version 6.1.7600 Build 7600
    Other OS Description  Not Available
    OS Manufacturer Microsoft Corporation
    System Name SUZIQQOSMIO
    System Manufacturer TOSHIBA
    System Model Qosmio X300
    System Type x64-based PC
    Processor Intel(R) Core(TM)2 Extreme CPU Q9300  @ 2.53GHz, 2534 Mhz, 4 Core(s), 4 Logical Processor(s)
    BIOS Version/Date TOSHIBA V1.50, 23/12/2008
    SMBIOS Version 2.5
    Windows Directory C:\Windows
    System Directory C:\Windows\system32
    Boot Device \Device\HarddiskVolume2
    Locale Australia
    Hardware Abstraction Layer Version = "6.1.7600.16385"
    User Name SuziQQosmio\Suzanne
    Time Zone Cen. Australia Standard Time
    Installed Physical Memory (RAM) 4.00 GB
    Total Physical Memory 3.75 GB
    Available Physical Memory 2.10 GB
    Total Virtual Memory 8.63 GB
    Available Virtual Memory 6.48 GB
    Page File Space 4.88 GB
    Page File C:\pagefile.sys
    Hi there,
    Specs: as per Qosmio X 300. SSD 110GB, pentium core 4 extreme, 4 Gb RAM, plenty free storage on SSD (29GB), NVidia drivers with primary being GE Force 9800 M GTS, Direct X10.  there is also a note down the bottom saying that if i have linked graphic cards (whihc i do i believe there are three), that i can expect better perfomrance with some software.
    Ok I aplogise from the outset, i am a layman and not that techie. K.  So the issue that I upgraded recently (last week) from vista ultimate 64 bit to windows 7 64 bit. ultimate.  For the main, I am reasonably happy with the outcome in most areas - except gaming that is. I have increased speed and agility and the processor is now rated at 7.2. WEI. overall the laptop is rated at 5.8. however, getting back to teh reason for writing, I have nothing negative to say about windows 7 (as compared to its predecessor) apart from wishing to resolve my game crash issue. which usually occurs about 15 mins - 20 mins into a game and comes in the form of a shutdown ? BSOD from whence the laptop reboots when prompted at on/off and wants to know if to start normally or in various safe modes. I have noticed that the laptop does become very hot at the back (around the fans) prior to teh shutdown, and i am wondering if this is an overheating issue, and how to resolve if this is the case. the only other thing i have noticed that seems untoward is that i have apparently lost a wireless jump start driver from the upgrading process which i cannot find anywherre, and may be totally unrelated to this issue anyway.
    All i want to do is play the games i could play on windows vista ultimate 64 bit. these include: Sims 3, sims 3 world adventures, sims 3 ambitions, highloft end stuff, and Bioshock. Oddly enough, i have played sid meyers civillisations revolutions IV (the latest one) with no crashes, and i havent tried ANNO 1404, but fear a similar fate may await this game as some of the others.
    Addditional information:
    everything is as i described it above, however the screen does not go blue but black,and the laptop shuts itself down,  laptop acts as if hibernating mode? (these are guesses) or some mechanism geared at preventing over heating - the back becomes very hot.  the machine can be rebooted from normal mode but comes up firstly with a screen suggesting that the laptop was incorrectly shutdown, and offers options as to safe mode, normal etc. i have been starting normally with no adverse effects.   This is scenario one.
    scenario two ends up similarly at teh reboot stage, but gets there differently. i play the game and the screen freezes, unable to move touchpad curser, unalbe to use ctrl alt del to get up task manager. end up having to crash to reboot.
    I am quite frustrated and very reluctant to mess around with things that i dont understand (dont want to make the problem worse!). I am happy to attemtpt to follow your good explicit advice.
    the only other negative thing i am expereinceing is screen flicker on internet. I have changed my power mode from high performance to balanced to try to nullify the overheating issue but i now am noticing this screen flicker which is irriating and appears on keystroke, or cursor movement.
    Please note well:  I am a layman, not a technician! Please explain in easy to (dummy) terms! Thanks!
    kind regards
    S
    (Im Game)

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    -Griff W.

  • DB Link issue

    Hello,
    After reading through some of the posts that my search for "DBLink" returned, I was wondering if you could give me some general guidelines on troubleshooting. Here's my story:
    Users report an issue in Production regarding vendors that should show up in error reports, but don't.
    I began checking it out on a test DB. Ran the code in Toad debugger. The DBLink is in an INSERT INTO and queries a joined table in an AP/GL DB across the link. It ran fine: got rows in my error table correctly reflecting my test data. Switched to VB.NET (2003) running in DEBUG mode and the query (compiled in a Package) failed to insert rows into my error table. Same databases, same data as in the Toad Debugger run. The only real difference was that the VB test called a compiled Oracle package.
    Switch to a different Test DB and, using VB in Debug mode, the test ran with the expected result (DBLink returned rows to my error table).
    My questions:
    - How can I troubleshoot this type of behavior?
    - Can a DBLink become erratic, and, if so, how can I convince the DBA that it has?
    - What needs to be done to fix it?
    My environment is:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    PL/SQL Release 10.2.0.3.0 - Production
    CORE     10.2.0.3.0     Production
    TNS for 64-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Mark Baran
    Sr. analyst developer
    American Agricultural Insurance Co

    Some suggestions:
    There is a documented restriction to read consistency with distributed transactions which can lead to a transaction seeing data slightly in the past, you might check if the following applies to the code you are running:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/ds_txnman.htm#i1008473
    This is an E-Business Suite database, yes?
    In the one I use some of the views are sensitive to the language settings of the client and may fail to return data if they are not what the application expects. eg: UK client settings with US application settings.
    Another possibility is that dbms_application_info.set_client_info() may need to be invoked to set an organisation id before running the query.

  • Solaris 10 Patching issues

    Any body have these problems.
    System:
    AMD Duron 1200MHZ
    512Kb Ram
    40gig IDE HD
    Netgear FG511 NIC
    I am a Noob with Solaris and Unix in general and dont have any experience with Linux but am open minded and enjoy getting my teeth into new stuff. I have found Solaris to be a great challenge and Unix seems to be a suitable replacement to Windows. The only issue I have is regarding patching of the OS. I recently downloaded the recommended x86 patches and ran the install_cluster...upon reboot solaris just kept rebooting...there was some kind of panic in the kernel. I had a look on the net and found the patch that was causing the issue. I then rebuilt(I could have removed the patch but decided to do a rebuild anyway) I then edited the Patch_order file and removed the reference to the 118844-20 patch which caused the kernel panic.
    I then installed the cluster again and rebooted and it seemed that solaris came up fine. but when I logged in a couple of applications for GNOME did not start(window list,workspace switcher,show desktop etc) it gave an error and asked if I wanted to restart these apps.
    Next I tried to open a .gz archive and the file roller app died.
    I then went to a terminal window and gunzipped the archive and then tried to tar -x the resulting file from the gunzip about half way through the untar Solaris rebooted. I have had no issues with archive files prior to patching so can only assume that it is one of the patches that is causing the issue?????
    has anyone had similer issues.
    I must admit, its a bit unnerveing when you install recommended patches that your system becomes very unstable.

    Hi,
    I have the same problem and unfortunately no answers. Same story - build Solaris on machine, runs fine. Run update connection, load security and recommended patches and boom - Solaris is now broken. Unfortunately I didn't find a way to recover so my only course of action is to reinstall Solaris.
    I traced it to a similar patch - 118844-30. I've since rebuilt the box using S10 Update 1 which includes Grub etc, but same problem if I run update connection and download the recommended patches which inlcudes 118844-30 => reinstall Solaris.
    Any ideas?

  • Cisco Prime Infrastructure MESH LINK ISSUE

    Hi,
    a Customer of us has a trouble with cisco Prime Infrastructure 1.2.0.12 and AP mesh link.
    There is an huge database ( i suppose the issue can be here ) and when we display some map ( each floor has about 6 RAP and 24 MAP ) we cannot see the MESH information and link draw.
    The only way to dipley them is to disable "refresh from network": this way I'm able to show these link..... until a click before.
    What i noticied when all was working fine, after i click to some floor:
    1) the software started to show the map with normal color and no mesh info displayed ( just ap and coverage cloud )
    2) after few time ( less than 1 second ) the map was becoming a little bit lighter and the mesh info was merged to the map
    We are missini the second step
    Anyone had the same issue ?
    best regards
    Luigi
    PS: I opened a case with WCS version 6.0 ( same issue ) but, after some months, no risult. The last version working fine was WCS 5.2

    Just to add some more informations:
    - disabling "refreshj from network" ( building properties ) the link and mesh info are showed
    - while I'm on a floor, after some refresh, i loose the mesh link draw and, if i click on an AP, i loose also mesh info in the popup. It' s like, after some refresh, the AP are no more recognized as Mesh ( !?!? )
    regards
    Luigi

  • Linking Issue on AIX Machine

    Hi All,
    I am porting C code from LINUX to AIX Machine. I am using a xlc compiler to compile my C code. I was successfully able to compile the code and generate 64 bit XCOFF format object modules.
    But, i am stuck one liking issue which i am unable to resolve.
    The error message thrown by the linker is like this
    ld: 0711-715 ERROR: File /ade/aime_aixtesting/oracle/lib/stubs/libdl.so cannot be processed.
    The file must be an object file, an import file, or an archive.
    gmake: *** [ade/aime_aixtesting/pfcore/addev/bin/adpatchnew] Error 8
    When i run "file" command on the file libdl.so i get
    ../oracle/lib/stubs/libdl.so: ELF 32-bit LSB version 1 shared obj 80386
    The RDBMS Lable from which this libdl.so is picked is
    /ade_autofs/ade_release_unix/RDBMS_11.1.0_AIX.PPC64.rdd/RELEASE_11.1.0.7.0
    Surpirsingly, this label which is meant for AIX, contains Shared objects with ELF format instead of XCOFF.
    Can AIX understand ELF Format ? any inputs will be appreciated.
    Thanks in Advance
    Edited by: user767192 on Nov 9, 2009 1:22 PM

    Hi!
    I suppose you will find an answer to your question at AIX forums instead Oracle forum. Only a Linux C programmer can solve this.
    Chao!

  • SQL 2012 64 Bit Linked Server to Excel 2013 64 Bit

    What is the syntax for sp_AddLinkedServer to add an Excel 2013 64 bit Workbook as a Linked Server for 64 bit SQL Server 2012?

    EXEC sp_addlinkedserver @server = N'ExcelDataSource',
    @srvproduct=N'ExcelData', @provider=N'Microsoft.ACE.OLEDB.12.0',
    @datasrc=N'C:\DataFolder\People.xlsx',
    @provstr=N'EXCEL 12.0' ;
    Refer http://technet.microsoft.com/en-us/library/ms190479.aspxAbout Provider download & Issues,http://social.msdn.microsoft.com/Forums/sqlserver/en-US/fbae9d36-e832-4706-a14e-629fc8d0c814/how-to-load-data-from-excel-2013?forum=sqlintegrationserviceshttp://social.msdn.microsoft.com/Forums/en-US/1d5c04c7-157f-4955-a14b-41d912d50a64/how-to-fix-error-the-microsoftaceoledb120-provider-is-not-registered-on-the-local-machine?forum=vstsdb
    Regards, RSingh

Maybe you are looking for

  • [ask] ucm security model case study

    hi fellow stellent users, i have a question to ask about this case study, that im trying to solve. the case study is, suppose a corporate named acme then i create security groups (public, internal, sensitive, secret), semantically a clearance level.

  • Is there a way to change the size of a menu background?

    I would like to use my own photo as a menu background and reduce it's size to less than the full size of the menu. The photo selection sticks over a save and re-open but the size of the object reverts to the full menu size when the project is reloade

  • WSUS not working after move of content.

    I used the wsusutil to move the content of our WSUS server now it is not working.  The log created during the move is below.  The "Update Services" service was not started, but was able to start manually.  When try and run wsusutil checkhealth it giv

  • Associate Table1_PK into multiple rows in Table2

    Hi, I have 2 tables... TableOne and TableMany. The values for input are all on the same page. I'm trying to achieve... Inserting the TableOne values (no problem - created a process for insert)... once this is done I want to insert multiple rows into

  • Exception when changing Variable Settings in 7.x WebTemplate

    Hi, We are trying to execute the query on the Web using 7.0x web template (2004s Netweaver) . Sometimes NullPointerException is thrown when we are trying to change the Properties of Characteristic Version of a variable in Variable Selection Screen us