Ttcserver restarts when there are more than 5 c/s connections

Hi,
I am having some problem with C/S connection.
When more than 5 c/s connections are connected to datastore, ttcserver restarts.
No applications are running. Only tried to connection with c/s mode.
Message logs are like below.
## tterrors.log
2010-04-21 15:52:56.36 Warn: : 4891: TimesTen Daemon Release 11.2.1.4.0.tt1121 started.
16:11:46.18 Warn: SRV: 4902: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
16:11:46.18 Warn: SRV: 4917: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
16:11:46.18 Warn: SRV: 4925: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
16:11:46.18 Warn: SRV: 4913: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
16:11:46.18 Warn: SRV: 4921: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
16:11:46.18 Warn: SRV: 4909: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
16:11:46.29 Err : SRV: 4926: EventID=99| ttShmCreate: shmget(1560567862, 1048576, flags) failed with system error 17
## ttmesg.log
16:11:45.16 Info: SRV: 4925: EventID=16| Connect succeeded from client: jjwas1 (was1); IP address: xxx.xx.xx.82; Client PID: 4143; DSN: tt; UID: dba
2010-04-21 16:11:46.18 Info: : 4891: maind 6: socket closed, calling recovery (last cmd was 8)
16:11:46.18 Warn: SRV: 4902: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
2010-04-21 16:11:46.18 Info: : 4891: Starting daRecovery for 4896
16:11:46.18 Warn: SRV: 4917: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
2010-04-21 16:11:46.18 Info: : 4891: Finished daRecovery for pid 4896.
16:11:46.18 Warn: SRV: 4925: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
2010-04-21 16:11:46.18 Info: : 4891: maind 10: socket closed, calling recovery (last cmd was 9)
16:11:46.18 Warn: SRV: 4913: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
16:11:46.18 Warn: SRV: 4921: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
2010-04-21 16:11:46.18 Info: : 4891: Starting daRecovery for 4896
16:11:46.18 Warn: SRV: 4909: EventID=99| Main server has unexpectedly exited; child server exiting and client connection terminated
2010-04-21 16:11:46.18 Info: : 4891: 4896 ------------------: TimesTen Server exited
2010-04-21 16:11:46.18 Info: : 4891: Spawning '/memdb/TimesTen/tt1121/bin/ttcserver'
2010-04-21 16:11:46.18 Info: : 4891: Spawned new process, idx 5, handle 0x133e=4926
2010-04-21 16:11:46.18 Info: : 4891: Finished daRecovery for pid 4896.
2010-04-21 16:11:46.19 Info: : 4891: child 4896 gone, terminated with signal 11, core dumped
When i faced it at first, thought shared memory will be a problem. But enough physical memory and enough shmmax(or other kernel).
Also created other datastore with large size of perm size and worked ok.
Any idea why this is happening? Seems like log mesg with -verbose mode does not gives any clue to me....:(
* x86-64bit Solaris10
* ttversio : TimesTen Release 11.2.1.4.0 (64 bit Solaris/x86)
Best regards,

Hi Adam,
Yes, I opened a SR with this issue.
Was wondering anyone else had a similar exprience.
regards,

Similar Messages

  • Joining 2 related records using PL SQL in Apex - Problems when there are more than 2 related records?

    Hi
    I am combining 2 related records of legacy data together that make up a marriage record.  I am doing this in APEX using a before header process using the following code below which works well when there are only 2 related records which joins the bride and groom record together on screen in apex.  I have appended a field called principle which is set to 'Y' for the groom and 'N' for the bride to this legacy data
    However there are lots of records where in some instances there are 3, 4 , 5, 6 or even 1 record which causes the PL/SQL in APEX to not return the correct data.  The difference in these related columns is that the name of the bride or groom could be different but it is the same person, its just that from the old system if a person had another name or was formally known as they would create another duplicate record for the marriage with the different name, but the book and entry number is the same as this is unique for each couple who get married.
    How can I adapt the script below so that if there are more than 2 records that match the entry and book values then it will display a message or is there a better possible work around?  Cleaning the data would be not an option as there are thousands of rows of where these occurrences occur
    declare 
         cursor c_mar_principle(b_entry in number, b_book in varchar2) 
         is 
              select DISTINCT  id, forename, surname, marriagedate, entry, book,  formername, principle
              from   MARRIAGES mar 
              where  mar.entry   = b_entry
              and    mar.book = b_book
              order by principle desc, id asc; 
         rec c_mar_principle%rowtype;
    begin 
    open c_mar_principle(:p16_entry,:p16_book)  ;
    fetch c_mar_principle into rec;
    :P16_SURNAME_GROOM   := rec.surname; 
    :P16_FORNAME_GROOM   := rec.forename;
                   :P16_ENTRY := rec.entry; 
                   :P16_BOOK :=rec.book;
    :P16_FORMERNAME :=rec.formername;
    :P16_MARRIAGEDATE :=rec.marriagedate;
    :P16_GROOMID  := rec.id;
    fetch c_mar_principle into rec;
    :P16_SURNAME_BRIDE   := rec.surname; 
    :P16_FORNAME_BRIDE   := rec.forename;
                   :P16_ENTRY := rec.entry; 
                   :P16_BOOK :=rec.book;
    :P16_FORMERNAME :=rec.formername;
    :P16_MARRIAGEDATE :=rec.marriagedate;
    :P16_BRIDEID  := rec.id;
    close c_mar_principle;
    end;

    rambo81 wrote:
    True but that answer is not really helping this situation either?
    It's indisputably true, which is more than can be said for the results of querying this data.
    The data is from an old legacy flat file database that has been exported into a relational database.
    It should have been normalized at the time it was imported.
    Without having to redesign the data model what options do I have in changing the PL/SQL to cater for multiple occurances
    In my professional opinion, none. The actual problem is the data model, so that's what should be changed.

  • When there are more than 20 bookmarks in a folder, sort settings are not saved

    I have several bookmark folders that contain more than 20 bookmarks each. If I apply a sort to any of these folders, the bookmark sort is lost after I close the browser. If I reduce the number of bookmarks to less than 20, or create a subfolder and move bookmarks to it, the sort remains between sessions.

    There are other things that need your attention.
    Your above posted system details show multiple Java Console extensions.<br />
    You can uninstall and remove Java Console extensions, you do not need them to run Java applets.
    See:
    * http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    Disable the Java Quick Starter extension: Tools -> Add-ons -> Extensions
    * Control Panel -> Java -> Advanced tab -> Miscellaneous -> Java Quick Starter (disable)
    See:
    * http://www.java.com/en/download/help/quickstarter.xml - What is Java Quick Starter (JQS)? What is the benefit of running JQS? - 6.0
    You may also want to reset some excessive connection settings (about:config) that show in your More system details list. Website Administrators usually do not like such tweaks.
    network.http.max-persistent-connections-per-server 102
    network.http.pipelining.maxrequests 30

  • Netflix iPad app: Can't scroll seasons when there are more than nine (9)

    Using the latest rev of the Netflix iPad app, I go to watch a TV series like South Park or Top Gear (UK). If I want to watch episodes from another season/series, I tap on the appropriate dropdown. Since the dropdown only shows nine seasons, and South Park and Top Gear both have more than nine, I need to scroll to see the rest. However, when I attempt to slide my finger up/down on the list of seasons, it does not move/scroll.
    I've made sure I'm on the latest rev of the Netflix iPad app, I've deleted the app and reloaded it, and I've reported this issue to Netflix. Netflix claimed they have not heard of it before.
    I'm on the first iPad (hardware), for what it's worth.
    Hope someone gets it fixed!
    Thanks,
    ljfrench

    Just called netflix and reported same issue.  Son is trying to scroll down to seasons past nine on south park and family guy and only scrolls screen in background and not drop down menu of seasons.  Reported this to netflix and was told they have never heard of it before  
    Went on to explain I tried this with my iphone 4, wifes iphone 3 and my sons ipod touch.  All with the same result.  Both daughters also have iphone 3 and will check tomorrow, but i'm sure the same result. 
    Workaround is to go to website and choose season and episode there which then opens in the netflix app.  Huge pain though.  Disappointing they still act like this doesn't exist.

  • Custom package layout problem when there are more than 6 pages

    When I add a seventh page to a custom package layout for printing whatever changes that are made to that page take affect on page 1 not on page 7, i.e. if a I rotate a cell on page 7 the affect is not seen on page 7 but it is on page 1 which messes up the layout on page 1, and if I add an eighth page any changes made to it are seen on page 2 and so forth.  How do I prevent this so changes made to pages after page 6 are independent of the earlier pages?

    There are a number of Bugs in Firefox that can cause that to happen. A few of those Bugs have been fixed for Firefox 4.0, but the developers decided not to "backport" those fixes to 3.6.x or 3.5.x for some reason.

  • What is the best way to empty my iPhoto trash when there are more than 1,700 photos in it?

    I never realized there was a Trash in iPhoto.  Fortunately, I was reading a discussion on another iPhoto topic, and read that emptying iPhoto trash with more than 100 photos in it may mess up the database.  Any suggestions for how to delete 1,7000+ photos from the iPhoto trash?

    Make sure you have a good backup and then right click and empty trash.
    If the database gets corrupted, you can hold CMD OPT while clicking on iPhoto in the dock and get the options to rebuild.
    Regards,
    Captfred

  • Taskbar previews are not shown when there are more than 20 tabs across all Firefox windows unless tabs are in groups.

    System details: Windows 8.1, Firefox 34.0.5.
    Until today, I have not used the Tab Groups function. Today I just used it in troubleshooting this issue.
    I noticed that when I have lots of Firefox windows open, I can't see taskbar previews for all the open tabs. The taskbar previews only show the active tab for any specific Firefox window. After some investigation I found that if I have 20 or fewer tabs open (in one Firefox window or across multiple Firefox windows) I can see taskbar previews for all the tabs. More than 20 tabs and the taskbar previews change to show only the active tab for each Firefox window.
    After a little more investigation I found that I can see more than 20 taskbar tab previews if I use the Tab Groups function. I don't need to actually organize my tabs into groups, just to invoke the Tab Group function in each window. Trouble is, the tab groups do not survive after closing Firefox. I think this is probably because of an extension I use called Session Manager. Since I am not ready to give up the extension, I wonder if I can change the taskbar preview behavior to show more than 20 tab previews in the taskbar without using the tab groups function.
    Thanks in advance for any suggestions.

    I am not entirely sure, but this menu should change that preview in your OS:
    Control Panel > Taskbar > Taskbar Properties > Jump Lists change the number from 10 to the number of tabs
    If it doesn't please see Windows support for help.

  • PE9 Organizer (mac) - thumbnails disappear when there are more than 5 columns

    The thumbnails in my Organizer are slow to load, and if I move the slider bar to the left to show more thumbnails they are replaced with the hourglass, and the comment 'building thumbnails' appears bottom left. The thumbnails do not reappear unless I increase the size to five columns or less.
    I have disabled media analysis in preferences; I have run a repair on the catalogue; I have selected all the photos and selected 'update thumbnail'. None of this has helped.
    I am running PE9 on a Mac, and have about 20,000 photos in my catalogue.
    Can anyone help?

    Until the Thumbs are completely generated I have the same problem.  After they are all generated all is okay.  This only happens after I bring in very large folders of photos.  Also, look at the space just to the right of the date in the bottom left corner of the screen.  If the software is busy you will see a spinning wheel.  Any time it is spinning the software will be very slow.

  • Importing From Excel file will not import assignments correctly where there are more than one assignment per task

    I am trying to import an excel file ... see below.   It appears if you select both Tasks and Assignments tables it will not allow you to do this, says file is not in a project recognized format.  So I import Tasks tab first then run the
    wizard again and import the assignments tab while selecting merge with project option.   This works with one exception:
    If there are more than one assignment per task.  It does not merge in the 2nd assignment, only the first.
    Is there a way to import a task with 2 or more assignments?
    Background
    To figure out what the format for the file needed to be, I started with a MPP file and from project saved as Excel and selected the "Project Template" file.  Now I am trying to import that XLS to see how it works
    ID
    Active
    Task Mode
    Name
    Duration
    Start
    Finish
    Predecessors
    Outline Level
    1
    Yes
    Auto Scheduled
    DS001
    3 days
    June 17, 2014 8:00 AM
    June 19, 2014 5:00 PM
    1
    2
    Yes
    Auto Scheduled
    MT001
    3 days
    June 17, 2014 8:00 AM
    June 19, 2014 5:00 PM
    2
    3
    Yes
    Auto Scheduled
    CT001
    1 day
    June 17, 2014 8:00 AM
    June 17, 2014 5:00 PM
    3
    4
    Yes
    Auto Scheduled
    CT002
    2 days
    June 18, 2014 8:00 AM
    June 19, 2014 5:00 PM
    3
    3
    5
    Yes
    Auto Scheduled
    DS002
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    1
    6
    Yes
    Auto Scheduled
    MT002
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    2
    7
    Yes
    Auto Scheduled
    CT003
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    4
    3
    Task   Name
    Resource Name
    % Work Complete
    Work
    Units
    CT001
    Engineer1
    0
    8h
    100%
    CT002
    Engineer2
    0
    16h
    100%
    CT003
    Engineer1
    0
    8h
    100%
    CT003
    Engineer2
    0
    8h
    100%
    Andrew Payze

    Andrew,
    I did a quick test using your example although I didn't include the Predecessor or Outline Level fields to keep things a little simpler. I imported the Excel data into a new Project file with a single import of task and assignment data. It is very important
    to set up the Excel Workbook correctly. On Sheet 1 I entered the task data (Name, Duration, Start). I did not include the ID or finish date as that is redundant - Project generates its own ID and will calculate the finish date based on the start date and duration.
    On Sheet 2 I entered the assignment data basically just as you show it except I didn't include the Units.
    The data imported as expected.
    John

  • Minimize the count of cubes when there are more number of cubes

    Hi All:
    Need your inputs on reducing the count of cubes when there are more number of cubes in any project.
    On which basis we can downsize the count of cubes? For example,if there 30 cubes in same region,I want to reduce them to ,say 20 cubes.
    Please share your thoughts.
    Regards,
    Upendra.

    You need to evaluate all of your existing cubes and see if there is any overlap in dimensionality that would allow you to combine cubes. Such as if one is actuals and another cube is budget for the same data, possibly you can combine those. Or as someone else suggested based on Business Units (If the other dimensions allow it. Perhaps conflicting Account or other structures won't allow it. )
    However you have to then balance combining cubes against larger cube size which could impact calc time and other performance issues.
    Its all a balancing act.
    Look at where it makes sense to combine them. Only you know your environment enough to state if they can be combined or not.

  • There are more than 70 new iPhones in boxes have been stolen so there are ways to locate them please ur support urgent

    There are more than 70 new iPhones in boxes have been stolen so there are ways to locate them please ur support urgent

    i have informed the police but they said the device could
    be tracked  if it turn on  by its depend on serial numbers
    Re: There are more than 70 new iPhones in boxes have been stolen so there are ways to locate them please ur support urgent 

  • Why Am I Getting The "Insufficient Space On Device" Message When There's More Than Enough Space?

    I have the HTC Droid Incredible 4G LTE (ICS/4.0). It has 3.63 GB phone storage remaining, and the sd card has 7.35 GB remaining. Forget the sd card. How can my phone, or any phone for that matter, get the error message of "insufficient space on device" when there's more than enough space on the device? Thank you in advance.

    Turn off your phone.
    Hold power - and volume up I believe  It might be down.
    From there you can select recovery and then hold vilume up and tap power to open the menu.
    There should be an option there to clear system cache.

  • Airport disconnects when there's more than one device

    I've got a really weird problem.. I have an Apple Airport Extreme 802.11n 3rd Generation. Software version 7.6 When more than one device connecrts to the base station it will disconnect everyone and then all devices will go into a connect/disconnect loops. Rapidly. This occurs only with wireless device. I watched the radar on my iPhone (5.1), Macbook running Snow Leopard, Macbook Air running Lion, and iPad 2 (5.1) blinking on and off, on and off. The only way to resolve this is to just have ONE person connect at a time.
    Things I've tried:
    1) Updating all software on all devices
    2) Updating Airport firmware
    3) Reboot and then restoring factory settings on the Airport when the reboot didn't work
    4) Turning off encryption (WP2)
    5) Making sure there are enough IP's for all the devices, turning off robustness, making sure the router is visible.
    Because I know someone will ask this: The Airport sits atop a credenza in the open air. Nothing on, around, or above it. It's been in this position for months with no problem. It's not overly warm to the touch and I even used compressed air to blow out the vents (just in case) when this problem began.
    I read once upon a time that the router gets a cache built up and that can cause these types of issues, but I have no idea how to delete said cache or even if it exists. It's just odd this only happens when more than one wireless device tried to connect to the network.
    Thoughts?

    I've resolved this! For some odd reason Apple won't let me denote this so I'm adding this reply. Turns out the problem was POWER related. The Airport was plugged into a power strip with several other devices. I unplugged all of those leaving just the Airport and the problem has not returned. If I add on all the devices, regardless of the power strip used, the problem returns. So it appears the Airport was just not getting enough power.
    I've got it on a UPS now and the problem has not returned.

  • Line items missing in RFC table when they are more than one!!!

    Hi All,
    I am doing a scenario where i map a proxy from SCM to a RFC in R/3.
    The problem i am facing is my proxy has more than 1 line item for a purchase order but in R/3 the RFC table contains only the first line item.
    Is there any special mapping that i need to do to capture multiple line items in a PO.
    Regards,
    Jayaram.M

    Hi,
    When you do the mapping, test it with the payload and see whether you are able to generate multiple line items in the target.
    Next check how you are passing it to the RFC, whether as a single line item or as a table.
    If in the mapping you were not able to see the multiple line items, check your context changes accordingly.
    Accordingly you can check.
    Regards
    Krish

  • BB stripping recipient name/address when they are more than one in TO or CC

    Have a very perplexing problem. My client cannot see more than one
    recipient name and/or address at the TO and CC lines on his
    blackberry, but he sees them ALL in Outlook.
    I can send to his [email protected]
    account, and he
    sees them in Outlook AND on his Blackberry.
    When I send to him on his [email protected] , he only sees 1
    name and/or address at the TO and CC line on his blackberry, but sees
    ALL recipients names and/or address in Outlook?
    I have looked at the messages in Exchange Message Tracking and I can
    see them hitting the server with the additional recipients (after the
    first name) removed when the SEND TO address is
    [email protected] .
    On some emails, he may have been the third name in the SEND TO list,
    and when he sees them on his Blackberry, it only shows the first
    persons name so if it wasn't him, he doesn't even see his name listed?
    There is not filter on his account and he is the only one with this
    problem. He has a Blackberry Curve.
    Rogers is no help....they just keep saying it's Exchange.
    Any ideas?

    what happens when that person does a "reply to all" from his/her blackberry device ? who are the different recipients ?
    can that person send a message to several To: from his/her device ?
    did you do the soft reboot or the hard reboot ?
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

