Behaviour of TM toward and extHDD vs TC?

I remember recently backing up my system to an external HDD using Time Machine, it worked very differently comparred to experiences of the past. In the past I had access to a Time Capsule, so I never thought about it, that's what the technology is for, but it died on me. So when I decided to use an external HDD I found that I could not just pause the backup, I had to let it run and because it was tethered by USB I couldn't use the MacBook because the connection was fragile and could be lost, the whole process took me over 24hrs!
I did some research and found that TM will not allow a backup to be resumed, although it will pause, when resuming TM just takes forever to carry on from the point it left that you'd be as well to just start again. My issue is that I plan to have one of the internall HDDs in a Mac Mini dedicated to TM, mirroring the other and so both of the same size i.e. 1TB.
How will TM behave to an internal HDD when backing up, it will be getting the data from an SSD, for use as my main drive.
Or, am I just imagining it?
Thanks.

Hamper wrote:
I had to let it run and because it was tethered by USB I couldn't use the MacBook because the connection was fragile and could be lost, the whole process took me over 24hrs!
The first backup does take a long time  (roughly 40-50 GB/hour via USB, overall, slower at first), but thereafter the hourly incremental backups should be small and quick.  If they aren't, something is wrong.  If so, post back with some specifics and we'll help you investigate.
I did some research and found that TM will not allow a backup to be resumed, although it will pause, when resuming TM just takes forever to carry on from the point it left that you'd be as well to just start again.
Not really.  The backup will be cancelled, of course, and when restarted TM will have to do a "deep scan" to figure out what needs to be backed up, but it doesn't copy all the same stuff again -- that's kept in an ".inProgress" package on the TM drive.  So it's not recommended, but usually not a major problem, either.
FatMac wrote:
But think about how much TM backing up you really need to do. Do you really need hourly backups and daily backups and weekly backups or would you benefit more from running the TM backup when you decide you need one?
Sorry to disagree, but in most cases it's best to let TM do its hourly backups.  If they're large or slow, something is probably wrong.  Those hourly backups will protect you best -- it's kinda like having hourly Versions for all files.  If something goes wrong (user error or sudden corruption, etc.), you've got a good chance of recovering an earlier version.
The extra backups usually don't take up any space, because all but the first of the day are deleted after 24 hours;  after a month, only one per week is kept.
And, on laptops, space permitting, if Time Machine is ON, it makes Local Snapshots, so if you're away from your external backups, you've got a week's worth of changes.  Those are expendable, automatically deleted to keep your HD under 80% full, so don't really take up any disk space.   If you turn Time Machine OFF, not only does it quit making them, but all existing ones are deleted.
For your secondary backups, take a look at Time Machine - Frequently Asked Question #27, especially the green box.

