Oracle Applications very slow on target system after rapid clone

Hi,
I performed a clone from Production to test environment using rapidclone. My environment is 12.0.4 running on a Solaris platform.
There were no errors reported in the log file while running adcfgclone.pl on both dbTier and appsTier. It competed successfully.
But when I try to login to the application, it takes too long for the application/forms to launch.
The performance is really bad.
I have restarted the apps-tier and db-tier couple of times. Also ran autoconfig on both apps and db-tier node. Stil no luck.
Has anyone encountered this issue before?
Thanks!

Forms were coming up very late and also was throwing error - adformsctl.sh: exiting with status 204
Followed metalink note: 412980.1 to solve the issue.
Brought down the apps-tier, deleted the files from the below specified location and restarted the apps-tier. Also ran auto-config
rm -fr $INST_TOP/ora/10.1.3/j2ee/oacore/persistence/*
rm -fr $INST_TOP/ora/10.1.3/j2ee/oafm/persistence/*
rm -fr $INST_TOP/ora/10.1.3/j2ee/forms/persistence/*
Now application and forms are launching fine.

Similar Messages

  • The first time I start Firefox it is very slow coming up but after it is up and I want another window it fast again. What do I need to do to clean out whatever is clogging it up.

    Question
    The first time I start Firefox it is very slow coming up but after it is up and I want another window it fast again. What do I need to do to clean out whatever is clogging it up. edit

    * The first time you start up any application after turning on your computer is called a cold start, which is why Firefox takes a while to load right away. (I've noticed that future versions of Firefox start up faster on a cold start then Firefox 5.0.1.) Also, a lower amount of RAM could be slowing its start-up down since Firefox is kind of memory hungry.
    * As for the second part of your question, press ctrl,Alt, and the delete keys on your keyboard. The Windows Task Manager should start. Go to the processes tab and look for 'firefox.exe'. Right click on the firefox.exe and click 'End Process'. Hit Yes and wait for a minute.
    * Then opening Firefox again.
    Hopefully this helped somewhat!

  • Pages on my iPad3 has become very slow to open documents after upgrading to ios7. I've clicked on a folder 5 minutes ago and am still waiting. The work-around seems to be to force-close it, but I've needed to do this many times in the last few days.

    Pages on my iPad3 has become very slow to open documents after upgrading to ios7.
    I posted on here about this a few weeks back and someone suggested force-closing Pages -- and that does indeed enable me to open things -- but I have had to force-close many times in the last 24 hours, which is worrying. Are there any other suggestions?
    I am sometimes also finding that, when I have been writing something and then click on "documents" the screen goes blank, there is a wait of around a minute and then the same document is re-displayed, before clicking "documents" again lets me look at other documents -- which is a pain if I am trying to move between documents repeatedly. Again, words of wisdom on this would be great.
    Pages under iOS6 opened quickly, and there was an immediate loss of performance when I upgraded. I am finding this very frustrating because I don't feel that the new Pages has added to the facilities I was using, but a slowness to open documents is frustrating.
    Thanks
    Mark

    Pages on my iPad3 has become very slow to open documents after upgrading to ios7.
    I posted on here about this a few weeks back and someone suggested force-closing Pages -- and that does indeed enable me to open things -- but I have had to force-close many times in the last 24 hours, which is worrying. Are there any other suggestions?
    I am sometimes also finding that, when I have been writing something and then click on "documents" the screen goes blank, there is a wait of around a minute and then the same document is re-displayed, before clicking "documents" again lets me look at other documents -- which is a pain if I am trying to move between documents repeatedly. Again, words of wisdom on this would be great.
    Pages under iOS6 opened quickly, and there was an immediate loss of performance when I upgraded. I am finding this very frustrating because I don't feel that the new Pages has added to the facilities I was using, but a slowness to open documents is frustrating.
    Thanks
    Mark

  • Application very slow to installing on macbook pro , why?

    application very slow to installing on macbook pro , why?

    Spider.007 is correct, here is my current setup:
    NAME FSTYPE LABEL UUID MOUNTPOINT
    sda
    ├─sda1 vfat EFI 70D6-1701
    ├─sda2 hfsplus Macintosh SSD 956c7127-1bde-348b-9fb5-1b79cd05a4ad
    ├─sda3 hfsplus Recovery HD 4fa05f80-9ed0-3fc2-82eb-dbd6e4bd4b12
    └─sda4 ext4 f741fbee-f3b0-4a95-b9b8-f35f4b4c28af /
    sr0
    Last edited by SilverOne (2014-05-04 01:12:50)

  • My mac has become very slow and crashes frequently after installing Lion

    My mac has become very slow and crashes frequently after installing Lion. I have a 4 GB DDR3 ram and 2.4 GHz Processor. The Mac was running just fine on Snow Leopard. Has anyone else faced this issue?
    Any suggestions on how to solve it?
    Thank you
    Kimberly M. Noronha

    I refer you to the TM expert
    http://web.me.com/pondini/Time_Machine/14.html
    As a extra precaution I would copy the user file folders of Music, Documents, Pictures etc to another external drive and disconnect, just in case.
    Always maintain TWO backups of your data at all times, since your messing with one, you need another until your back at two again.

  • Oracle insert very slow (very urgent)

    Hello
    I am new to this forum and also new to oracle .... I am woking in a C# 3.5 desktop application
    I am Leasing data from socket (1 message per 10 millisecond) and save in queue<T> and then i have a background thread which dequeu the data and perform some calculation and create “insert sql query “ on run time NO STORE PROCEDURE just simple insert query
    For example
    insert into Product values(0,computer , 125.35);
    I pass that insert query to my datalayer which create oracle connection and insert in to a data base. see the code below
    using System.Data.OracleClient
    class db
    OracleConnection conns = null
    public static void conn(string dbalias, string userid, string password){
    try
    string connString = @"server =" + dbalias + ";uid =" + userid + ";password =" + password + ";";
    conns = new OracleConnection(connString);
    conns.Open();
    catch (OracleException e){
    Console.WriteLine("Error: " + e);}}
    public static void ExecuteCommand(string sqlquery)
    try
    OracleCommand cmd = new OracleCommand(sqlquery,conns);
    cmd.ExecuteNonQuery();
    NOW the problem is that inseration in oracle database is very slow please tell me how to solve this issue

    Additionally:
    How slow? Just one single insert is slow? Or you're doing thousands of inserts that way and they add up to being slow?
    If you're doing a bunch of inserts, wrap a bunch of them inside a transaction instead of doing them one by one which will avoid a commit each time as well.
    Or use Array binding or Associatve arrays as indicated previously (You'd need to use Oracle's provider for that though ~ ou're using System.Data.OracleClient).
    You're using a literal hard coded statement, per your example? Use bind variables.
    Also, this forum is for tools that plug in to VS. Problems with ODP.NET code you've written would be more appropriate in the [ODP.NET forum|http://forums.oracle.com/forums/forum.jspa?forumID=146], but that forum deals with problems with Oracle's ODP, not Microsofts (which is in maintenance mode by the way)
    Hope it helps,
    Greg

  • OIM 9031: Best way to handle application/test account on target system.

    Hi Guys,
    I am wonder what will be the best way to handle application account created in target sytem . i.e. I have target system Active Directory and on non-trusted reconciliation, I also fetch application/test account which not going to match to any existing user ,but should be capture for reporting or any future action .
    Any input or idea is most welcome !!
    Cheers,
    Ankit

    There are basically two approaches to handle service accounts.
    Either you model them as a free standing RO very similar to a normal AD account or you use the built in "service account" and associate the account with an already existing AD RO instance. I haven't used the "service account" approach in any customer project yet so I can't really comment on the details of that approach (hopefully someone else will be able to do that).
    Are you sure that you have service accounts in AD that you can't attribute to a specific users? Most organizations require service accounts to be linked to a user or a group of users so that the need for the account to continue existing can be verified by a human. Having live accounts in your AD that no one can say what they do or why they exist is normally a very scary thought for most organizations.
    Hope this helps
    /M

  • Wireless very slow and/or unstable after Kernel update to 3.13

    I have a "fresh" install from 2 weeks ago. It was installed with Kernel 3.12. I have a rtl8192cu, it was dreadful, so as recommended I installed dkms-8192cu and everything was perfect.
    After the upgrade to Kernel 3.13, both with the standard driver and with dkms-8192cu my connection is very slow or unstable.
    As an example, in theory I have 20m, with 3.12 I was around 14m. With 3.13 I am around 1m or less, I can barely update my system because:
    error: failed retrieving file 's-nail-14.6.1-1-x86_64.pkg.tar.xz' from archlinux.polymorf.fr : Operation too slow. Less than 1 bytes/sec transferred the last 10 seconds
    Wired everything goes fine.
    I cannot downgrade to 3.12 because I need the new radeonsi improvements done with 3.13. I have this computer mostly to play Dota2.

    Rexilion wrote:
    I misread that the in kernel driver of v3.12 was working properly. THat way you can figure out what exact change broke performance by testing different development kernels.
    There is an in-kernel driver in staging called rtl8192u. It received a lot of changes in v3.12. Maybe try v3.11 and see if that works?
    it didnt work in kernel 3.12, but with https://aur.archlinux.org/packages/dkms-8192cu/ it worked perfect
    in kernel 3.13 it is horrible both witht he stock driver or with the AUR package.

  • Web pages slow to load with IE11 and the cursor/mouse is very slow to work until after page loads

    Web pages are very slow to load, I hve run Norton Eraser and found no issues that would cause this

    New HP Pavilion three weeks ago.  After several attempts by the 'experts' I finally got a straight answer from a tech in the Philipines yesterday, 01-29-2015.  HP and Microsoft are working to resolve the issue of slow pages and a dead cursor until the next page finally loads.  You may have discovered that Google Chrome DOES NOT have this issue.  Comments about HP would not be allowed here so I will just say, use Chrome until the issue with IE 11 is resolved.

  • Retrieving record from oracle DB very slow..pls help

    Hi, i'm writing a VB code to retrieving records from Oracle DB Server version 8. I'm using VB Adodb to retrieve the records from various tables. Unfortunately one of the table are very slow to response, the table only contain around 204900 records. The SQL Statement to retrieve the records is a simple SQL Statement that contain WHERE clause only. Any issue that will make the retrieving time become slow? Is that a Indexing? Oracle Driver? Hardware Spec? Or any solution for me to improve the performance. Thanks!

    Well, there are a few things to consider...
    First, can you try executing your query via SQL*Plus? If there are database tuning problems, your query will be slow no matter where you run it.
    Second, are you retrieving significantly more rows in this query than in your other queries? It can take a significant amount of time to retrieve records to the client, even if it's quick to select them.
    Justin

  • Very slow MV fast refresh after "Merge" on dimension

    Hi,
    We have a sales cube with 300Mio records and product dimension with 20.000 records.
    We have a materialized view something like:
    SELECT      COUNT(*) AS cnt,
         COUNT(cube.amount) AS cnt_amt,
         sum(cube.AMOUNT) as amount,
    p.product_name
    FROM sales_cube cube
    JOIN product_dimension p on cube.product_dimension = p.product_dimension
    group by day, product_dimension
    There is tho mv_log on cube and on product_dimension defined.
    After import process for sales_cube
    In the night we run an product dimension update script implemented wit MERGE.
    If something changes in product dimension then next fast refresh from materialized view takes 4 hours. If we have no changes in product_dimension then fast refresh takes 8 seconds.
    My question is, why takes it sooo long and who can we prevent it.

    I'm not authorized to publish EXECUTION PLAN or schema details.
    But I found the problem.
    ETL Prozess is generated by Warehouse Builder.
    ETL Prozess is modeled as Mapping from product table to product dimension in Warehouse as "UPDATE/INSERT" by PK (product number).
    Warehouse Builder generates an MERGE statement for such "UPDATE/INSERT" mappings.
    But this mapping updates every record in Dimension Table, as result Materialized View Log for this dimension is confused. Fast refresh (join between fact table and dimension) is very slow (slower than compleate refresh).
    Now, i simple must find out how i can change this OWB mapping not to update records in dimension if corresponding records are not modified in source table.
    There is an "match by constraint" option in mapping, looks useful, i'll try it tomorow.

  • Flash player loading files very slow and getting stuck after 100%

    Hello all,
    I have an issue with my development and need your help and feedback for the same:
    I  have developed various E-Learning courses which was published some in  Flash Player 9 and some with version 10. Since Flash Player 10.1 was  introduced all my developed courses was running fine. But it's found  that user who are using Flash Player 10.1.85.3 is facing issue with file  loading and playing the courses. Some time Flash player fails to load the  chapters and files after preloading 100%, and sometime it's very slow in  loading performance. I like to intimate that all these was not happening  with Flash player version 10. Please give me any idea where I am going  wrong. Is this kind of issue possible? If anyone faced the same experience. Please give me your valuable feedback.
    Please  Note: I have faced an scenario that, suppose a user is stuck with loading  the course, and after getting stuck he clear his browser cache, and  immediately after that the same player start working fine. And loading  the course chapter properly. Need help to get rid of this kind of  situation.
    Thank you
    Amitava D

    Hello all,
    I have an issue with my development and need your help and feedback for the same:
    I  have developed various E-Learning courses which was published some in  Flash Player 9 and some with version 10. Since Flash Player 10.1 was  introduced all my developed courses was running fine. But it's found  that user who are using Flash Player 10.1.85.3 is facing issue with file  loading and playing the courses. Some time Flash player fails to load the  chapters and files after preloading 100%, and sometime it's very slow in  loading performance. I like to intimate that all these was not happening  with Flash player version 10. Please give me any idea where I am going  wrong. Is this kind of issue possible? If anyone faced the same experience. Please give me your valuable feedback.
    Please  Note: I have faced an scenario that, suppose a user is stuck with loading  the course, and after getting stuck he clear his browser cache, and  immediately after that the same player start working fine. And loading  the course chapter properly. Need help to get rid of this kind of  situation.
    Thank you
    Amitava D

  • VERY SLOW Mac Book Pro after Mavericks update...

    I have recently updated my MacBook Pro to Mavericks and everything is slow. I use IMovie and my computer freezes. What should I do?

    If you don't already have a current backup, back up all data before doing anything else. This procedure is a diagnostic  test. It changes nothing, for better or worse, and therefore will not, in itself, solve your problem. The backup is necessary on principle, not because of anything suggested in this comment. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The procedure will help to identify which such modifications you've installed, as well as some other aspects of the state of the system that may be pertinent.
    Don’t be alarmed by the seeming complexity of these instructions — they’re easy to carry out. Here's a brief summary: You copy a line of text from this web page into a window in another application. You wait about a minute. Then you paste some other text, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, paste again. That's all there is to it. Details follow.
    You may have started the computer in "safe" mode. Preferably, these steps should be taken while booted in “normal” mode. If the system is now running in safe mode and is bootable in normal mode, reboot as usual. If it only boots in safe mode, proceed anyway.
    Below are instructions to run a UNIX shell script. It does nothing but produce human-readable output. However, you need to be cautious about running any program at the behest of a stranger on a public message board. If you question the safety of the procedure suggested here — which you should — search this site for other discussions in which it’s been followed without any report of ill effects. If you can't satisfy yourself that these instructions are safe, don't follow them.
    The script will line-wrap or scroll in your browser, but it's really a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then copy it.
    If you have more than one user, and the affected user is not an administrator, then please run the script twice: once while logged in as the affected user, and once as an administrator. The results may be different. The administrator is the user that is created automatically on a new computer when you start it for the first time. If you can't log in as an administrator, just run the script as the affected user. Most personal Macs have only one user, and in that case this paragraph doesn’t apply.
    Launch the built-in Terminal application in any of the following ways: 
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) 
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. 
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid. 
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign ($) or a percent sign (%). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign. 
    Triple-click anywhere in the line of text below on this page to select it:
    clear; PB=/usr/libexec/PlistBuddy; PR () { [[ "$o" ]] && o=$(sed 's/^/   /' <<< "$o") && printf '\n%s:\n\n%s\n' "$1" "$o"; }; PC () { o=$(egrep -v '^[[:blank:]]*($|#)' "$2"); PR "$1"; }; PF () { o=$($PB -c Print "$2" | awk -F'= ' \/$3'/{print $2}'); PR "$1"; }; PN () { [[ $o -eq 0 ]] || printf "\n%s: %s\n" "$1" $o; }; a=$(id | grep -w '80(admin)'); [[ "$a" ]] && sudo true && r=1 || r=; { [[ "$a" ]] || echo $'No admin access\n'; [[ "$a" && ! "$r" ]] && echo $'No root access\n'; system_profiler SPSoftwareDataType | sed '8!d;s/^ *//'; o=$(system_profiler SPDiagnosticsDataType | sed '5,6!d'); fgrep -q P <<< "$o" && o=; PR "POST"; o=$(($(vm_stat | awk '/Pageo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0));  PN "Pageouts (MiB)"; s=( $(sar -u 1 10 | sed '$!d') ); [[ ${s[4]} -lt 90 ]] && o=$( printf 'User %s%%\t\tSystem %s%%' ${s[1]} ${s[3]} ) || o=; PR "Total CPU usage"; [[ "$o" ]] && o=$(ps acrx -o comm,ruid,%cpu | sed '2!d'); PR "Max %CPU by process (name, UID, %)"; o=$(kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1); PR "Loaded extrinsic kernel extensions"; o=$(launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'); PR "Loaded extrinsic user agents"; o=$(launchctl getenv DYLD_INSERT_LIBRARIES); PR "Inserted libraries"; PC "cron configuration" /e*/cron*; o=$(crontab -l | grep [^[:blank:]]); PR "User cron tasks"; PC "Global launchd configuration" /e*/lau*; PC "Per-user launchd configuration" ~/.lau*; PF "Global login items" /L*/P*/loginw* Path; PF "Per-user login items" L*/P*/*loginit* Name; PF "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed 's/\..*$//;s/-[1-9]$//'; o=$(find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l); PN "Restricted user files"; cd; o=$(find -L /S*/L*/E* {,/}L*/{A*d,Compon,Ex,In,Keyb,Mail/Bu,P*P,Qu,Scripti,Servi,Spo}* -type d -name Contents -prune | while read d; do ID=$($PB -c 'Print :CFBundleIdentifier' "$d/Info.plist") || ID=; ID=${ID:-No bundle ID}; egrep -qv "^com\.apple\.[^x]|Accusys|ArcMSR|ATTO|HDPro|HighPoint|driver\.stex|hp-fax|JMicron|microsoft\.MDI|print|SoftRAID" <<< $ID && printf '%s\n\t(%s)\n' "${d%/Contents}" "$ID"; done); PR "Extrinsic loadable bundles"; o=$(find /u*/{,*/}lib -type f -exec sh -c 'file -b "$1" | grep -qw shared && ! codesign -v "$1"' {} {} \; -print); PR "Unsigned shared libraries"; o=$(system_profiler SPFontsDataType | egrep "Valid: N|Duplicate: Y" | wc -l); PN "Font problems"; for d in {,/}L*/{La,Priv,Sta}*; do o=$(ls -A "$d"); PR "$d"; done; [ "$r" ] && { o=$(sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|post[fg]|x)/{print $3}'); PR "Loaded extrinsic daemons"; o=$(sudo defaults read com.apple.loginwindow LoginHook); PR "Login hook"; o=$(sudo crontab -l | grep [^[:blank:]]); PR "Root cron tasks"; }; o=$(syslog -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|find tok|n Cause: -|NVDA\(|pagin|timed? ?o' | tail -n25 | awk '/:/{$4=""; print}'); PR "Log check"; } 2> /dev/null | pbcopy; exit
    Copy the selected text to the Clipboard by pressing the key combination command-C. Then click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately, leaving the Terminal window empty. If that doesn't happen, press the return key.
    If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter your password, the script will run anyway, but it will produce less information. In most cases, the difference is not important, so don't worry about it.
    The script may take up to a few minutes to run, depending on how many files you have and the speed of the computer. Wait for the line "[Process completed]" to appear in the Terminal window.
    You can then quit Terminal. The output of the script will have been copied to the Clipboard automatically. All you have to do is paste into a reply to this message by pressing command-V again.
    Please note:
    ☞ This procedure is all copy-and-paste — type nothing in the Terminal window except your login password if and when prompted.
    ☞ Remember to post the output. It's already in the Clipboard when you see "[Process completed]" in the Terminal window. You don't have to copy the output; just paste into your web browser.
    ☞ If any personal information, such as your name or email address, appears in the output, anonymize it before posting. Usually that won't be necessary.

  • Newly deployed apex application - very slow response time reported.

    Hi, we just deployed an APEX application on January 4th. It is used up and down the east coast to track commercially caught fish. There are currently about 375 users. Most are accessing via cable or dsl. Many are complaining of speed issues. Is there something that can be done locally on their machines to help.
    The application is complex and often must process through loops of data depending on the port, species, state reqs. Each of the queries has been run through the db tool that examines how optimal they are, and all run within seconds.
    Since the system is new, we are concerned that people will become frustrated and stop using it. ANy suggestions are appreciated. It was a 2yr project and had been in a test environment for 6 months.
    thanks, Karen

    What I would suggest is, the agents could try pinging the server that you are hosting the apps on, to see how long the ping takes to return. It maybe that the server is producing the pages fine, but the traffic is getting jammed on the way to the port agent..
    Just as an example, there have been severe issues with using Oracle's hosted instance of apex in the past 6-9 months. It's not an always occurrence, but for some folks it takes FOREVER to load the applications builder or even pages in the builder. The database server is performing fine, but the app server seems to be having issues, from what I gathered in one of the last messages from Oracle on the subject..
    You could try going outside your building and accessing your app in a similar fashion that your customers do..
    Thank you,
    Tony Miller
    Webster, TX

  • Telnet from Windows PC is very slow to Solaris x86, after Net linked

    (Sorry about the re-post. I posted in the wrong group earlier)
    I got the following info from this forum, in regards to configuring my Solaris x86 to link to the Net:
    # echo 192.168.0.1 > /etc/defaultrouter
    # route add default 192.168.0.1
    # echo nameserver 192.168.0.1 >> /etc/resolv.conf
    # cp /etc/nsswitch.dns /etc/nsswitch.conf
    So I did the above steps, reboot the Solaris, and my Solaris system can link to the Net fine afterwards. But ever since it had Net access, another problem is created.
    Whenever I telnet using a command line from a Windows XP computer, it takes a long time to telnet to this Solaris system. Before, I would see the Solaris login prompt for telnet in a few seconds. Now, it's about 1 minute. Plus, if I try to use an xterminal software from that PC to link to the Solaris x86, it hangs.
    So after I undo all the 4 commands above, reboot the Solaris computer, all these problems disappear. I can telnet from my Windows PC to this Solaris system very quickly. However, I no longer have Internet access from my Solaris.
    Anyone knows how I can fix this problem? Thanks.

    It sounds like a name resolution issue. Can you post the contents of your /etc/nsswitch.conf file for us?

Maybe you are looking for