All my JVM does is full GC's

I have a simple application, it doesn't use much memory.
In the beginning, as the heap expands, I get my incremental GCs.
But eventually, I get Full GCs, and after that all I get is full GCs. No matter how much memory I give my app.
My app doesn't require a lot of memory. After GC it rarely goes above 8M.
I've run it with everything from -Xmx16m up to -Xmx64m.
When I PrintGCDetails, or look at it through jconsole, the tenured generation is always full.
$ java -version
java version "1.5.0_11"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
Java HotSpot(TM) Client VM (build 1.5.0_11-b03, mixed mode)
java -Xmn16m -Xmx16m -verbose:gc -XX:+PrintGCDetails
[Full GC [Tenured: 2047K->2047K(2048K), 0.1542593 secs] 16831K->5629K(16832K), [Perm : 24339K->24339K(24576K)], 0.1543772 secs]
If I run with 64M, it just takes longer before the Full GC, but I never get the incrementals again, and the Tenured space is still 2MB.
java -Xmn16m -Xmx16m -verbose:gc -XX:+PrintGCDetails
[Full GC [Tenured: 2047K->2047K(2048K), 0.2037613 secs] 61055K->7943K(61056K), [Perm : 27706K->27
706K(27904K)], 0.2038618 secs]
I'm assuming I'm getting the Full GCs because the Tenured generation is full. But I can't seem to find a way to change the size. I tried NewRatio, but it didn't seem to have any affect at all.
This isn't really a performance issue, but it is a pedantic issue as I don't think I should be doing Full GCs all of the time, that just seems like an "unhealthy" or at least "out of balance" JVM/Application configuration, so I'd like to get the GC working better in a healthier way with more incremental GCs rather than always doing Full GCs.
Any hints would be appreciated.

Why Xmn == Xmx? (Maybe just for experimental test....)
As gc log says, your tenrued size is always only < 2M size. Why? because you set new generatio size == max heap size. JVM set the tenured size to its minimum.
Tenured size is so small that your young objects located in new space cannot be promoted to tenured space. So JVM decides to start full gc - to clear all the garbages.
For this reason, it is unresonable and meaningless to set young generation size > tenured generation size. It might cause full gc continuously.
Additionaly, keep in mind that too big young generation sometimes has tendency to make problems related to full gc.

