Swig, Subversion, and runtime libraries - oh my!

The new version of swig no longer distributes their runtime libraries (like libswigpy).  Subversion needs them, at the very least.
I understand that with a lot of fiddling I can get them built, but I don't want to support it if I don't have to.
The debian people are talking about fixes for subversion and swig 1.3.22.  It's the only package I can see that depends directly one swig.
It looks like gdesklets has swig as a makedepend, but I think it won't be affected.
Does anyone who uses swig have any suggestions or cautions before I go ahead with this?

Subversion needs the version of swig we have currently.  The new swig breaks compatibility and subversion won't be able to use it.
The question is really for everyone else who uses swig.

Similar Messages

  • SDK swc files and runtime shared libraries

    Hi,
    Can someone tell me what effect setting the swc files in the sdk folder as runtime shared libraries in a project via the Library Path in the Flex Build Path. Does setting these as runtime libraries have an effect on a project or is it just setting the framework as a runtime library amend the final movies file size?
    Thanks
    Stephen

    It will make your SWF size smaller which should reduce load time and bandwidth costs.  You may need to change your code as using RSLs may find places where you need to specify a ContextualClassFactory instead of plain old ClassFactory.  Those usually show up if you use embedded fonts and find they aren't working properly.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Static linking of libpthread and librt libraries in Solaris 8 and 10

    Hi all,
    We have created a solaris application which uses functions defined in libpthread (POSIX threads) and STL classes (string, list, map, vector etc.)
    This application runs perfectly in our environment. However at other sites, there are crashes observed and debugging the core files indicate problems in generic places such as string.append() etc. We are not sure whether these problems are occurring due to dynamic linking of libraries.
    Initially we had 1 problem due to libCstd and by following the procedure specified in http://forum.sun.com/thread.jspa?forumID=5&threadID=19287 , it was solved. I still find that the libraries including libCstd are dynamically linked to the application.
    I would like to know the following
    1. Is there any way of statically linking pthread and rt libraries?
    2. If not, then is there any way to statically link all other libraries except for pthread and rt which can be linked dynamically?
    Thanks,
    Shekhar

    You are posting in the C forum, but your question is about C++.
    Not all runtime libraries are available as static libraries. Solaris is moving away from static libraries, and on Solaris 10, the main system libraries are available only as shared libraries.
    Linking the C++ runtime libraries statically is generally a bad idea, although there are restricted application areas where it might be safe. If you build shared libraries as part of your application, or if you deploy on different kinds of machines or on different Solaris versions, you should link only to shared system libraries. Linking to static libraries can result in programs that will not work.

  • Corruption of Oracle Inventory by installing ADF runtime libraries?

    Hi,
    We are running OAS 10.1.2.2.0 on RedHat Enterprise Linux and I am deploying an ADF application from JDev 10.1.3.39.84.
    I downloaded the standalone installer for the adf runtime libraries installer from here:
    http://download.oracle.com/otn/java/jdeveloper/10132/extensions/adfinstaller.zip
    and installed it to our development server. I then deployed the ADF application and it seems to work just fine.
    Now I have requested that these libraries be installed to the production server but the Sys Admin has informed me that:
    "Your installation appears to have corrupted the 'Oracle Inventory' on the development server. This can affect upgrades, patching, etc."
    I have been asked to investigate if this is a known issue and what possible resolutions there might be for preserving/restoring the Oracle Inventory to enable continued maintenance of the servers.
    I have searched the forums and Metalink without success, so I am posting this query to see if anyone else can help me point me in the right direction.
    Thanks for any assistance.

    Hi,
    please file a service request with customer support. This way you have an analyst working with you to track down the issue. Because ADF libraries are copying jar files only and this is nothing you can re-do after wards, I would be surprised if it has anything to do with the Oracle inventory. However still it would be good to have customer support looking at this
    Frank

  • Where is the package for the Fortran 95 runtime libraries? (SPROl90sx)

    We're developing an application in Fortran 95 using Sun Studio 12 and we're having the hardest time figuring out where the package SPROl90sx is located that is referenced here...
    http://developers.sun.com/sunstudio/documentation/ss12/mr/READMEs/runtime.libraries.html
    According to that readme there should be a package named SPROl90sx somewhere so that on a client server that we want to install our Fortran application on, we can just install the runtime package SPROl90sx and have everything work as we want rather than take each library independently and put them on the server.
    Does anybody know where I can find SPROl90sx?
    Edited by: DNezamfar on Jun 2, 2008 9:59 AM
    Edited by: DNezamfar on Jun 2, 2008 10:00 AM

    Hey Calvin,
    So I extracted the tar file from the pkg version of Sun Studio, but in the packages-sparc-S2 directory I get a bunch of directories associaed with the packages, specifically I see SPROl90sx. Now how do I take that directory and actually install it on a client machine to get them up and running? pkgadd? When I download a package from sunfreeware.com they come in a single file that we can then install, but I dont see a single file, I see a directory. Does pkgadd have option to isntall a "directory" package? Where would the libraries be installed?
    Thanks.

  • Q1. How to get version of runtime libraries

    Hi,
    I am not a developer but this seems like the best place to ask this question.
    I want to find out what version of the Sun C++ runtime libraries are being used on a machine. They are using the runtime version (there is no compiler installed). The SUNW* directories that are under /opt are:
    SUNWexplo
    SUNWconn
    SUNWebnfs
    SUNWits
    SUNWrtvc
    SUNWspro
    Which command do I need to run against what to find the version? I want to find out if they are using 5.0, 5.5 or 5.7.
    Thanks in advance,

    You need to know exactly which libraries are in linked => use ldd on the executable.
    Normally, /usr/lib/libCrun.so.1 (and /usr/lib/libCstd.so.1 if any of the standard library is used) are the ones that get linked.
    However, depending on how the application was built and some environment variables (LD_PRELOAD, LD_LIBRARY_PATH) it is possible for applications to use other versions of these files.
    In the standard case, the C++ runtime libs are in the packages SUNWlibC (and SUNWlibCx for 64bit) => pkgchk -l -p /usr/lib/libCstd.so.1 to see which package the lib is in
    To see which patch is applied, try
    showrev -p | grep libC
    This should show something like
    Patch: 108434-10 Obsoletes: Requires: 109147-07 Incompatibles: Packages: SUNWlibC
    Patch: 108435-10 Obsoletes: Requires: 108434-10 Incompatibles: Packages: SUNWlibCx
    Lastly, you could try
    elfdump -v /usr/lib/libCrun.so.1
    which will show you some version info (which should match what ldd indicates the application needs)
    Paul

  • Version issue of base SAP DCs versus Runtime libraries

    I have created a DC project of type Web Dynpro. In JDI my track is defined with the 3 base dependent DCs (SAP-JEE, SAP-JTECHS, SAP-BUILDT). I am able to sync used DCs and have locally.
    When I try to build a very simple project I get the following build error "com.sap.tc.webdynpro.progmodel.api.IWDApplicationStateChangeInfo cannot be resolved (or is not a valid type) for the argument stateChangeInfo of the method wdDoApplicationStateChange".
    What I discovered is that the class "wdDoApplicationStateChange" does not exist in the "_webdynpro_progmodel.jar" file that was sync'd as part of the SAP-JEE DC BUT when I look at the WD runtime libraries that is part of my Studio install that class does exist in the jar file.
    If I create the same application as a standalone Web Dynpro project, it builds locally successfully and when I deploy it to the Portal it runs perfectly.
    Therefore it seems I need to deal with 3 versions of the same libraries:
    1. The local WD runtime that comes with the Studio install.
    2. The libraries that come when sync'ing used DCs (i.e. SAP-JEE, SAP-JTECHS, SAP-BUILDT).
    3. The actual runtime on the portal.
    Questions:
    - How can we verify we have imported the correct version of the used DCs (i.e. SAP-JEE, SAP-JTECHS, SAP-BUILDT) in the JDI so the related libraries match the actual runtime?
    - Is there somewhere on SDN or other SAP site a version roadmap of these SAP supplied DCs?
    I tried to find documentation/references related to versioning of these SAP supplied DCs and could not find anything helpful.
    Even our BASIS administrator is having trouble identifying the correct versions.

    Pascal,
    you mention the following:
    The SP level of the three base SCs MUST match the SP level of your target runtime systems. It is also adviseable to have your NWDS at this same SP level (especially when you are building Web Dynpro's).
    So can you help here...
    We have modified the source code of the following version of the NW2004 ESS component: SAP_ESS 100 sp16
    We would like to plan to upgrade to the following version of the NW2004s ESS component: SAP_ESS 600 sp12
    The "NWDI Cookbook for XSS Customers" seems to only document the procedure and migration path on how to upgrade from one sp to the next sp WITHIN THE SAME VERSION.
    (For Example: SAP_ESS 100 sp16 to SAP_ESS 100 sp19)
    We need to know the migration path and process for upgrading from NW2004 to NW2004s. 
    (For Example: SAP_ESS 100 sp16 to SAP_ESS 600 sp12)
    My hunch is we will follow a similar process, however, questions around what version of NWDS do we need to use for handling both the NW04 and NW04s component in using the Meta-Data Comparison Tool.  If we need to always make sure our NWDS matchs our target J2EE Server Version, how will this work when we are working with 2 different J2EE server versions during the upgrade? (NW04 and NW04s)

  • Regarding 32bit and 64bit libraries

    Hi,
    Can any one please clarify my quries below.
    1) What is the difference between 32bit and 64bit library.
    2) How to identify the 32bit and 64bit library? Is there any naming convention fallowed?
    3) From which version onwards of Sun Studio, 64 bit libraries are supported?
    Regards,
    Vignesh

    The platforms suppported by Sun compilers have both 32-bit and 64-bit modes of operation. The two modes cannot be mixed in a single program. A 64-bit platform can run 32-bit code, but not the other way around.
    On the supported platforms, 32-bit mode is known a ILP32, meaning that types int, long, and pointer are all 32 bits. 64-bit mode is known as LP64, meaning that type int is still 32 bits, but types long and pointer are 64 bits. (Other systems, not supported by Sun compilers, can have different definitions.)
    The 64-bit mode of the processors supports different instruction sets. The amd64 processor also has different register sets. The layout of objects is different in the two modes, and the way functions are called is different. (There are other differences as well.)
    A program compiled in 32-bit mode must link to 32-bit libraries, not 64-bit libraries, for reasons which I hope are now obvious. A program compiled in 64-bit mode must link to 64-bit libraries.
    The Sun compilers automatically link to the right library version of system libraries, as long as you use consistent options when compiling and linking. For example, you could build a 64-bit sparc program this way:   CC -xarch=v9 -c f1.cc
      CC -xarch=v9 -c f2.cc
      CC -xarch=v9 f1.o f2.o -o myprog The 64-bit version of the various system runtime libraries will be linked automatically, given the -xarch=v9 option on each command line.
    If you create both 32-bit and 64-bit versions of a library of your own, you must arrange to name them differently or put them in different subdirectories. If you give them the same name and put them in differrent subdirectories (which is the convention for system libraries on Solaris), you can use different -L options at link time to point to the right directory.
    You can use the Solaris "file" command to find out whether a program or library is 32-bit or 64-bit.`
    Example, this time on a Solaris Opteron system:
    % file /usr/lib/libCrun.so.1
    /usr/lib/libCrun.so.1: ELF 32-bit LSB dynamic lib 80386 Version 1, dynamically linked, not stripped, no debugging information available
    78% file /usr/lib/amd64/libCrun.so.1
    /usr/lib/amd64/libCrun.so.1: ELF 64-bit LSB dynamic lib AMD64 Version 1 [CMOV], dynamically linked, not stripped, no debugging information available

  • ADF runtime libraries installation problem

    Hi All,
    I have a weblogic 10.3.5 environment which have a cluster of two managed servers on a 64-bit linux VM. I want to install ADF runtime libraries to two Managered servers. I downloaded Oracle Application developer (ofm_appdev_generic_11.1.1.5.0_disk1_1of1.zip) for 64-bit. I am using Oracle JRockit (build R28.1.4-7-144370-1.6.0_26-20110617-2130-linux-x86_64). When I installed, I got the following error,
    +[oracle@entwl3t-vm Disk1]$ ./runInstaller -jreLoc /usr/java/jrockit-jdk1.6.0_26-R28.1.4-4.0.1+
    Starting Oracle Universal Installer...
    Checking if CPU speed is above 300 MHz.    Actual 2533 MHz    Passed+++
    Checking Temp space: must be greater than 150 MB.   Actual 1790 MB    Passed
    Checking swap space: must be greater than 512 MB.   Actual 8191 MB    Passed
    Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed
    +Preparing to launch Oracle Universal Installer from /tmp/OraInstall2011-09-15_12-20-43PM. Please wait ...[oracle@entwl3t-vm Disk1]$ Log: /opt/oracle/Oracle/Middleware/oraInventory/logs/install2011-09-15_12-20-43PM.log+
    +[ERROR]: Installer has encountered an internal Error. Contact Oracle support with details+
    +[EXCEPTION]:java.lang.reflect.InvocationTargetException+
    I check the log, here is the exception,
    +[2011-09-15T12:20:46.131-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 10] [ecid: 0000J9hsyUgEGRgbLDm3UA1ESYNT000001,0] Initializing Profile.+
    +[2011-09-15T12:20:46.171-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.statistics] [tid: 10] [ecid: 0000J9hsyUgEGRgbLDm3UA1ESYNT000001,0] Loading Profile Elements...+
    +[2011-09-15T12:20:46.203-04:00] [as] [TRACE:16] [] [oracle.as.install.engine] [tid: 10] [ecid: 0000J9hsyUgEGRgbLDm3UA1ESYNT000001,0] [SRC_CLASS: oracle.as.install.engine.InstallEngine] [SRC_METHOD: startOperation] THROW[[+
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.as.install.engine.InstallEngine.launchModule(InstallEngine.java:508)
    at oracle.as.install.engine.InstallEngine.processAndLaunchModules(InstallEngine.java:462)
    at oracle.as.install.engine.InstallEngine.startOperation(InstallEngine.java:415)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:560)
    Caused by: java.lang.UnsatisfiedLinkError: no oraInstaller in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1738)
    at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    at java.lang.System.loadLibrary(System.java:1029)
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.loadNativeLib(OiipuUnixOps.java:420)
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.<clinit>(OiipuUnixOps.java:126)
    at oracle.as.install.engine.modules.statistics.util.SysInfo.getAvailableMemory(SysInfo.java:162)
    at oracle.as.install.engine.modules.statistics.element.AvailableMemoryElement.<init>(AvailableMemoryElement.java:39)
    at oracle.as.install.engine.modules.statistics.standard.StandardElementLocator.loadElements(StandardElementLocator.java:63)
    at oracle.as.install.engine.modules.statistics.boot.ProfilerInitializer.initializeProfile(ProfilerInitializer.java:82)
    at oracle.as.install.engine.modules.statistics.Statistics.launchModule(Statistics.java:284)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.as.install.engine.InstallEngine.launchModule(InstallEngine.java:508)
    at oracle.as.install.engine.InstallEngine.processAndLaunchModules(InstallEngine.java:462)
    at oracle.as.install.engine.InstallEngine.startOperation(InstallEngine.java:417)
    +... 1 more+
    I read some blogs. It suggests that the problem is causied by running 32-bit software on a 64-bit OS. However, I did install a 64-bit package. Further, I tried to switch to 32-bit and install it. I still got the problem.
    Can anyone help me on this problem?
    Thanks in advance.
    John
    Edited by: john wang on Sep 15, 2011 9:31 AM
    Edited by: john wang on Sep 15, 2011 9:33 AM

    Hi timo,
    To your question, I am using 64-bit JRE.
    The issue is resolved. The problem is the /tmp directory. It appears that, when installing some Oracle products, the /tmp directory needs to be available to the installer. I wish Oracle could make its log more meaningful.
    Thank you very much for your help.
    -John
    Edited by: john wang on Sep 15, 2011 11:56 AM

  • Linking without runtime libraries

    I'm trying to use SunONE Studio 8 to compile and link a kernel driver. Previously, I've been linking with /usr/ccs/bin/ld, but I'd prefer to link with cc so that I can take advantage of some of the link-time optimizations (-xipo in particular).
    I have not been able to figure out the magic command line option to exclude the C runtime libraries from the link step. What am I missing?

    Did you try compiling with "-xnolib"?-xnolib only excludes the C library, it doesn't exclude the runtime objects crti.o, crt1.o or crtn.o. If I add -# to my command line, the final command that invokes ild is:
    /export/home/opt/SUNWspro/prod/bin/ild -dy -r "-N strmod/mymodule" /export/home/opt/SUNWspro/prod/lib/v9/crti.o /export/home/opt/SUNWspro/prod/lib/v9/crt1.o /export/home/opt/SUNWspro/prod/lib/v9/values-xa.o -o sparcv9/mydrv sparcv9/obj1.o sparcv9/obj2.o -Y "P,/export/home/opt/SUNWspro/prod/lib/v9:/usr/ccs/lib/sparcv9:/usr/lib/sparcv9" -Qy /export/home/opt/SUNWspro/prod/lib/v9/crtn.o
    ild: calling ld to finish link -- cannot handle argument -r
    ld: fatal: symbol `_init' is multiply-defined:
    (file /export/home/opt/SUNWspro/prod/lib/v9/crti.o type=FUNC; file sparcv9/obj1.o type=FUNC);
    ld: fatal: symbol `_fini' is multiply-defined:
    (file /export/home/opt/SUNWspro/prod/lib/v9/crti.o type=FUNC; file sparcv9/obj1.o type=FUNC);
    ld: fatal: File processing errors. No output written to sparcv9/mydrv
    ild can't handle -r, required to link multiple relocatable objects into one larger relocatable object. Even so, you can see that ild is asked to link in the runtime objects needed by a user application, which includes symbols required by a kernel driver (_init and _fini).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • I have been storing my Aperture and IMovie Libraries on an external hard drive that recently died.  Fortunately I've been using Time Machine to back up to a 2nd external drive.  How do I restore my libraries to a new external hard drive?

    I have been storing my Aperture and IMovie Libraries on an external hard drive that recently died.  Fortunately I've been using Time Machine to back up to a 2nd external drive.  How do I restore my libraries to a new external hard drive?

    This is a tricky one.
    Open up Time Machine and go back to a date using the timeline on the right side of the window when you know the drive was working and was backing up as part of Time Machine backups.
    Click on the name of your Mac under the Devices heading on the left side of the window in Time Machine, and if things are working correctly you will see Macintosh HD (or whatever you have named it) and the name of the external hard drive that was backing up in the past.
    Right-Click on the name of the external hard drive and then click on "Restore (name of drive) to....."  You may be asked for your adminstrator password at this point.
    It might be easier to restore the drive contents to your desktop if you have room on your Mac, and then copy things over to the new external drive where you want to store the Aperture and iMovie Libraries.
    Once the libraries have been moved over the new external hard drive, you will likely need to "point" Aperture and iMovie to the location of the libraries on the new external hard drive.

  • Data View Web Part - List of Subsites and Document Libraries under Current Site - Must be able to Package as Site Template in SPDesigner

    Hi Guys,
    On the home page of each sub site I would like to be able to show a list of subsites and Document libraries that are under the current subsite.
    I started investigating a solution using Datasources with SOAP requests sent to the server but it is very difficult to understand how to surface it on the Data View WebPart.
    I have tried with the search results webpart but the problem is that it does not work well when packaged in a Site Template.
    Please advise.
    Thanks and Regards,
    Rhyan

    Ok,
    Here is the problem:
    When creating a mysite from powershell or script, apparently you can ONLY do this from a wfe (or a server running Microsoft SharePoint Foundation Web Application in services on server).
    You CANNOT create mysites from script on your appserver if it is not also a Web Application Server. I confirmed the same is true in my test farm. I guess I was always running most of these scripts on the webserver.
    I searched all over and cannot find this documented anywhere.
    Who do I contact to have Microsoft document this?
    It's Thursday morning, I've been working non stop since Saturday morning so you don't have to :)

  • New Article - RoboHelp projects with Subversion and TortoiseSVN

    Some folks have posted questions about Subversion and TortoiseSVN in this forum, so I thought I'd pass along this new article I found in the Adobe Developer Network this week that goes in to detail on how to set up this open-source solution with RoboHelp:
    http://www.adobe.com/devnet/robohelp/articles/robohelp_subversion.html
    Thanks
    John Daigle
    Adobe Certified RoboHelp and Captivate Instructor
    Evergreen, Colorado
    www.showmethedemo.com

    Thread moved to Source Control forum.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Hanging Report Builder and Runtime-6i

    Hi
    The Reports 6i Builder and Runtime screens are taking 15-20 minutes to open in Win NT Environment.Earlier they used to work just fine.In this 'vaccum' time the task list shows Program not responding but eventually after 10-15 minutes ,the window opens fully.Please note that connectivity is ok and this time i am not running any report ..just starting the Report Builder or Report Runtime 6i. Same problem is occuring with Reports Queue Manager as well ,running as a service on this pc.
    Any sort of advice welcomed.
    Thanks.

    This seems to be a problem of Windows NT environment in which the reports are running and not problem with Oracle Reports as such. I suspect some DLL has got corrupted and you have to rebuild the pc again..try re-installing Windows again .
    Cheers

  • Music and Video on Nas in folders but how do i set up itunes on multiple computers to see and use these files and create libraries?

    Music and Video on Nas in folders but how do i set up itunes on multiple computers to see and use these files and create libraries?
    So i have had a itunes set up on my old PC, bought a NAS and copied the folders over to the NAS, i did this incorrectly and so then even when i told the old PC to use that folder it saw all the songs but wasnt able to play the songs as it was looking in the incorrect place.
    So now i want my Mac as well as my PC and others to all use the music, videos etc on the NAS they are in itunes friendly folders (as they were compiled this way by the itunes on the old PC.
    When i tell the mac to use the itunes library.itl file it sees the song list (about 100gb) but cant see any songs, so i have removed this file to another location for now with the hope to set up a new file and then get it to see the songs on the folder from the NAS.
    Can someone tell me how to do this for all the Mac's and PC's on my network as i really want one master library that all use and add too.
    Thanks for your help in advance.

    I have the same question but I am using two pc's

Maybe you are looking for

  • Share via Mail not working after Yosemite upgrade

    Hi all, I recently upgraded from Lion to Yosemite and now I cannot use the Send via Mail option in Pages (or Numbers for that matter). I searched for this already in another tread but the answer (permission repair) did not work. The Exporting option

  • Having an issue with passing the text of a link to a session variable.

    I am having an issue with passing the text from a link to a session variable. I am adding this html as a literal for each item in the list that i have populated with a query. List<Literal> lit = new List<Literal>(); for (int i = 0; i < posts.Count; i

  • Photoshop CS2 constantly crashing

    I am having a very strange issues with CS2 at the moment, out of nowhere the program seems to be crashing every hour or so. Sometimes the menues will just stop working (while the tools work fine) other times it will crash to desktop with the followin

  • Same sqlID with different  execution plan  and  Elapsed Time (s), Executions time

    Hello All, The AWR reports for two days  with same sqlID with different  execution plan  and  Elapsed Time (s), Executions time please help me to find out what is  reason for this change. Please find the below detail 17th  day my process are very slo

  • Partner Function in Notification

    Dears What is the Partner Function in Notification ? by using Partner Function in Notification weather is it possible to select some user as per the assign task for example in Q3 notification i assign a task to a  Create a PO, now i want to know the