Maybe you are looking for

  • Disappointed By e4200

    I had heard so many good things about e4200. But one BASIC feature i was looking in MY NEW ROUTER was Full URL logging. To keep an eye on my younger brother from accessing wrong sites, i need to moniter his visited sites. And i am greatly disappointe

  • Screen protector on an iPad with retina display?

    What are your thoughts on using a screen protector on an iPad with retina display? Does this defeat the purpose of having a high quality display, or does the protection it affords despite the less sharp screen?

  • Downgrading to 7.0.1 did not solve the white screen issue.

    Hello - A little background - in early January, with a thesis presentation due, I delayed upgrading to Quicktime 7.0.4 until after the thesis - this was a good idea, because now after upgrading and downgrading again, I've got problems. I made a video

  • PLM 9.3 installation - app server error

    I am trying to install PLM 9.3 , and it pops for Application server to be installed. After checking the software requirements, found it requires both Oracle App server (IAS) and a Oracle Weblogic app server. Could anyone clarify, why the two differen

  • Removing HP Pavilion M7 1015DX Keyboard

    I'm having issues trying to remove the keyboard from my HP Pavilion M7 1015DX laptop. I followed the steps in the service guide, however the keyboard is just not coming out as easily as it should. Any tips? I feel like ripping it out, but that would