Similar Messages

  • JVM doing frequent full and partial GC and still not freeing up any memory.

    Hi,
    We are using sun JVM under Tibco Active Matrix Service Grid's OSGI container. We are observing a strange behaviour where JVM is doing full/partial GCs continuously without freeing up much memory. Old generation is getting filled up and the young generation is almost empty. We have a web service deployed on this JVM. All the requests to the service are stateless so all the objects created are short lived and should be immedietely available for GC. Please see below the heap size and the GC arguments which we are using.
    # Increase the default maximum heap size.
    java.heap.size.initial=4096M
    java.heap.size.max=6144M
    -server -XX:PermSize=128m -XX:MaxPermSize=256m -Xloggc:gc.log -verbosegc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+UseParallelGC -XX:+MaxGCPauseMillis=100 -XX:GCTimeRatio=5 -XX:+UseTLAB -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/opt/home/tibcoadm/heapdump.log
    We need to know why continuous full GC is not able to free up any memory in old generation ?

    Did you try 121 VM instead of 117. GC algorithm in 12 is much better than
              117.
              - Prasad
              Kirk Fritsche wrote:
              > Hi,
              >
              > I am using WLS 4.5.1 service pack 10 on Solaris 2.7.
              > We have 8 servers on one machine running under java 1.1.7 with 128/196
              > min/max memory each.
              > We use statelesss session beans only.
              >
              > One test case we have uses 36 clients processing 200 interations of
              > various transactions.
              > On numerous occasions I have seen the percent free after garbage
              > collection slowly decrease.
              > Normally the servers have 86% free, but sometimes (on one server) this
              > goes down 1-6% each time GC occurs.
              > This continues until it gets down to 30-50% free after GC and then it
              > will go back up 90% free.
              >
              > The problem is that as it has less and less free, the execute queue
              > length grows and GC occurs
              > every 30-40 seconds instead of 2-3 min like the other servers.
              >
              > Some servers never get this, and we use round-robin on the cluster, so I
              > am not looking at our code.
              > Otherwise I would expect it to affect every server.
              > This problem seems to go from server to server for no particular reason.
              >
              > Has anyone had any experience with this?
              >
              > Thanks,
              >
              > Kirk
              

  • How does jconsole know of all monitored JVMs in system?

    When you run jconsole, the tab named "local" lists JVMs running and their PIDs. By what mechanism is it able to 'know' which JVMs are running that have been started with the arguments that enable JMX management?
    Does jconsole connect to JVMs or to MBeanServers? (Assume each JVM has multiple MBeanServers, and each MBeanServer has multiple domains.)
    Also, what's the difference between using the 'remote' and 'advanced' tabs to connect to a JVM? They both have usernames and passwords, but while the 'remote' tab has a host and port, the 'advanced' tab has a URL that contains a host and port within it. So what's the difference - when would you pick one method of connection over another?
    Thanks.

    If jconsole connects to MBeanServers rather than
    JVMs, then how can it tell the difference between
    multiple MBeanServers that have been started by a
    single JVM?JConsole connects to a given JMX connector server which is associated with a given MBeanServer at creation time.
    For example, if I have a simple application (i.e. one
    JVM) that starts up two MBeanServers in its main
    method, using
    MBeanServerFactory.createMBeanServer(name). To start
    the application, you run the JVM with the
    com.sun.management.jmxremote and
    com.sun.management.jmxremote.port variables.
    How will jconsole know to differentiate between the
    two MBeanServers? After all, there's only one JVM -
    and it's been started with only one port number.In your example JConsole will not see any of your MBeanServers. It'll see the platform MBeanServer which is the one used by the out-of-the-box management agent.
    The next question I have is regarding the JVM - does
    any JVM that's started locally show up in the "local"
    tab of JConsole (because the JVM is always
    instrumented by default - true?), or does it only
    appear if you run it with the
    com.sun.management.jmxremote variable?The new Attach API in JDK 6 allows JConsole 6 to show all the JVMs running on the local machine although you will only be able to connect to the ones running on JDK 6 (and JDK 5.0 if started with the com.sun.management.jmxremote or com.sun.management.jmxremote.port system properties).
    JConsole 5 only shows the JVMs running on JDK 5.0 and started with the com.sun.management.jmxremote or com.sun.management.jmxremote.port system properties.
    Have a look at the link below for more detailed info:
    http://java.sun.com/javase/6/docs/technotes/guides/management/index.html
    Regards,
    Luis-Miguel Alventosa
    Java SE JMX/JConsole development team
    Sun Microsystems, Inc.
    http://blogs.sun.com/lmalventosa/

  • TS3186 My docking station wont play my ipod..... the ipod works fine on its own but when I try to play via my hifi I have to put the sound full wack to be able to hear it & its not very lound at all. It does not respond with the remote control either!! Th

    My docking station wont play my ipod..... the ipod works fine on its own but when I try to play via my hifi I have to put the sound full wack to be able to hear it & its not very lound at all. It does not respond with the remote control either!! The sound is ok if I play CDs & respond to remote control fine... The hifi & docking station are Sony

    1) When I go to the apple.com website my computer will either be really slow or freeze my whole system down to where I have to reboot my computer again. This does not happen all the time but when it does operate it is molasses slow.
    By any chance, are you uswing Kaspersky security software?
    If so, see:
    [With Kaspersky Internet Security 2011 installed on my computer the website apple.com is imaged incorrectly. What should I do?|http://www.kaspersky.com/support/kis2011/all?page=14&qid=208282422]

  • Re: does the full cold backup of rman include onlinde redologs?

    Hi,
    does the full cold backup of rman include onlinde redologs?
    So that at the time of recovery when i restore the database the online redologs also restored to that point?
    Please kindly add your suggestions. I read in 10g database in mount state while taking RMAN Cold backup as the all the oracle processes are down we cant copy the online redologs.
    Am I Correct if not please any one answer me why the online redologs are not copied.
    Thanks in Advance
    Sai

    976630 wrote:
    Hi,
    does the full cold backup of rman include onlinde redologs?No.
    So that at the time of recovery when i restore the database the online redologs also restored to that point?No.
    >
    Please kindly add your suggestions. I read in 10g database in mount state while taking RMAN Cold backup as the all the oracle processes are down we cant copy the online redologs.
    Am I Correct if not please any one answer me why the online redologs are not copied.No. They are not needed because the only valid backup for a cold (or noarchivelog mode database) backup is a consistent backup. Since the backup is already consistent there are no changes to apply.
    The online redo logs are (re)created/reset by the "resetlogs" clause when the database is opened.
    >
    Thanks in Advance
    SaiEdited by: Mark Williams on Jan 7, 2013 10:32 PM - Looks like Hemant replied whilst I was typing in my response.

  • HT4859 Is backing up over iCloud not using iTunes the same as doing a full backup on iTunes?

    My recent laptop has broken, I had to format it and now when I try downloading iTunes again it doesnt work at all, I have tried ridiculous amounts of times. I am going to send my phone off for repair and I need to know if backing up over iCloud via the iPhone backs up the same contents as doing a full back up on iTunes.
    Thanks!

    Should i just run a full back up?
    Yes.

  • Time Machine Does Excessive Full Backups

    Time Machine used to just backup changed material on a hourly basis. It seems that recently every time I look at the progress indicator it is trying to do a full backup of my entire hard drive. Any ideas why?

    Have you recently done a restore?
    I have the same problem. I did a full restore, and TM did a full backup afterwards. This is a "documented feature". Then it did skims every hour. However, if I reboot, it does a full backup the first time after the reboot. It's done 5 full backups (50 GB each) in the past 5 days. I can't afford to shut down my Mac until I figure this out. I only have 170GB of free space on my Time Machine drive.
    Is there any way to see how big each backup is, and delete un-needed ones?
    I'd really like to figure out what causes this problem, before Time Machine starts deleting old stuff I want backed up to make room for all these wasteful new backups.

  • Repaired permissions, now TM doing a full backup?

    Hi, intelligent user who doesn't have much advanced knowledge concerning what Repairing Permissions even means here.
    So I'm planning on replacing my Macbook Pro's HD, and I just finished making a full bootable backup onto a 200GB FW drive using Super Duper, and checked the "Repair Permissions first" option. I figured that having a latest Time Machine backup (1TB Time Capsule) would make sense as well, so before powering down to unscrew the case I did a Back Up Now. It scanned the entire computer and decided that it would backup all 70 GB fresh. I'm assuming this has something to do with having repaired permissions, but I don't quite know what that means. It may be something similar to what recently happened to me, when I erased my whole computer and refreshed from Time Machine, and then on the next backup it did everything over again instead of updating (for that backup I can still browse dates before that happened as long as I start at the root drive).
    Anyone know what I could do to fix this?

    Brian wrote:
    We have to be careful here: there are three different scenarios:
    New computer or logic board. Time Machine identifies your computer by it's +Media Access Control address+ (MAC address), embedded in the hardware of the logic board. There is a way that some folks have gotten around this on Leopard after a new logic board, but it's tedious and very easy to mess up (I did that, twice!) per the link in #C8 of Troubleshooting. (It's very dangerous on a different Mac).
    That was automated for Snow Leopard, resulting in the Re-Use prompt mentioned in #B5 of Troubleshooting. But, as #B5 specifies, Time Machine usually still does a full backup; the advantage is, Time Machine will delete the old backups normally.
    New drive on the same Mac (per the link you provided). I don't believe that works on Snow Leopard, and I've not seen a hack specifically for Snow Leopard posted here.
    Full restore (from Time Machine, a "clone", or otherwise) to the same drive on the same Mac. This almost always results in a new, full backup. An Apple engineer said that would stop with Snow Leopard, but obviously didn't. Some real techie UNIX guru decided there ought to be a way to do it; he posted a two-page log here a few months ago, of altering all sorts of things via Terminal, converting UUIDs to hex, etc., and claimed to have made it work. But he did it only as an exercise, and even he wouldn't recommend it, even to expert UNIX types.
    . . . I suppose the best way to save space on my Time Capsule (it now has at least 3 copies of my entire system with only very minor differences in the existence of some files) would be to make sure I have all the files I will ever want to have backed up, then delete the old records, which is something I presume wouldn't be too hard, make a fresh backup, then delete whatever I don't think I need right now, knowing it will all be found by scrolling back to July of 2010?
    I'd have to agree. It just isn't worth the hassle, or the risk of damaging something that you might not notice for a long time. I have no problem hacking around with most things, but not my backups.
    Depending on whether Time Machine made new sparse bundles, it may not be too tedious to delete the old backups. See #12 in Time Machine - Frequently Asked Questions (or use the link in *User Tips* at the top of this forum).

  • I go to play on a game on my iPad it will load the game up and a minute later will go to a blank screen and then back to all my apps.does it everybtime? Why is that? What do I need to do to stop it?

    I go to play on a game on my iPad it will load the game up and a minute later will go to a blank screen and then back to all my apps.does it everybtime? Why is that? What do I need to do to stop it?

    1. Close all inactive apps in the Task Bar. Double-click the Home button and hold apps down for a second or two and tap the minus sign to close app.
    2. Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple Logo

  • Installed HP Officejet 4100 All-in-one does not appear in Control Panel printer selection window.

    My HP Officejet 4100 Series 'All-in One' DOES NOT APPEAR in the Control Panel window even after several re-installs. The diagnostics indicate that the 4100 is not connected and dos NOT point to any path for a solution.
    Attempts to download a current Driver, ( or re-load the 4100 "software" ), WILL NOT work because the 'help' page states the driver already comes with the 4100 software and therefore does not provide for any download update, (driver or software) for the 4100 printer.
    I have reinstalled from the original Disk for the 4100 and also attemped install with Windows Update requested driver. Nothing works.

    Hi there @Past77 
    Welcome to the forums
    I read your message about your Officejet 4100 not showing that it's connected, and that you have attempted to run the Windows Update to see if that would help get the printer working again. You are correct that this model does not have a downloadable driver for Windows Vista, so your best bet would be to try running the Print and Scan Doctor tool, to see if it can kick the printer into gear and have it functioning again.
    If the tool does not work, I would then recommend looking in to a printer upgrade. Consider giving us a call to see what your options are with HP.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Best wishes to you,
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • If I select multiple images to apply a change to all Aperture it does so only with the first selected. Why?

    If I select multiple images to apply a change to all openings it does so only with the first selected. Why?

    You probably have Primary Selection only on.
    Aperture identifies the images you’ve selected by displaying them with a white border. When you select a group of images, the actively selected image, called the primary selection, appears with a thick white border and the rest of the selected images appear with thin white borders.
    Primary Only button: Click this button to make changes to the primary image selection only.

  • I want to make all my caller id pics full screen how do i do that? When i download a picture from my phone it makes it full screen then it goes back to the small photo in the upper right hand corner how do i make them stay full screen help please:-)

    I want to make all my caller id pics full screen how do i do that? When i download a picture from my phone it makes it full screen then it goes back to the small photo in the upper right hand corner how do i make them stay full screen help please:-)

    @Naiks, having suffered through unsuccessful synching attempts for Calendar and Contacts myself, l would suggest you try the following:
    UNINSTALL iCloud control panel from your PC. Seems silly, but do it.
    Go into Outlook, and look at the very top menu. Click FILE, then ACCOUNT SETTINGS, then click the popup box.
    You will see a list of all your email accounts. Make sure that ONE of them has a checkmark against it. If not, select the account your want as your default, and click "set as default.
    Exit out of Outlook and reboot your machine.
    Now reinstall iCloud, check CALENDAR and CONTACTS, and do as instructed when prompted.
    Reboot for good luck and now launch OUTLOOK. All that remains is to locate your iCloud Contacts and Calendar files, and make them your default.
    IMPORTANT: Don't panic if you can't find your contacts -- they're there. Click CONTACTS and you'll see you have several available contact files. Locate the one label "iCloud" in grey type. Right-click on it, select PROPERTIES, then click the Outlook Address Book tab. Check the box that says something like "Make this my default Outlook Address Book." Keep clicking "apply" and "okay" until you've exited out of the dialog box maze.
    You may have to do something similar with your Calendar files. I dd not, but if you need to, do it.
    Everything should now sync pretty seamlessly.
    I didn't have the exact same problem as you, but my dilemma was close enough. Good luck!
    Arthur P. Johnson

  • Itunes 11.2 ,all it ever does is crash!! Constantly.

    I have updated Itunes to 11.2 and now all it ever does is crash!! Constantly. Please help ressolve

    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: iTunes.exe
    Application Version: 11.2.0.115
    Application Timestamp: 53755cb7
    Fault Module Name: AirTrafficHost.dll
    Fault Module Version: 17.351.6.52
    Fault Module Timestamp: 52fc12ed
    Exception Code: c0000005
    Exception Offset: 000024a4
    OS Version: 6.0.6002.2.2.0.768.3
    Locale ID: 2057
    Additional Information 1: fd00
    Additional Information 2: ea6f5fe8924aaa756324d57f87834160
    Additional Information 3: fd00
    Additional Information 4: ea6f5fe8924aaa756324d57f87834160

  • I want to prevent MyDay from starting up when I switch on.  I have followed all instructions for doing this, but to no effect.  I have unlocked and relocked.

    I use an Macbook from 2006 with OS X 10.7.5
    MyDay starts up every time I switch on.  I don't use it, so want to remove it from the list of programs which start automatically.  I have followed all instructions for doing this, and have of course unlocked and relocked the relevant page in Systems Preferences, but the instruction never 'sticks', and MyDay still starts every time.  Anyone know what to do?

    Check StartupItems...
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    /Library/StartupItems
    Click Go. If you see any reference to MyDay, delete it. That does not delete the app Just keeps it from launching when you startup your Mac.
    Just to be sure, you checked System Preferences > Users & Groups > Login Items   ??
    Unlocking or locking the padlock icon only prevents other users from changing your preferences.

  • Errors encountered while doing BCC Full deployment in the Applying phase

    Errors encountered while doing BCC Full deployment in the Applying phase. The stack trace is as below:-
    **** Warning    Fri Aug 02 09:43:24 BST 2013    1375433004207   /atg/epub/PublishingRepository  Using default JDBC type for: project:tar814 could not find this column in the table's meta data
    **** debug      Fri Aug 02 09:52:54 BST 2013    1375433574278   /atg/epub/DeploymentServer      Run first apply phase: true
    **** debug      Fri Aug 02 09:52:54 BST 2013    1375433574279   /atg/epub/DeploymentServer      Switch switchable CA datasources:
    **** debug      Fri Aug 02 09:52:54 BST 2013    1375433574279   /atg/epub/DeploymentServer        isDeploymentRollback(): false
    **** debug      Fri Aug 02 09:52:54 BST 2013    1375433574284   /atg/epub/DeploymentServer        Current Target live datasource name: DataSourceA
    **** debug      Fri Aug 02 09:52:54 BST 2013    1375433574285   /atg/epub/DeploymentServer        CA switching datasource: /atg/commerce/jdbc/ProductCatalogSwitchingDataSource_production
    **** debug      Fri Aug 02 09:52:54 BST 2013    1375433574285   /atg/epub/DeploymentServer          Current live datasource name: DataSourceB
    **** debug      Fri Aug 02 09:52:54 BST 2013    1375433574285   /atg/epub/DeploymentServer          Current offline datasource name: DataSourceA
    **** debug      Fri Aug 02 09:52:54 BST 2013    1375433574286   /atg/epub/DeploymentServer          The current CA live datasource is pointing at the Target offline datasource. No CA switch necessary.
    **** debug      Fri Aug 02 09:52:54 BST 2013    1375433574287   /atg/epub/DeploymentServer      Switchable CA datasources switched.
    **** info       Fri Aug 02 09:52:54 BST 2013    1375433574307   /atg/epub/DeploymentServer      DirectSQLReplicationAdapter: Starting FIRST phase data transfer.
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver SQL Statement Failed: [++ReplicationSQL++]
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver INSERT
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver INTO ndcatalog2.extn_block_link
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver      (
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        renderer_id,
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        link,
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        block_id
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver      )
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver SELECT
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        t1.renderer_id,
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        t1.link,
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        t1.block_id
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver FROM
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        extn_block_link t1,
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        extn_block t2
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver WHERE t2.asset_version =
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        ( SELECT MAX ( asset_version )
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver          FROM extn_block
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver          WHERE
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver            (
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver              (
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver                checkin_date <= ?
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver              )
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver            )
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver            AND branch_id = ?
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver            AND block_id = t2.block_id
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver        )
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver AND t2.version_deleted = ?
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver AND t2.branch_id = ?
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver AND t1.asset_version =  t2.asset_version
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver AND t1.block_id = t2.block_id
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver -- Parameters --
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver p[1] = {pd: checkin_date} 2013-07-30 10:23:57.867 (java.sql.Timestamp)
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver p[2] = {pd: branch_id} 10500 (java.lang.String)
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver p[3] = {pd: version_deleted} false (java.lang.Boolean)
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver p[4] = {pd: branch_id} 10500 (java.lang.String)
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver [--ReplicationSQL--]
    **** Error      Fri Aug 02 09:53:12 BST 2013    1375433592737   /com/screwfix/content/block/BlockRepository-ver         java.sql.SQLSyntaxErrorException: ORA-00904: "RENDERER_ID": invalid identifier
    Please note that we are migrating from ATG 2007 to ATG 10.0.1...Also we are doing deployment in this new environment for the first time only.
    Thanks a lot
    Pijush

    Hi Pijush,
    The exception towards the end of the stack trace says the RENDERER_ID is an invalid identifier. the Oracle error 00904 indicates the column name must be wrong. Can you verify the repostiory xml on the BlockRepository and check the column name.
    Regards,
    Srikanth

Maybe you are looking for

  • Adobe Creative Cloud installation error

    When I am installing the Adobe Creative Cloud, it's message appears as follows: "Error. There is another installer at the moment. Please remove to continue installing, error code 87". What can I do to resolve this issue and continue to install the pr

  • I cant use my nano in itunes why

    im trying to use my nano in itunes for some reason  i suddenly cant

  • Cover appearing incorrectly (newbie question)

    Hi, I'm creating my first epub-using EPUB 3, making it reflowable, so it should be pretty straightforward. I've got most everything working, including the TOC. It's great. But the cover is not exporting in the expected way. When I open the epub in iB

  • Get rid of Message Light blinking.

    On the Cortelco 9125 phone, press 3 after retrieving message to delete the message and the light will no longer flash until the next new message is left by caller. Press 2 to save the message.

  • Interactive report showing vertical grid lines

    Has anyone adjusted an interactive report so that it shows the vertical grid lines? I see the horizontal lines by default but I am thinking the vertical lines will make my data easier to read. Just can't figure how to do that.