After upgrading to lion starting up is taking much more time ??

After upgrading to lion starting up is taking much more time is there any solution to this ?
i do all things about cleaning disk permission or editing .

Have you check what is being started at the same time?
Lion will start more applications then were being started in the past.
Allan

Similar Messages

  • T-code SUIM taking much more time for generating output for profie change.

    Hi All
    We want to extract report for profile addition and deletion for Users in ECC 6. While executing the the t-code SUIM it is taking much more time (taking more than 20 hrs). This problem is coming after patch application
    Please give the solution/Suggest to minimize the time taken in report generation.
    Thanks-
    Guru Prasad Dwivedi

    Hello Prasad,
    The reason for the performance trouble is a new feature regarding the user change documents. Since note 874850 and 1015043 you will get a more complete overview about the changes regarding a user.
    The disadvantage of that new feature is, that in some customer system usage scenario, the performance is very poor. That's the case, if the central change documents are intensivly used also by other applications and the tables CDPOS, CDHDR, ... contains a very big count of rows. Unfortunatly the user change documents can not be searched by the key columns of the central change docs. - so the bad response time can explained.
    What now ... ?
    There are some work arounds to get the change documents on faster way.
    1st. - You can get the former report output and performance if you
           would use the report RSUSR100 instead of the new RSUSR100N in
           separate mode.
    2nd. - If you want to use the new report RSUSR100N directly and only
           want to get the information about the traditional topics
           (content of USH* tables) you should only mark the search areas
           on the tabstrip 'user attributes') to get a better performance.
         - furthermore limit the date range, if possible
    3rd. - You should regulary (monthly) archive the user relevant documents
           for PFCG and IDENTITY from the central change documents.
           As per our note 1079207 chapter 3 you can reload that archives
           into more selective tables.
           The selection for change documents will be rather faster over
           reloaded archived documents than the documents in the
           central change documents tables.
    Best Regards,
    Guilherme de Oliveira.

  • Test program running taking much more time on high end server T5440 than low end server  T5220

    Hi all,
    I have written the following program and run on both T5440  [1.4 GHz, 95 GB RAM, 32 cores(s), 256 logical (virtual) processor(s),] and  T5220 [(UltraSPARC-T2 (chipid 0, clock 1165 MH) , 8GB RAM, 1 core, 8 virtual processors )] on same OS version.  I found that T5540 server takes more time than T5220. Please find below the details.
    test1.cpp
    #include <iostream>
    #include <pthread.h>
    using namespace std;
    #define NUM_OF_THREADS 20
    struct ABCDEF {
    char A[1024];
    char B[1024];
    void *start_func(void *)
        long long i = 6000;
        while(i--)
                    ABCDEF*             sdf = new ABCDEF;
                    delete sdf;
                    sdf = NULL;
        return NULL;
    int main(int argc, char* argv[])
        pthread_t tid[50];
        for(int i=0; i<NUM_OF_THREADS; i++)
                    pthread_create(&tid[i], NULL, start_func, NULL);
                    cout<<"Creating thread " << i <<endl;
        for(int i=0; i<NUM_OF_THREADS; i++)
                    pthread_join(tid[i], NULL);
                    cout<<"Waiting for thread " << i <<endl;
    After executing the above program on T5440 takes :
    real 0.78
    user 3.94s
    sys 0.05
    After executing the above program on T5220 takes :
    real 0.23
    user 1.43s
    sys 0.03
    It seems that T5440 which is high end server takes almost 3 times more time than T5220 which is low end server.  
    However, I have one more observation. I tried the following program :
    test2.cpp
    #include <iostream>
    #include <pthread.h>
    using namespace std;
    #define NUM_OF_THREADS 20
    struct ABCDEF {
    char A[1024];
    char B[1024];
    int main(int argc, char* argv[])
        long long i = 6000000;
        while(i--)
            ABCDEF*  sdf = new ABCDEF;
            delete sdf;
            sdf = NULL;
        return 0;
    It seems that T5440 server is fast in this case as compaired to T5220 server.
    Could anyone please help me out the exact reason for this behaviour as my application is slow as well on this T5440 server. I have posted earlier as well for the same issue. 
    Thanks in advance !!!
    regards,
    Sanjay

    You already asked this question...
    48 hours earlier, and in the same Solaris forum space
    Repeating the post isn't going to get you a response any faster, and actually now have people NOT respond because you are not showing any patience.
    These are end-user community forums, not a place to expect Oracle Technical Support.   There is no obligation that there be a response.
    If you have a business-critical issue and hope to get accurate and timely response, then use your service contract credentials to open a Support request.
    This new redundant post is locked.
    Edit:
    It appears that at the same time the O.P. posted this redundant thread, they also posted the same question to at least one other forum web site:
    http://www.unix.com/solaris/229269-test-program-running-taking-much-more-time-high-end-server-t5440-than-low-end-server-t5220.html

  • After upgrading to Lion, wifi seems to be much slower, is this caused by lion?

    Hello All,
    After upgrading to Lion, my MMA wifi seems to work much slower than before, and also the start up seems to be slower too. Is that caused by upgrading to Lion? Please help

    Give it a few days and a dozen or so restarts.
    The software may be updating Spotlight indexing and a few other "housekeeping" tasks.
    My upgrade on a 2010 Air resulted in a slowdown at first, but then began to return to normal. At first, the boot time doubled, but within a couple of days, it was back to a 12 second boot.

  • OR is taking much more time than UNION

    hi gems..
    i have written a query using UNION clause and it took 12 seconds to give result.
    then i wrote the same query using OR operator and then it took 78 seconds to give the resultset.
    The tables which are referred by this qurey have no indexes.
    the cost plans for the query with OR is also much more lesser than that with UNION.
    please suggest why OR is taking more time.
    thanks in advance

    Here's a ridiculously simple example.  (these tables don't even have any rows in them)
    If you had separate indexes on col1 and col2, the optimizer might use indexes in the union but not in the or statement:
    Which is faster will depend on the usual list of things.
    Of course, the union also requires a sort operation.
    SQL> create table table1
      2  (col1 number, col2 number, col3 number, col4 number);
    Table created.
    SQL> create index t1_idx1 on table1(col1);
    Index created.
    SQL> create index t1_idx2 on table1(col2);
    Index created.
    SQL> explain plan for
      2  select col1, col2, col3, col4
      3  from table1
      4  where col1> = 123
      5  or col2 <= 456;
    Explained.
    SQL> @xp
    | Id  | Operation         | Name   | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |        |     1 |    52 |     2   (0)| 00:00:01 |
    |*  1 |  TABLE ACCESS FULL| TABLE1 |     1 |    52 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter("COL1">=123 OR "COL2"<=456)
    SQL> explain plan for
      2  select col1, col2, col3, col4
      3  from table1
      4  where col1 >= 123
      5  union
      6  select col1, col2, col3, col4
      7  from table1
      8  where col2 <= 456;
    Explained.
    SQL> @xp
    | Id  | Operation                     | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT              |         |     2 |   104 |     4  (75)| 00:00:01 |
    |   1 |  SORT UNIQUE                  |         |     2 |   104 |     4  (75)| 00:00:01 |
    |   2 |   UNION-ALL                   |         |       |       |            |          |
    |   3 |    TABLE ACCESS BY INDEX ROWID| TABLE1  |     1 |    52 |     1   (0)| 00:00:01 |
    |*  4 |     INDEX RANGE SCAN          | T1_IDX1 |     1 |       |     1   (0)| 00:00:01 |
    |   5 |    TABLE ACCESS BY INDEX ROWID| TABLE1  |     1 |    52 |     1   (0)| 00:00:01 |
    |*  6 |     INDEX RANGE SCAN          | T1_IDX2 |     1 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       4 - access("COL1">=123)
       6 - access("COL2"<=456)

  • After upgrading to Lion, I went to open Mail and received the message that it needed to upgrade my Mail database - this may take a few minutes. The bar shows it is about 1/5 along and has been there for over 10 hours. Help!

    After upgrading to Lion, I went to open Mail and received the message that it needed to upgrade my Mail database - this may take a few minutes. The bar shows it is about 1/5 along and has been there for over 10 hours.
    I tried quitting and starting again but it just jumps back to the same spot.

    It is quite large, but I have tried two of the fixes suggested and things now seem to be moving along.
    (I was unable to seach properly before which is why I posted the question - it was a bit of a panic)

  • After upgrading to Lion, the Finder will increase the virtual memory while using external HD

    after upgrading to Lion, the Finder will increase the "virtual memory size" while using external HD. I check it using Activity Monitor and found that "Finder" wll increase the "Virtual Memory Size" and "Private Memory Size". and then after a while. the system told me my HD is full and hanging there.
    My External HD is 1TB. and I have installed new version Paragon NTFS for Mac V.9.01. I am not sure it is related or not.
    but I attached my external HD. the "Finder" will start to increase the "Virtual Memory Size".
    please help out this case and solve this issue.
    thank you !!!

    The one has nothing to do with the other. Virtual memory size and Private memory size are used by developers to analyze their software. it has nothing to do with anything related to the user.

  • After upgrading to lion Time Capsule is solid yellow

    Hi
    After upgrading to lion I am experiencing a lot of problems with time caspule
    1. backup fail: it starts and than fails (error message and yellow warning triangle)
    2. unable to connect to TC disk, neither from airport utility, nor from Finder
    3. Airport Utility hangs while trying to manually modify configuration (rainbow weel).
    After a lot of reboot,  reset, disk rename, time capsule reconfiguration etc etc AND TC DISK REINITIALIZATION (ALLA BACKUP LOST!)
    now backup seems to work and I can browse files in Time Machine
    BUT
    Time Capsule is a steady YELLOW and Airport utility says there is an error on disk (The disk is not working)
    Can somebody help me.
    This all happened after Lion installation. Not a problem before
    Franco

    Hi William
    The disk is the internal Time Capsule Disk. It's a 1Tb model.
    My iMac is localized in Italian
    So I write here the Italian message and a possible translation
    The first error message I get opening Airport Utility is:
    Utility Airport ha trovato una Time Capsule 802.11n (2.a generazione) che segnala problemi
    (AirPort Utility has found a Time Capsule 802.11n (2nd generation), which indicates problems)
    If I press on "Continue" I enter a page that says
    "Problema 1 di 1: Il disco Time Capsule non funziona"
    (Problem 1 of 1: The Time Capsule Disk doesn't work)
    "Si è verificato un problema con il Disco Time Capsule. Collega un disco rigido USB al tuo disco Time Capsule e utilizza il pannello Dischi di Utility Airport per archiviare i dati ed eseguire il backup."
    (There was a problem with the Time Capsule disk. Connect a USB hard drive to your Time Capsule disk and use Disk Utility Airport panel to store data and run the backup.)
    While if I go to the manual settings and I select the disk,
    on the disk data info I have
    Stato S.M.A.R.T.: Non funziona
    (S.M.A.R.T status: Not working)
    As I said before, apart from that problem, everything else (time machine, backups and file recovery) looks working good (until proven otherwise eh eh)
    I don't know if to worry about the disk but I find suspicious that everything just started after Lion installation.
    I called the call center and they just said to return the TC for disk repair (have to pay, warranty expired).
    I told them about Lion installation fact and they said it looks like a coincidence but actually it is likely that after a disk initialization or a big amount of data writing the TC disk may break (WHAT ?!?)  and the Apple guy even suggested me to buy an external disk that is less expensive and give less problem than a TC !!!!
    (I can agree on that now, but I was surprised to hear that from them )
    Thank you very much for any help.
    I hope this info helps
    Franco Andrea

  • After upgrading to Lion Time Capsule solid yellow

    Hi
    After upgrading to lion I am experiencing a lot of problems with time caspule
    1. backup fail: it starts and than fails (error message and yellow warning triangle)
    2. unable to connect to TC disk, neither from airport utility, nor from Finder
    3. Airport Utility hangs while trying to manually modify configuration (rainbow weel).
    After a lot of reboot,  reset, disk rename, time capsule reconfiguration etc etc AND TC DISK REINITIALIZATION (ALLA BACKUP LOST!)
    now backup seems to work and I can browse files in Time Machine
    BUT
    Time Capsule is a steady YELLOW and Airport utility says there is an error on disk (The disk is not working)
    Can somebody help me.
    This all happened after Lion installation. Not a problem before
    Franco

    Hi William
    The disk is the internal Time Capsule Disk. It's a 1Tb model.
    My iMac is localized in Italian
    So I write here the Italian message and a possible translation
    The first error message I get opening Airport Utility is:
    Utility Airport ha trovato una Time Capsule 802.11n (2.a generazione) che segnala problemi
    (AirPort Utility has found a Time Capsule 802.11n (2nd generation), which indicates problems)
    If I press on "Continue" I enter a page that says
    "Problema 1 di 1: Il disco Time Capsule non funziona"
    (Problem 1 of 1: The Time Capsule Disk doesn't work)
    "Si è verificato un problema con il Disco Time Capsule. Collega un disco rigido USB al tuo disco Time Capsule e utilizza il pannello Dischi di Utility Airport per archiviare i dati ed eseguire il backup."
    (There was a problem with the Time Capsule disk. Connect a USB hard drive to your Time Capsule disk and use Disk Utility Airport panel to store data and run the backup.)
    While if I go to the manual settings and I select the disk,
    on the disk data info I have
    Stato S.M.A.R.T.: Non funziona
    (S.M.A.R.T status: Not working)
    As I said before, apart from that problem, everything else (time machine, backups and file recovery) looks working good (until proven otherwise eh eh)
    I don't know if to worry about the disk but I find suspicious that everything just started after Lion installation.
    I called the call center and they just said to return the TC for disk repair (have to pay, warranty expired).
    I told them about Lion installation fact and they said it looks like a coincidence but actually it is likely that after a disk initialization or a big amount of data writing the TC disk may break (WHAT ?!?)  and the Apple guy even suggested me to buy an external disk that is less expensive and give less problem than a TC !!!!
    (I can agree on that now, but I was surprised to hear that from them )
    Thank you very much for any help.
    I hope this info helps
    Franco Andrea

  • After upgrading to lion my web server won't run

    after upgrading to lion my web server won't run

    From System Prefs clicking on Web Shareing wont start.
    From the terminal attempting to run httpd gives me:
    iBookWiz:~ steve$ sudo httpd
    httpd: Syntax error on line 117 of /private/etc/apache2/httpd.conf: Cannot load /usr/libexec/apache2/mod_fastcgi.so into server: dlopen(/usr/libexec/apache2/mod_fastcgi.so, 10): image not found

  • After upgrading to Lion, Printer error messages.

    After upgrading to Lion, I suddenly see the following error message whenever I print to my HP printer: "You can't open the application PrinterProxy because PowerPC applications are no longer supported." Now, my document will print, but I can no longer adjust settings. Help??

    PowerPC applications are no longer supported under Lion.  If you can't find Lion drivers on HP's website, you either need to go back to Snow Leopard or start looking for a newer, compatible printer.

  • After upgrading to Lion should I have tatty grey screen on opening with boxes for password user?

    After upgrading to Lion on Wednesday last I now have a tatty grey screen on booting-up with the two boxes for user name and password.Gone is the old blue screen. Does anyone else have a grey opening screen?
    Also this evening on booting the grey screen appeared but I could not immediately type any info into either box.After switching on/off several times I gave up and left the iMAC on with an inactive grey screen.About five minutes later the HP printer went through a re-calibration or cleaning process,of its own accord, and I noticed that the cursor on the screen had moved of its own accord.I then found that I could insert info into the two boxes and here I am with the iMAC open.Anone come across this issue?

    Hello again Gary,
    After trying your PRAM suggestion, everything was OK however, when I restarted my iMac the next day, the same Grey Screen apppeared whith the request for user name and password?
    This has repeated for the last 3 days!
    I have tried the Utility to check the HD "Verify Disk Permissions" which shows a long list of "faults"? and I have done this twice now.
    Also I have to do the PRAM start-up in order to get online and use other programs. I get frequent messages that say my "Applications" are for the wrong OS?
    After using the PRAM keyboard start-up I get a screen with a "Bar" similar to the Windows XP start-up proocess and a grey blob moves along this "Bar" until the iMac starts.
    On one site it mentioned that this iMac may need an "Firmware" update/correction; however I can not find any Firmware to download for this machine.
    My iMac is a 21.5" Model A1311. 
    Do I need to do a complete Format of the HDD and re-install Leopard and then try Lion again?
    Very frustrated,
    Maureen

  • After upgrading to lion, cant use TM

    After upgrading to lion, I can't see any TM backups, and I do not have access to this external harddrive.
    In the TM backup, I can see all backups, but cant activate or use them.
    When I click to the external HD, an error message says: "The folder "" cannot be opend, because you do not have permission..."
    I tried to solve problem as Apple given on website, but didnot help.
    Thanks for help!

    I had this same problem after I copied my TM backups from a 500GB TC to a larger external USB drive.
    After some work, I finally was able to get the backups from the old TC to show up (in pink) on the new external drive, but still was unable to select/use the backups in pink.
    After readings lots of the pondini posts, I saw some things that seem to get me access to the pink timeline items.
    First, I read this post. At the beginning of it, it read...
    Time Machine keeps the backups for each Mac separate, and normally only shows the ones for the Mac it's running on, even if there are other Macs' backups on the same disk/partition.
    Also, sometimes Time Machine will start a new "sequence" of backups, as if they were from a different Mac.
    To see these "other" backups, you need the Browse Other Backup Disks or (Browse Other Time Machine Disks) option.  It's available by Alt/Option-clicking the Time Machine icon in your Menubar, or by right-clicking the Time Machine icon in your Dock.
    At the end of the post (scroll to the blue box at the bottom), this also gave me an strategy...
    If you've moved from a network location to local, Time Machine will usually continue backing up to the sparse bundle.  But when you
    Enter Time Machine, it will be looking for local backups.  You'll have to manually mount the sparse bundle by double-clicking it in the Finder before entering Time Machine, and may need the Browse ... option.
    These ideas helped me, as I am now able to access the pink backups in the timeline.

  • ICal event have disappeared after upgrading to Lion. Please help!

    After upgrading to Lion, pre-existed calendar events (Newer ones) have disappeared. How can I recover?

    Greetings Alex,
    If you have a backup of your computer from before you upgraded then you can restore the data from your backup: http://support.apple.com/kb/HT1553
    --- Let us know if you have a backup and if so, what type it is and we can tell you how to restore your calendars.
    --- If you don't have a backup, consider starting one following the article above ASAP.  Anyone with information they care about on their computer should have a backup.  It is a hard lesson that every computer user learns at least once.
    If you do not have a backup from before you upgraded:
    1. Make an iCal backup so you don't lose what you have currently:  Click on each calendar on the left hand side of iCal one at a time highlighting it's name and then going to File Export > Export and saving the resulting calendar file to a logical location for safekeeping.
    2. Go to iCal > Quit iCal
    3. Remove the following to the trash and restart your computer:
    Home > Library > Caches > com.apple.ical (There may be more than one of these. Remove all files and folders that start with this phrase)
    Home > Library > Calendars > Calendar Cache, Cache, Cache 1, 2, 3, etc. (Do not remove Sync Cache or Theme Cache if present)
    Home > Library > Preferences > com.apple.ical (There may be more than one of these. Remove all files and folders that start with this phrase.)
    ---NOTE: Removing these files may remove any shared (CalDAV) calendars you may have access to. You will have to re-add those calendars to iCal > Preferences > Accounts.
    ---NOTE: To get to "Home > Library" in Lion:
    4. Open iCal and see if the events you are looking for magically reappear.
    If the events don't appear and you don't have a backup or have the events on another device like an iPhone or iPad then your only other option would be to use data recovery software or a data recovery company to try to get the data back (although it might be easier to just re-create the data as best you can).
    Data Recovery software examples:
    http://www.prosofteng.com/products/data_rescue.php
    http://www.macintosh-data-recovery.com/
    http://www.subrosasoft.com/OSXSoftware/index.php?main_page=product_info&products _id=1
    You can contact a local Apple Authorized Provider to see if they offer data recovery services: http://www.apple.com/buy/locator/service/
    There are many nationwide / worldwide data recovery companies out there.  Here are a few examples:
    http://www.ontrackdatarecovery.com
    http://www.drivesaversdatarecovery.com/
    http://www.totalrecall.com/
    Hope that helps and best of luck to you.

  • Significant slowdown of Time Machine after upgrade to Lion; indexing problem

    After upgrading to Lion over the weekend I notice a significant slowdown of Time Machine processing.  I assumed the first backup or two would take some time but it's been a couple of days.  The process always hangs up at the "Indexing backup" stage.  It takes a couple of hours to finish.
    I found several threads relating to slowed down backups on Lion, most seem to hang at the "Preparing" stage (not the same symptom) but I did find some good diagnostic pointers.  I installed the widget to see what kind of messages were being produced and found a few dozen "Waiting for index to be ready (100)" messages at the end of the stream.  Further research - this is not a good thing :-)  It seems a couple of such messages can be ok, but this many usually indicates a problem.  I'm going to discount the possibility of a hardware failure because everything was perfectly fine up to the point I made the upgrade.  Plus the prepare and copy seem to proceed at the expected speed (I watched the most recent cycle just to be sure).
    Here is the full message log (it's still running at the moment):
    Starting standard backup
    Attempting to mount network destination URL: afp://Paul%[email protected]/Paul%20DiMarzio's%20Tim e%20Capsul
    Mounted network destination at mountpoint: /Volumes/Paul DiMarzio's Time Capsul using URL: afp://Paul%[email protected]/Paul%20DiMarzio's%20Tim e%20Capsul
    QUICKCHECK ONLY; FILESYSTEM CLEAN
    Disk image /Volumes/Paul DiMarzio's Time Capsul/Paul DiMarzio’s MacBook Pro.sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    12.15 GB required (including padding), 490.69 GB available
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    Waiting for index to be ready (100)
    I further found the advice and instructions on how to run the disk utility on the sparsebundle.  I did a verify and repair, and the results came back that the drive appears to be ok (it did not say that it explicitly repaired anything).
    But the problem remains.
    I use a 1TB Time Capsule with plenty of free capacity (only half full).  The TC and my MacBook are both hardwired into the home network, networking speed has never been an issue.
    I'd sure hate to delete the backup file and start from scratch, there's over a year's worth of data there and I have, occassionally, wanted to go in there and pick up a downlevel or subsequently deleted file.
    Any advice on other diagnostics or repair options to take?  Thanks!
    Paul

    After posting I decided to keep trying to slog my way through the troubleshooting guide.  Some of the steps are beyond my understanding but I did follow the advice in #D2 to delete the .Spotlight-V100 file from the sparsebundle.  That action does seem to have done the trick, the backups are now completing in normal time.  I ran a couple just to be sure.  I've verified the backups with BackupLoupe and entered the Time Machine, all appears to be in order and as expected.  The only odd side effect is that the backup volume is no longer ejected after completion but that might just be an artifact of all my mounting/de-mounting and playing with Finder.  Anyway a very small price to pay for what looks to be a working system again.
    Hopefully the good behavior will last through a few days and a few reboots :-)
    ps - if you're reading this and don't know about the troublshooting guide it's here: http://web.me.com/pondini/Time_Machine/Troubleshooting.html (thanks pondini)

Maybe you are looking for

  • Transferring my files from my 1.1 Mac pro to my new 5k iMac FireWire to lighting?

    i Just ordered the replacement for my antique 1.1 version Mac Pro which is loaded with external FireWire hard drives as well as 3 internal 1 and 2 tearabyte and the one tearabyte SSD boot drive it is of course on 10.7.5 it also has a pair of apple ci

  • No Video After Mountain Lion Upgrade - MBP17" (2011)

    Hello, I just attempted to upgrade my 2011 MacBook Pro to Mountain Lion on Saturday and now I have no video when I turn the computer on. The upgrade went smoothly but on the final reboot I had no video come back. I've restarted the computer a dozen t

  • User exits : How to build and use through our form application ?!

    Hi , Im trying to build a user exit based on a C++ program , to be used within our application. I installed from the Oracle 8 Client CD the Oracle Pro*C/C++ ver 8.0.5 , i have Developer 2000 rel 6.0 patch 7 installed also . Can anyone please provide

  • Incompatibility problem TM 8.0

    hi we are working on TM 8.0 and we want to transport a product "milk" from location A to location B. we have 2 resources: truck 1 & truck 2 (only truck 1 can transport milk). - we defined incompatibility in which we created a new condition ( conditio

  • [Jeveloper + EJB client - EJB on OAS] Problem connecting

    I having problems getting a simple client from within JDeveloper 3.0(Code snippet - OAS/EJB Client) talking to a simple EJB on OAS 4.0.8. I have deployed OK (red flag against status?) but when I run the client using port - 5512(ORB port)I get the mes