Strange behaviour msi 7236 with e7400

Hello,
Is the msi-7236 supporting the e7XXX Intel c2d family ?
I've just switched from an e6400 to an e7400 and I've noticed some strange behaviours, mainly
the fact that the performances are the same with both processors ( and even a bit reduced with
the e7400 ! ).
Another big problem is in the bios CPU configuration section: instead of 6 options + C1E hidden features
there is only 2 + the C1E hidden features. Consequence is simple: impossible to setup Intel speedstep or
the other common options.
Additionally there is also a problem when displaying the frequency at the boot-time ( it displays 346xx MHz !)
and in cpuz, the coefficient displayed is 6 ( instead of 8 I guess for this entry level cd2 model)
As the latest msi 7236 bios is now 2 years old (v3.7), I guess this is the motherboard which is
responsible for this weird behaviour.
So anyone can help me with theses questions ?

945P Neo3, bios is version 3.7, to be accurate, internal nomenclature is 'MS 7236 revision 2.2'.
With ChristalCPUID I've succeed into putting the coefficient @10.5 so now the performances of the e7400 are as I was expecting, but the bios is still initializing the CPU with the lowest coeff.
Advanced features (64 bits instructions, SSE4 ,speedstep etc) are still not recognized.
I've also noticed that the e7400 is not listed on the 'officially supported CPU list' motherboard webpage.
How can it work partially without system failure ?
Would it be possible that 45nm are supported by this (old) MotherBoard even if it's not clearly specified by MSI ?