Similar Messages

  • SAP Personas: An unexpected behaviour has been detected and you have been disconnected – please log in again.

    Hallo everyone,
    We are installing Personas and facing several challenges.
    Personas 2 SP02 was installed according to instructions of Note '1848339 - Installation and Upgrade note for Personas' and configured according to the Config Guide v1.3 (rel. May 2014). The referenced notes were also applied as well as the 'How to config - FAQ' blog by Sushant.
    We are able to log on and execute transactions and perform activities successfully (e.g. SE80, SPRO, KB15, etc.).
    When trying to copy a screen the following error appears: 'An unexpected behaviour has been detected and you have been disconnected - please log in again.'
    Thereafter one can simply continue executing transactions without having to log in again.
    Please see the download of the error attached as per blog: SAP Screen Personas Support Tips – client side logging
    The HAR is unfortunately too large to attach. Are there any alternatives?
    Thank you in advance for you assistance!
    Kind regards,
    Daniel
    Message was edited by: Daniel K

    Hi,
    I have never worked on SAP PERSONA but you can try below things
    1)try to use different user or J2ee_admin since it might be same user multiple session case
    2) Try with different browser since plugins can behave unexpectedly
    3)Make entry in host file also
    4) check dev_icm logs
    5) check on ABAP side for dumps in ST22
    Warm Regards,
    Sumit

  • JComboBox - different behaviour in 1.3 and 1.4

    I have noticed that there is a difference in JCombobox behaviour in 1.3 and 1.4.
    I think it is better to give the program than explaining the issue.
    the below given program shows the difference.
    import javax.swing.* ;
    import java.awt.* ;
    import java.awt.event.* ;
    import java.util.* ;
    * Test program to show difference between
    * Combo behaviour in java1.3 and 1.4
    public class CTest extends JFrame
         private JComboBox combo1 ;
         private JComboBox combo2 ;
         public CTest()
              super() ;
         public void init()
         combo1 = new JComboBox() ;
              combo1.addItemListener( new ItemListener()
                        public void itemStateChanged( ItemEvent event )
                        if (null != combo1.getSelectedItem() && event.getStateChange() == ItemEvent.SELECTED)
                             loadCombo2(combo1.getSelectedIndex()+1) ;
         combo2 = new JComboBox() ;
              combo2.addItemListener( new ItemListener()
                        public void itemStateChanged( ItemEvent event )
                        if (null != combo2.getSelectedItem() && event.getStateChange() == ItemEvent.SELECTED)
                             System.out.println("Combo2 item selected : "+ combo2.getSelectedItem()) ;
              JPanel panel = new JPanel(new BorderLayout()) ;
              panel.add(combo1,BorderLayout.NORTH) ;
              panel.add(combo2,BorderLayout.SOUTH) ;
              getContentPane().add(panel) ;
         public void loadCombo1()
              combo1.removeAllItems() ;
              for (int iCount = 0 ; iCount <5 ; iCount++)
                   String strItem = "Item : "+iCount ;
              combo1.addItem(strItem) ;
              try
                   combo1.setSelectedIndex(0) ;
              catch(Exception e)
         private void loadCombo2(int itemCount)
              combo2.removeAllItems() ;
              for (int iCount = 0 ; iCount <itemCount ; iCount++)
                   String strItem = "Item : "+iCount ;
              combo2.addItem(strItem) ;
              try
                   combo2.setSelectedIndex(0) ;
              catch(Exception e)
         public static final void main(String args[])
              CTest app = new CTest() ;
              app.init() ;
              app.setSize(100,100) ;
              app.setVisible(true) ;
              app.loadCombo1() ;
    In jdk1.3 every time you change the selection in combo 1 there will be selection change in combo 2 also. but not in jdk1.4.
    i am not sure whether it is a bug. But surely te behaviour is different.
    any comments on this issue???

    Anil,
    I've just noticed this as well, so I had a quick look at the 1.4 sources. Quite simply, adding and removing items in a JComboBox will never fire an ItemStateChangedEvent, even if the selected item does change.
    The culprits are intervalAdded() and intervalRemoved() in JComboBox.java. Under 1.3 these methods called contentsChanged() which would then fire an ItemStateChangedEvent if necessary. Under 1.4, these methods are empty. Why? I have no idea. It seems like a bug to me, but can't see anything in the bug database about it. Hope someone from Sun can explain it.
    Regards,
    Peter

  • Differnet Charting behaviour between Java 7 and Java 8

    Hi I've developed an application with charts in Java FX and Java 7. Everything works fine, but now I've tested it with Java 8. There I can see, that something must have changed in the way a chart wil be painted.
    The following code will describe the problem. Execute it with Java 7 and Java 8 and you will see what I mean.
    package linechartsample;
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.chart.AreaChart;
    import javafx.scene.chart.LineChart;
    import javafx.scene.chart.NumberAxis;
    import javafx.scene.chart.XYChart;
    import javafx.stage.Stage;
    public class LineChartSample extends Application {
    @Override
    public void start(Stage stage) {
    stage.setTitle("Line Chart Sample");
    final NumberAxis xAxis = new NumberAxis();
    final NumberAxis yAxis = new NumberAxis();
    xAxis.setLabel("Month");
    final LineChart<Number, Number> lineChart = new LineChart<Number, Number>(
    xAxis, yAxis);
    lineChart.setTitle("Stock Monitoring");
    lineChart.setCreateSymbols(false);
    XYChart.Series series1 = new XYChart.Series();
    series1.setName("Portfolio 1");
    series1.getData().add(new AreaChart.Data(1, 10));
    series1.getData().add(new AreaChart.Data(2, 20));
    series1.getData().add(new AreaChart.Data(3, 10));
    series1.getData().add(new AreaChart.Data(2, 5));
    series1.getData().add(new AreaChart.Data(1, 10));
    Scene scene = new Scene(lineChart, 800, 600);
    lineChart.getData().addAll(series1);
    StringBuilder builder = new StringBuilder();
    // builder.append("-fx-stroke: ");
    // builder.append("#");
    // builder.append(Integer.toHexString(115));
    // builder.append(Integer.toHexString(115));
    // builder.append(Integer.toHexString(115));
    // builder.append(Integer.toHexString(100));
    builder.append("-fx-fill: ");
    builder.append("#");
    builder.append(Integer.toHexString(215));
    builder.append(Integer.toHexString(115));
    builder.append(Integer.toHexString(115));
    builder.append(Integer.toHexString(100));
    series1.getNode().setStyle(builder.toString());
    stage.setScene(scene);
    stage.show();
    public static void main(String[] args) {
    launch(args);
    What happens here in Java 8???
    Additionally I've tried to draw a simple AreaChart with a series of negative values. In Java 7 the area between the line and the X-Axis will be filled. In java 8 the area between the line and the bottom of the chart will be filled. Are there any new properties which have to set to draw it in the correct way? I've checked it with the stackedAreaChart. Here everything is fin in Java7 and Java8.
    Can somebody explain me that change in the behaviour of the charts in JavaFX 8?? Or is this a Bug??
    Kind regards

    Your code is really weird. 
    Applying a fill to the line path in a line chart is a strange thing to do.  Usually a line chart is for drawing lines not filled areas.  For filled areas, JavaFX has an AreaChart.
    Setting multiple y values for a given x value in a series is also a very strange thing to do.  Usually for a LineChart plot, the x values in the series are unique.
    I haven't tried your code on Java 7 as I don't have Java 7 installed and your code doesn't really seem like a valid test case to me anyway.  That your code got you a result you wanted in Java 7 would be more a fluke than anything else, I would guess.
    For your area chart question, please ask that as a separate question with reproducible source code and test case.
    If you really think there are bugs or regressions in JavaFX, then report them in the bug tracker after running your tests on the latest development JDK at: https://jdk8.java.net/download.html

  • Strange behaviour when setting client_info and module in v$session

    Hello,
    I've tried to set the CLIENT_INFO field in V$SESSION using DBMS_APPLICATION_INFO.SET_CLIENT_INFO but found a strange behaviour.
    Normally the forms modules seems to set the field MODULE in V$SESSION to its name. If I use DBMS_APPLICATION_INFO.SET_CLIENT_INFO the CLIENT_INFO field is set correctly but the MODULE field is set to 'frmweb.exe' instead of the forms modules name.
    I also tried to set the MODULE using DBMS_APPLICATION_INFO.SET_MODULE but then strangely the MODULE and MODULE_HASH field of the original frmweb.exe (the main applet?) entry and the entry for the forms module were the same (set to the new module name). From now on every newly opened module had 'frmweb.exe' as the module entry until I closed the forms application.
    Example:
    Entries in V$SESSION:
    -- After start of forms application there is only one entry for the process:
    PROCESS           MODULE            MODULE_HASH            CLIENT_INFO
    1596:7204         frmweb.exe        854945150
    -- When a new forms module is opened it looks like this:
    PROCESS           MODULE            MODULE_HASH            CLIENT_INFO
    1596:7204         frmweb.exe        854945150
    1596:7204         my_module         1929284615
    -- When the modified forms module that sets the client_info/module is opened this happens:
    PROCESS           MODULE            MODULE_HASH            CLIENT_INFO
    1596:7204         mod_module        3097977240
    1596:7204         mod_module        3097977240             my client info
    1596:7204         my_module         1929284615As one can see the entry of the forms application seems to be overriden (at least the MODULE and MODULE_HASH fields) but the CLIENT_INFO only changes for one of the entries?
    The following code is responsible for the changes of CLIENT_INFO and MODULE:
        -- get client info
        client_info :=
            webutil_clientinfo.get_ip_address
            || ' (' ||
            webutil_clientinfo.get_user_name
            || ')'
        -- set client info
        DBMS_APPLICATION_INFO.SET_CLIENT_INFO(client_info);
        -- get module (set action to '')
        DBMS_APPLICATION_INFO.SET_MODULE(name_in('system.current_form'),''); I really don't understand, why it does not work properly.
    Any help is appreciated!
    Thanks in advance.

    This was an application module pooling, activation / passivation issue.
    After view objects had been set-up correctly, the problem disappeared.

  • Strange behaviour whit custom JTextField and JToolTip

    Hello everyone. I hope I'm writing in the right section and sorry if I did not search for this issue but I really don't know which keywords I should use.
    I'm using NetBeans 6.1 on WinXP and JDK 1.6.0_07, I have a custom JTextField with regex validation: when you type something that don't mach regex it shows a JToolTip. This JToolTip should disappear when the text typed is finally correct, or when the textfield loses focus (see code below).
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.Point;
    import javax.swing.JToolTip;
    import javax.swing.Popup;
    import javax.swing.PopupFactory;
    public class MyJTextField extends javax.swing.JTextField implements FormComponent
    private static Popup popUpToolTip;
    private static PopupFactory popUpFactory = PopupFactory.getSharedInstance();
    private boolean isValidated = false;
    private String regEx = "a regex";
    public MyJTextField()
    this.addKeyListener(new java.awt.event.KeyAdapter()
    public void keyReleased(java.awt.event.KeyEvent evt)
    if(evt.getKeyCode()!=java.awt.event.KeyEvent.VK_ENTER)
    validateComponent();
    else if(evt.getKeyCode()==java.awt.event.KeyEvent.VK_ENTER)
    if(isValidated)
    ((Component)evt.getSource()).transferFocus();
    this.addFocusListener(new java.awt.event.FocusAdapter()
    public void focusLost(java.awt.event.FocusEvent evt)
    if(popUpToolTip!=null){popUpToolTip.hide();}
    public void validateComponent()
    if(text.matches(regex))
    isValidated = true;
    if(popUpToolTip!=null){popUpToolTip.hide();}
    else
    isValidated = false;
    if(popUpToolTip!=null){popUpToolTip.hide();}
    String error = "C'&egrave; un errore nella validazione di questo campo";
    JToolTip toolTip = createToolTip();
    toolTip.setTipText(error);
    popUpToolTip = null;
    popUpToolTip = popUpFactory.getPopup(
    this,
    toolTip,
    getLocationOnScreen().x,
    getLocationOnScreen().y - this.getPreferredSize().height -1
    popUpToolTip.show();
    }(I've cut it a bit, here's only the lines that involve JToolTip use)
    I have many of them in a form, and when the first tooltip appears (on the first textfield I type in) it never disappears, while nex textfields work just fine.It seems the first tooltip appearing can't be overwritten or something similar. If I use this same component on any other NetBeans project, everithing works without issues.
    I have some other custom components working the same way (JComboBox, JXDatePicker), and they had this "not disappearing tooltip" issue since I changed this
    popUpToolTip = popUpFactory.getPopup(this, toolTip, getLocationOnScreen().x, getLocationOnScreen().y - this.getPreferredSize().height -1);
    whit this
    popUpToolTip = popUpFactory.getPopup(null, toolTip, getLocationOnScreen().x, getLocationOnScreen().y - this.getPreferredSize().height -1);
    but if I try it on the JTextField all textfield's tooltips stay stuck there, not only the first one appeared (while other components still works fine).
    This thing is really driving me crazy. Someone has an hint (or a link to another thread) which could explain this strange behaviour?
    Thanks in advance.

    BoBear2681 wrote:
    Note that an SSCCE wouldn't require you to post any proprietary code.Hmmm... well, I'll try again to reproduce the issue and post an SSCCE.
    BoBear2681 wrote:
    That probably indicates that the problem is somewhere other than where you're currently looking.Yes, I suppose so. Maybe it's some interference between all the custom components I created, or maybe something else that apparently doesn't conern at all. If I cannot reproduce it in an SSCCE and I'll figure out what's the cause of this mess I'll post it here for future knowledge.
    Many thanks for your advices. :)

  • Error -200284, Behaviour in Execution Highlighting and Runtime Speed

    Hi
    I am having trouble with the attached VI.
    This VI reads a voltage on ai26 and it works fine if
    1) the wait in the flat sequence is 2000 milliseconds or more and execution highlighting is turned off
    or
    2) the wait in the flat sequence is zero or more and execution highlighting is turned on.
    LV reports error -200284 if I try executing 2) at runtime speed (execution highlighting turned off, wait=0). Is there a solution to change the VI in a way that the use of a wait is not necessary?
    I already checked the LV examples and it seems that the examples (on my hardware) suffer the same problem.
    Description of my task:
    I need to sample the voltage at 2000 Samples/sec. Signal observation must be 5 sec, that makes 10000 Samples in the end. No trigger needed. The USB-6259 has a buffer of length 4095 but this is not my problem since I will be doing the acquisition (with 2000 sample chunks) in the producer- and the analysis in the consumer-loop.
    My Hardware:
    I am using USB-6259, LV 8.2 and DAQmx 8.6 on a Windows 2000 Machine.
    Best regards
    Thomas
    Attachments:
    Read Analog Wfm.vi ‏34 KB

    In the attachment is the corrected VI without a wait.
    If I run this corrected VI at runtime speed, I get error -200284.
    If I place a breakpoint between the DAQmx Start and Read Task and run this VI (I will have to push the Continue-Button for the VI to finish), there will be no error.
    Why that behaviour?
    Thomas
    Attachments:
    Read Analog Wfm Correct.vi ‏32 KB

  • Strange Safari Omnibox behaviour - Automatically opens links and searches

    Okay, this has been bugging me for a while, but I haven't bothered looking for a fix until today.
    Basically, I'll open a new tab in Safari and start typing my search query or URL and after entering a few characters, Safari will automatically go to a link or perform a Google search without me hitting enter, often going to the wrong page (like a bookmark or page in the history). I can't seem to replicate this behaviour on demand, but it happens a couple of times each day.
    Sometimes, I'll type a few characters, see the result I want in the history list, and as I scroll down on my trackpad, one of the links above the link that I want to click on will open as I hover over it. My trackpad is set to register a click with the button, not a tap, so it's not like I'm accidentally tapping the links.
    Am I mistaking some feature for a bug? Does anyone else ever see this? Am I losing my sanity?
    PS. Been having this issue since, I don't know, probably around the time Safari got released with an omnibar. I tried searching on Google and on the discussions here, but I don't exactly know what to look for so I didn't find anything.
    Edit: Typo.

    mofli --
    I'm pretty sure it has something with fonts.
    He's has a wild font on there. It looks exactly like the font
    that is showing up in the three examples you linked. It looks
    kinda like a Eurostyle type font, and very close to Rimouski.
    But he needs to visually check this with his Font Book
    to see which font it is.
    Has he in any way taken out fonts in his System Folder???
    This would cause kernel panics . . .
    He can check his HD status by launching Disk Utility from his HD>Applications>Utilities folder. Ask him to click on the HD icon.
    Down at the bottom of the DU pane, it should have the SMART status
    of his HD. Most likely, it will say "Verified."
    If not, your fears for his computer failing have been confirmed.
    Did he run "repair permissions" after the update???
    If not have him run section A from Trav's tips below:
    http://discussions.apple.com/thread.jspa?messageID=971817
    From what you've told us so far, this isn't a HD failing.
    It's a permissions issue, and/or a font issue.
    At least in my humble opinion.
    Message was edited by: ~Bee

  • Strange behaviour of Mouse-Events and Range size

    Hello,
    i found a strange behaviour of the Paragraph-Ranges in Word and can't explain this myself.
    I have a add-in with a Custom Task Pane "UserControl1" and a button "Button1":
    dropbox.com/s/zz2m0out5rvds0m/word.jpg
    This is the Code for the user control:
    public partial class UserControl1 : UserControl
    public UserControl1()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    showRanges();
    private void button1_MouseEnter(object sender, EventArgs e)
    showRanges();
    private void showRanges()
    Debug.WriteLine("-------------------------------------");
    foreach (Microsoft.Office.Interop.Word.Paragraph para in Globals.ThisAddIn.Application.ActiveDocument.Paragraphs)
    Debug.WriteLine(para.Range.Start.ToString() + " - " + para.Range.End.ToString() + " | " + para.Range.Text.ToString());
    The mouse-enter and mouse-click events of the button, prints out the ranges of the current paragraphs. In this example it outputs:
    0 - 15 | The first line
    15 - 32 | And a second one
    Thats fine!
    And now the strange stuff starts: When i change something in the first line in the document like "The VERY first line" and use the button again, i got different range outputs for mouse-enter and mouse-click events.
    mouse-enter event (wrong ranges):
    -------------------------------------0 - 143 | The VERY first line
    143 - 160 | And a second one
    mouse-click event (correct ranges):
    0 - 20 | The VERY first line
    20 - 37 | And a second one
    Why the hell I get wrong Ranges when I use the mouse-enter event??? (When I enter the button with mouse a second time, it shows the correct ranges again).

    Hi Torben,
    What is Word version?
    According to my test in Word 2013, the code you provided works fine for me.
    I changed the code as below:
    private void showRanges(string eventname)
    Debug.WriteLine(eventname + "-------------------------------------");
    foreach (Microsoft.Office.Interop.Word.Paragraph para in Globals.ThisAddIn.Application.ActiveDocument.Paragraphs)
    Debug.WriteLine(para.Range.Start.ToString() + " - " + para.Range.End.ToString() + " | " + para.Range.Text.ToString());
    private void button1_MouseEnter(object sender, EventArgs e)
    showRanges("Button MouseEnter");
    private void button1_Click(object sender, EventArgs e)
    showRanges("Button Click");
    The document:
    The output:
    The result is same.
    There might be something else at the end of the first line.
    If you change current document to .zip and find document.xml, what does it look like?
    Here is my document.xml:
    <w:body>
    <w:p w:rsidR="001347D9" w:rsidRPr="001511D8" w:rsidRDefault="001511D8">
    <w:pPr>
    <w:rPr>
    <w:sz w:val="72"/><w:szCs w:val="72"/>
    </w:rPr>
    </w:pPr>
    <w:r w:rsidRPr="001511D8">
    <w:rPr>
    <w:sz w:val="72"/>
    <w:szCs w:val="72"/>
    </w:rPr>
    <w:t>The VERY first line</w:t>
    </w:r>
    </w:p>
    <w:p w:rsidR="001511D8" w:rsidRPr="001511D8" w:rsidRDefault="001511D8" w:rsidP="001511D8">
    <w:pPr>
    <w:rPr>
    <w:sz w:val="72"/><w:szCs w:val="72"/>
    </w:rPr>
    </w:pPr>
    <w:r w:rsidRPr="001511D8">
    <w:rPr>
    <w:sz w:val="72"/>
    <w:szCs w:val="72"/>
    </w:rPr>
    <w:t>And a second one</w:t>
    </w:r>
    <w:bookmarkStart w:id="0" w:name="_GoBack"/>
    <w:bookmarkEnd w:id="0"/>
    </w:p>
    <w:sectPr w:rsidR="001511D8" w:rsidRPr="001511D8">
    <w:pgSz w:w="12240" w:h="15840"/>
    <w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/>
    <w:cols w:space="720"/>
    <w:docGrid w:linePitch="360"/>
    </w:sectPr>
    </w:body>
    Is there anything different?
    I have uploaded the sample document for your test, please check:
    https://onedrive.live.com/redir?resid=AD77AE76D657E280!166&authkey=!AFfIP0eVTDQdMAc&ithint=file%2cdocx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Curious behaviour on mac, iphone and ipad

    Hi all,
    i found a curious behaviour on my mac, iphone and ipad.
    all devices trying to connect to the ip address 192.168.0.11. I'm not in this segment of ip address range. All devices are in the 192.168.44.x/24.
    The funny thing is, that the source port (e.g. 192.168.44.70:56218) is trying to connect to the same port at the adress 192.168.0.11:56218
    I've had never used this adress range of 192.168.0.0...
    Can anyone tell me what this behaviour is for?
    regards
    softcake

    How do you know this is happening?

  • ReadXML behaviour different in EntityImpl and VIewRowImpl?

    Hello,
    while experimenting with BC4J's XML import/export features and I encountered a strange behaviour:
    When I call readXML(Node, 0) on a ViewRow and then commit the transaction, the data is updated properly in the database, but when I call readXML(Node, 0) directly on an Entity object, and then commit, nothing happens!
    Using the debugger, I looked at the entityObject's data (the "mStorage") and it is properly updated by readXML. However it is not posted to the database...
    Any idea why this is happening?
    Thanks for any help
    Rémi
    PS: I'm currently using Jdev 9.0.3.1 on an oracle 10g database.

    Hi Deepak,
    No the entity attributes are just normal persistent attributes...
    I've looked into it a bit further, and it seems that the readXML method of EntityImpl doesn't update the Entity's state to MODIFIED. (whereas the readXML method of ViewRowImpl does change the entity's state)
    Is this intended?
    Is there a way to force the entity state to "MODIFIED"?
    Thanks for any help
    Rémi

  • HT4623 I've installed the update and even resorted to the restore function. My phone doesn't work not. My screen shows a graphic of the usb connector with an arrow pointing towards and Itunes icon. It will do nothing else! HELP

    I've installed the iPhone update and now my phone doesn't work. I even chose the restore function. It went through all that and it still just shows the graphic of the usb and an arrow and the itunes icon. Help!

    Yes, I connected the phone to my iMac which is the original computer it is backed up on. From iTunes I had no option except to restore, which I did. Still no luck. Still just see the graphic. :-(

  • Unexpected behaviour on SharePoint 2013 and task sync

    hello, i deleted the work management service application due to issues with try to get my tasks to sync, as i deleted it the "sync to outlook" had changed to "Connect to outlook" on my tasks area and i can now sync tasks to my outlook.
    i was under in the impression that the work management service application was needed for tasks sync to occur the reason why i deleted it was due to the error,
    We weren't able to sync your tasks. This could be because your mailbox is on an Exchange server that isn't supported for syncing tasks. Please contact your administrator for more help.
    sync turned off.
    i couldn't make any of the solutions work to fix my task sync errors.
    any one help me with some insight into this? and ideally the original error i was getting
    many thanks
    BPDZenith

    The error message you are getting would suggest that you don't have Exchange 2013.  The default task sync only works with Exchange 2013.  But there is a farm level feature that can be turned off to go back to syncing tasks the way it worked with
    Exchange 2010.  Then you can go to a particular task list and use the "Connect to Outlook" button in the ribbon to sync that list with Outlook.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Unexpected behaviour with "require password" and screen saver

    In 10.6.x, I checked "Require password after sleep or screen saver begins" and after the invoking the screen saver (via a hot corner) moving the mouse or typing on the keyboard brought up a password dialog.
    In Lion, this is what happens with the same settings:

    That got posted somehow before I finished. Here is what happens:
    The log in screen is displayed.
    I select an account and log in.
    The log in screen is displayed again.
    I am logged in, but have obviously been logged out in the meantime.
    This looks like a bug to me.

  • Very strange behaviour of table values and event case

    Hi all
    i'm becoming crazy on my .vi
    i want to change the second col values on click from yes to no and from no to yes simply by a click.
    The problem is that this changing happens after some clicks on an old position.
    Try to click on some "no" on the file that is attached.
    Thanks a lot!
    Dario
    http://www.sd-studio.it - web design agency
    Attachments:
    Ecu_wizard.vi ‏101 KB

    The issue took me a sec to understand but here it is.  You are trying to change the value during the mouse up event.  And you do... however you have just selected that cell in the table.  So LabVIEW is waiting for the user to change the value, and in this case ignoring your change.  All you need to do is add a property node to the end of that sequence that is Key Focus and set it to false

Maybe you are looking for