Similar Messages

  • Strange Behaviour of MII with Datediff built in function in BLS

    Hi,
    Here's one strange thing happening with MII 11.5 when using datediff built-in function in BLS
    I will create a Local Variable called Dur of type Double.
    and then Assign datediff(startdate,enddate)/3600 value to Dur Variable
    where startdate = 05/01/2009 07:00:00 and enddate = 05/03/2009 07:00:00
    both start and end dates are in proper xml formats.
    When I evalute this expression I get a value of 48 hrs which is right but when I assign the same thing
    to Dur variable and when I check value of Dur in Tracer it shows me as 47 hrs.
    This is true for all the datediff values greater than 28 hours till 28 hrs I get exact results but after 28 hours I see this pattern where I get output = (Actual hrs - 1)
    Please note I checked the same thing in MII 12 but not found any such strange issues.
    Any thoughts on this odd behaviour .........
    Regards,
    Adarsh S P

    Hi Daina,
    First thanks a lot for help, I need bit more assistance..
    I found Service Pack 5 and Service Pack 6 from Archive folder.
    But our SAP MII version says 11.5.3 b66 so here are couple of things I would like know
    1) I believe we are running on SP 03. is my understanding right?
    2) If yes then can we install directly the SP 06 on top of SP 03?
    3) If No then do we need to first install SP 04, then SP 05 and then SP 06?
    4) where will I find SP 04?
    Regards,
    Adarsh

  • Strange Behaviour on DataGrid with ArrayCollection as DataProvider

    I have a Datagrid with an ArrayCollection as DataProvider, the arrayCollection is partially generated by a remoteObject call, the dataprovider seems to works at least until I try to edit the field...
    By the RemoteObject I only receive an ArrayCollection with the field `ip`, but the datagrid looks for the fields ip, check and save...
    If I add/edit this new field it works, but only under particular condition
    The DataGrid:
    <s:DataGrid id="datagrid" left="10" right="10" top="136"
           dataProvider="{listaIPCheck}" bottom="10" requestedRowCount="4">
              <s:columns>
                    <s:ArrayList>
                         <s:GridColumn dataField="ip" headerText="Asset"/>
                         <s:GridColumn dataField="check" headerText="Inventory"/>
                         <s:GridColumn dataField="save" headerText="Salvataggio"/>
                    </s:ArrayList>
               </s:columns>
    </s:DataGrid>
    The Script:
       [Bindable]private var listaIPCheck:ArrayCollection;
        private function ro_resultHandler(event:Event=null):void
          listaIPCheck = new ArrayCollection();
          listaIPCheck = ro.getListUpdate.lastResult;
          heap = 0;
          // Read Below {POINT #1}
          init3();
        private function init3():void
         // Read Below {POINT #2}
         if (heap<listaIPCheck.length)
            // omitted the initialization of the process p
            p.addEventListener(NativeProcessExitEvent.EXIT, onExit);
            try{
              p.start(startupInfo);
            }catch(e:Error){}
        private function onExit(e:NativeProcessExitEvent):void {
            // Read below {POINT #3}
    Here is my code, now as you can see there are 3 line where I wrote to read below...
    Let's assume to put this simple `for` instead of the commented line (once at a time)
        for (var k:Number=0;k<listaIPCheck.length;k++)
          listaIPCheck.getItemAt(k).check = "checkVal";
          listaIPCheck.getItemAt(k).save = "saveVal";
    This code always work in the 3 points, so at the end of the call the ArrayCollection is always filled with the new values, but the datagrid refresh the items only in POINT #1 and POINT #2
    Why not in Point #3???

    Thank you Amy, but adding the properties in the server side did not work...
    The workflow of the program is that:
    1) I get the ArrayCollection (listaIPCheck) contatining some information  (function ro_resultHandler)
    2) I start an external process and grab the output data (function init3)
    3) read and use the data from the process (function onExit)
    Now the problem I have is regarding the refresh of the datagrid, this datagrid has the ArrayCollection (listaIPCheck) as DataProvider.
    So:
    - If I put the for loop instead of the comments  ( // Read Below {POINT #1} ) or
    ( // Read Below {POINT #2} )  it works, the ArrayCollection is updated and the datagrid is refreshed
    - Whereas if I put the for loop instead of  ( // Read Below {POINT #3} ) , it won't work.. or at least, the ArrayCollection is correctly updated, but the datagrid is not refreshed at all and I have to use .refresh()

  • Strange Behaviour: Inserting Rows with OrdVideoDomain using JDeveloper

    Dear Sirs...
    i created two tables each containing OrdVideoDomainField.
    i use the same function to fill the rows with values. the code is like this:
    ViewObject V=GetViewObject(V);
    Row R=V.CreateRow();
    byte b[]=new byte[10];
    OrdVideoDomain O=new OrdVideoDomain(b);
    R.setAttribute("f",O);
    R.setAttribute("name",AnyName);
    V.insertRow(R);
    R=null;
    GetTransaction.postChanges(); // gets the appmodule and then gets the transaction object within and finally posting the change
    GetTransaction.commit();
    When i use the function of the viewobject A, all the data is stored correctly when dealing with table A. But when dealing with table B, all the data are stored correctly but the OrdVideoDomain field is filled with null. i get no error at all.
    i checked the names of the fields in the tables, and they are correct.
    i tried to upload files into both tables and these are working perfectly fine.
    i tried to get the data from both tables and they are working perfectly fine.
    the problem is only when i store data programatically into the table b.
    does any one have a similar problem?
    how to solve it?
    i am using ADF UIX in jdeveloper 10g 10.1.2 with oracle database 10g release 2 and both are under windows.
    thanks for any help in advance
    best regards

    Sorry, i have found the problem, it is a programming error
    best regards

  • Strange behaviour of HDMI: with most tv's works fine, with LG I get video, but no sound.

    HP dv6 with an ATI HD 5650.  With most Tv's ,the notebooks works great when connected trhough HDMI.  But with my LG tv, I dont get sound (video is perfect).  Same LG tv works perfect with other notebooks.  I have tried different cables, reinstalling drivers, and of course configuring Playback to HDMI as default.  I have spent hours with HP support but they think its a compatibility issue.  

    I have done the changes. The DVD in PAL format works (video and audio).
    However, in my opinion a user should get a warning about the standard discrepancies when iDVD starts and not wait until a burn process starts. Moreover, I think iDVD should not lose any information by the import of iMovie projects depending on the project settings (preferences), since a user can always switch between PAL and NTSC.
    Anyway, thanks so much for your help!
    Juergen

  • Very strange behaviour and exception with af:tree

    Hello,
    I deployed an ADF taskflow (which contains a af:tree) inside Webcenter portal...
    When I add this taskflow to a page, the tree renders fine.. But when I expand a node (which contains just one element under it) and then collapse it and switch to a different tab, I am getting a Null Pointer Exception..
    Attached is the log information
    java.lang.NullPointerException
         at oracle.adf.view.rich.change.FilteredPersistenceChangeManager.addComponentChange(FilteredPersistenceChangeManager.java:138)
         at org.apache.myfaces.trinidad.change.ChangeManagerWrapper.addComponentChange(ChangeManagerWrapper.java:44)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.addAttributeChange(UIXComponentBase.java:1108)
         at org.apache.myfaces.trinidad.component.HierarchyUtils.__handleBroadcast(HierarchyUtils.java:50)
         at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:237)
         at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
         at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:148)
         at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:241)
         at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:889)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:379)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    To make the problem more clear, if I collapse every node of the tree as last operation and then click on a command link (which should redirect me on another page), then the following happens according to the value of the "immediate" property of the tree:
    1. If I set the immediate ="true" on the tree it does not throw this exception. But if the last action in the screen is collapsing a node and I click on any other action (clicking on a different tab) it does not trigger the action. But if I click on the same action once again, then the action is triggered successfully and things work as expected again.
    Basically, it looks like if the last action in the screen is collapsing a node, then we have to click on a action (like clicking on a tab) twice for the action to be triggered.
    But if I set the immediate="false", then it throws the null pointer exception.
    2. if immediate = "false" I get an exception, and the application crashes:
    Any help would be appreciated. Using Jdev 11.1.1.6.

    Any suggestions, pls

  • P43-Neo Strange behaviour with LG IDE/PATA DVD Burner attached

    Hello, I have spent several hours installing an OS on my new MSI P43 Neo-F v1.0 Bios v1.9:
    - 1x 1000 GB SATA HDD Seagate
    - 1x DVD Burner LG IDE/PATA HL-DT-ST_DVDRAM_GSA-H42N Firmware RL01
    - 4GB OCZ Gold
    - MSI RX2600 Graphic Card
    - Bequit! Power Supply 350 Watt
    Trying to boot from the DVD Drive works, but either XP not Vista could make it to the setup screen.
    - Vista stops after some seconds with an unexpected I/O error.
    - XP Setup just crashes and dumps register values.
    Boot from USB memory stick (DVD still attached but no DVD in) lets you enter the setup and select the HDD as intall target. But, if you click "next" it gives you a message that Vista could not verify if a suitable system disk is installed.
    I could only solve the problem by completely disconnecting the GSA-H42N DVD Burner from the IDE/PATA connector.
    I could install Vista now from USB.
    After Vista was installed I reconnected the GSA-H42N DVD Burner to the IDE/PATA connector and could install software etc.
    Anyone being able to comment on this very strange behaviour ?
    In conjunction with other boards I did not encounter issues like this with that LG DVD Burner.
    It has shown that with the MSI P43 Neo F the LG GSA-H42N is unable to boot any CD/DVD. Linux for example stops booting with image crc check error.
    I have now swapped the LG GSA-H42N with an GSA-H10N from my other machine and it can boot any CD/DVD from it - everything runs fine.
    The LG GSA-H42N now runs with my other machine (with an Asrock P43 DE motherboard) also without any problems it can boot any CD/DVD from it
    Thank you,
    CPU

    Please post your Full System Specs with PSU specs amps.
    >>Posting Guide<<

  • View Master mode strange behaviour with jpg files

    Hy all,
    I'm using Aperture, and I'm tweakin a lot the SW to discover all secrets ....
    I'm really concerned about a strange behaviour of the SW in view mode.
    If I open a jpg file, do not apply ANY modification, and apply the "show master" command (pressing M), there's a subtle behaviour :
    *the images get sharper !!!!*
    It behaves as if an "edge sharpening" was applied !!!!!!
    With _RAW files this thing doesn't happen at all._
    Even stranger, if I zoom to full definition (by pressing Z), and toggle between normal view and "show master" view, the immage remains the same !
    The effect is not so evident with all images, but sometimes it is !!
    Anyway, I expect not to have such kind of things with a professional SW.
    With professional cameras and good quality files it's really annoying not to beeing sure what's the REAL content of the jpg image.
    Has anyone noted this thing ? Is there a reasonable explanation ?
    The only one I tried to figure out is the following : may be Aperture applies some kind of resampling algorithm with jpg files (bicubic, bilinear, etc).
    May be this resampling is not applied with 100% magnification, as weel as with raw files.
    But it's only my guessing. Now, I'm tweaking other viewers and other SW to understand what's the real jpg image stored in the file : the blurer one form normal view or the sharper one with "show master" mode.
    I stress once again : of course, the jpg file I'm talking about have no settings at all, just imported and toggled with M button.
    Thanks in advance.
    Regards,
    Enzo

    Hy,
    I'm afraid I'm not been clear.
    The problem is this :
    1) jpg image opened in normal view mode, no zoom, (no quick preview, of course) : image with a certain amount of blour
    2) jpg image opened in show master mode, no zoom, (no quick previre, of course) : image SHARPER with respect with the previous.
    No edit applied from import, so "show master" command shouln't apply any change in rendering, should it ?
    The only thing I said on 100% view is that such difference (between normal mode e show mastermode) is not present with 100% magnification.
    That was the issue.
    Enzo

  • Strange behaviour with Safari.

    Very strange behaviour with Safari this morning.   Pages loading piecemeal or partially.   The content only becomes viewable after the cursor has passed over the area.   Have cleared caches and reported it but I'm wondering if this is a local matter here in the UK.   Anyone suffering similar problems?    Firefox is responding perfectly normally.

    I see a reply has come back via a previous post.   As I am trying to get a response to this one I shan't reply there but I should point out that for me, this is an isolated problem.   I do use open DNS but with no track history of problems there , I can't blame that.
    In the last few minutes normality has returned.

  • IPhoto: strange behaviour with preview thumbnails

    Is there a simple way in iPhoto 8 to rebuild the thumbnail database?
    I recently noticed a strange behaviour iPhoto 8 has with previews: In some of my event categories, iPhoto does not display the correct preview thumbnail of the picture, but a preview thumbnail of another event. When I click on the thumbnail, it reloads the appropriate preview and it does not happen again - with that picture. Also, if I double click an event to open it, the small thumbnail of the event's key photo that is to be displayed in the title bar (next to the All Events button) is not always correct.
    Thank you for your help!
    Stefan

    I have similar problems (lately) with iPhoto 6.0.6 -- thumbnails do not equal the images they 'thumbnail' of.
    Sometimes when it opens, it (recently) asked me to rebuild the thumbnails, but not always.
    Can I force a thumbnail rebuild using the command you gave - Apple-option while opening iPhoto? In iPhoto 6.0.6 this primarily forces a new selection of a library.

  • Strange behaviour with Slideshow placement since upgrade to 3.2 from 3.1

    Hello, since I upgrade from 3.1 to 3.2, I have some strange behaviours but in particular with the placement of a slideshow on a new page.  It is not displaying in the same position as I have in in Design.  It is way off and going up over my menus when I look at it in Safari or Chrome.  Does anyone know how to fix this or could it be a bug?

    Ben,
    When you upgrade, only apex_030200 will be created and that will use the tablespace you specify. It does not have to be the same one used by flows_030100.
    Scott

  • Strange behaviour with smart music list in iTunes

    I don't know how is the name of this list in english. In portuguese iTunes calls "Lista Inteligente". So, I eddited a list to show all musics never played up to 100 months ago. If I click on a music in this list, before it plays, the music disappear from the list as it would be played and nothing will be played. And so one, the next and etc. No date is shown in "last play" but the music isn't anymore to see in this List.
    This list works well for many years but suddenly I have this strange behaviour.
    could it be something wrong with new update? Now I have iTunes installed 11.3.0.54

    Click the gray disclosure triangle in front of the iPod touch name.
    Thus I cannot do any functions with the music on my iPod - such as delete songs, update song info, etc.
    I would suggest making any changes to songs in iTunes and then transferring the songs to the touch.
    You can create playlists and autosync on lythos playlists.
    Then add/delete from those playlists, update items in iTunes then plug in the touch to sync it.

  • Strange behaviour when using connection pooling with proxy authentication

    All
    I have developed an ASP.NET 1.1 Web application that uses ODP.NET 9.2.0.4 accessing Oracle Database 8i (which is to be upgraded to 10g in the coming months). I have enabled connection pooling and implemented proxy authentication.
    I am observing a strange behaviour in the live environment. If two users (User 1 and User 2) are executing SQL statements at the same time (concurrent threads in IIS), the following is occurring:
    * User 1 opens a new connection, executes a SELECT statement, and closes this connection. The audit log, which uses the USER function, shows User 1 executed this statement.
    * User 2 opens the same connection (before it is released to the connection pool?), excutes an INSERT statement, and closes this connection. The audit log shows User 1, not User 2, executed this statement.
    Is this a known issue when using connection pooling with proxy authentication? I appreciate your help.
    Regards,
    Chris

    Hi Chris,
    I tried to reproduce your complaint, but was unable to. I didnt use auditting however, just a series of "select user from dual" with proxy authentication. You might want to see if you can put together a small complete testcase for this and open a sr with support.
    Cheers
    Greg

  • Strange behaviour with nested overflow headers

    Hi there,
    I have a strange behaviour with nested overflow headers. I have a hierarchy with some dynamic tables an several headers for the hierarchy steps. When the table entries lead to an page overflow, I would assume, that all parent headers will be shown. But unfortunatley only the last (the deepest in the hierarchy) defined overflow header will be shown. Here you can see a quick example of it. (http://www.nemonon.de/HeaderProblem.xdp)
    Any help would be very welcome.
    Thanks and greetings,
    Joerg

    That will sure work for some requirements and thanks for the ideas. But this would fail for the second table. Perhaps my example xdp only shows the behaviour of the nested overflow headers and it´s structure is reduced to show that. The real situation is a bit different. The parent containers also contain some other content. The Problem is not the table...I've just chosen it to produce some content and another nested header. Just try to uncheck the overflow header of the table. This will lead to, that the next defined header (in this case "HeaderThree" is shown. When you go on by also disabling that header, the next one will be shown...and so on. This shows, that the headers for their own are functional, but they fail in combination.
    Greetings,
    Joerg

  • KYF exhibits strange behaviour with decimals

    Hi everybody,
    a DEC-key figure (IOBJ maintenance: additional properties->BEx->decimal places: Nothing Defined) exhibits strange behaviour regarding the treatment of decimals.
    When looking at the data in the cube (InfoCube maintenance->content) the value is 2,086.
    In the query the result is 2.0900000000 (%).
    Now comes the problem: in BPS (in the buffer) the value is 2,08. The system simply truncates the figure!  This is the value which is also used in the FOX and produces the wrong result.
    I need the system to sensibly round the values correctly to 2 decimals OR work with an additional decimal place.  How can this be done?
    Thanks for any input,
    Martin

    Hi,
    In the manual planning, while designing the layout, there is a setting in data columns tab called decimals. You have to insert 2 under this. Then in the layout data will be displayed with 2 decimal places.
    Hope this helps.
    Regards,
    Isha

Maybe you are looking for

  • How can I share contacts from my iPad2 to my wife's new iPad Mini

    How can I share/copy contacts from my existing iPad2 to my wife's new iPad Mini

  • Retrieve themes present in a map request or frame

    Hi all, I wanted to know if its possible to retrieve a list of the manually added jdbc themes that are present in a certain map request or map frame? If possible how do we achieve this. Thanks in advance, Avinash

  • This page cannot be displayed - web connectivity problem

    Just purchased an HP laptop with Windows 8 and IE 10. I am connecting to my wireless connection because I can login and use Yahoo messenger, but cannot access any websites.  When open IE, get the error:  This page cannot be displayed.  There is an op

  • Transaction support

    Hi, I'm inserting multiple rows into a table from a large XML document posted to a XSQL page. I would like the update to be handled like "all or nothing". Is it possible to handle the inserts as one transaction ? null

  • AE animated bg Compressor DVDSP

    Anyone else out there using After Effects to create animated backgrounds for DVDSP? I can't seem to figure why the rendered QT file from AE looks great but then looks horrible when imported into DVDSP. To be more specific: a) Text looks horribly alia