Bind with inverse warning

hi,
To learn how the bidirectional binding works I made a couple of small snippets based on a textfield and a button. The objective is that with both editing and clicking on the button the string str changes. The button can be seen as the model that changes the value of the var in the other direction.
(println is just for debug)
This works:
var str = "" on replace{
  println (str)
mainStage.scene.content = [
TextBox {
     text: bind str with inverse
     columns: 12
     selectOnFocus: true
SwingButton {
        translateX:50
     text: "ok"
     action: function() { str = "hello" }
]I made an object containing a string which also works:
class test{
    var str = "" on replace {
        println (str)
def mytest = test{ };
mainStage.scene.content = [
TextBox {
     text: bind mytest.str with inverse
     columns: 12
     selectOnFocus: true
SwingButton {
        translateX:50
     text: "ok"
     action: function() { mytest.str = "hello" }
]Finally I tried to go one level further and made the string come from another object this works but I get a warning:
class test{
    var t : test1 = test1{} ;
class test1{
    var str = "" on replace {
        println (str)
def mytest = test{};
mainStage.scene.content = [
TextBox {
     text: bind mytest.t.str with inverse
     columns: 12
     selectOnFocus: true
SwingButton {
        translateX:50
     text: "ok"
     action: function() { mytest.t.str = "hello" }
warning: Target of variable select expression is not re-evaluated for bind with inverse. You may want to rewrite like the following:
def obj = <expression-without-bind>;
def x = bind obj.variableName with inverse;
        text: bind mytest.t.str with inverseWhen I change the var t into def this doesn't solve the warning. And it's needed to have the str variable as a var because in real apps this will be coming from the model logic that changes this value. So why showing this warning anyway , I used def for mytest object so that the actual object can't be changed ?
Edited by: guyvo on Jan 9, 2010 9:39 PM

hi stuart,
Thanks for reading and give your comments. I red a few of your blogs , interesting stuff and yes maybe you must write one dedicated on the bind with inverse !
In my app the model is mapped from XML fields into a few class objects. I instantiate these classes at startup and then read and parse my XML data into my objects. The objects will remain living until the script exits. As I bind my view with the model classes and visa versa with a double bind inverse, I think I can be pretty sure these wont garbage collected because of the double links.
Make sense that the "def temp" is only a local variable of the HorizontalBar and becomes no part of the class declaration itself. I just use this def to avoid the warning.
I even tried to add a function with a variable when creating the object without a problem although kind a useless :
HorizontalBar {
                    var y;
                    function foo (){ y = 10;};
                    disable:bind dis;
                    def temp = c.light[j];
width: 200
height: 20
posx: 10
posy: 10 + y
valmodel: bind temp.ivalue with inverse
-G                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Variable binding with javafx.ext.swing.SwingSlider

    My first javafx program consists of a slider and a text box, the text box displays the current value of the slider. The problem is the text box does not display anything when the program just starts up, but only gets populated once I change the value of the slider. I am not sure what I am doing wrong. Here is the code:
    import javafx.scene.control.*;
    import javafx.scene.*;
    import javafx.stage.*;
    import  javafx.ext.swing.*;
    import javafx.scene.layout.*;
    var BPMSlider = SwingSlider {
        minimum: 10
        maximum: 250
        value: 60
    }; //BPMSlider
    var BPM = bind "{BPMSlider.value}";
    var BPMDisplay = TextBox {
         text: bind BPM
        columns: 3
    }; //BPMDisplay;
    Stage  {
        title: "Slider";
        width: 1000
        height: 500
        visible: true
       // Set the scene
       scene:
           Scene {
           content:       
               HBox{ spacing: 10 content:[ BPMSlider, BPMDisplay ] }
           } // Scene
    }Thanks!

    Hi,
    I don't know how to solve it with binding values, but I managed to solve it with temporary int value which contains Slider.value.
    If any one can help us with solving this binding value we are waiting for answer.
    Here is the code:
    package slider;
    import javafx.ext.swing.*;
    import javafx.scene.*;
    import javafx.scene.control.*;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.*;
    import javafx.stage.*;
    var tempSliderVal:Integer = 60; // temp BPMSlider value
    var BPMSlider = SwingSlider {
        minimum: 10;
        maximum: 250;
        value: bind tempSliderVal with inverse;
        onMouseDragged: function (e:MouseEvent) {
            BPMDisplay.text = tempSliderVal.toString();
        onMouseClicked: function (e:MouseEvent) {
            BPMDisplay.text = tempSliderVal.toString();
    }; //BPMSlider
    var BPMDisplay = TextBox {
         text: tempSliderVal.toString();
        columns: 3;
    }; //BPMDisplay;
    Stage  {
        title: "Slider";
        width: 1000;
        height: 500;
        visible: true;
        // Set the scene
        scene: Scene {
            content: HBox{
                spacing: 10;
                content:[ BPMSlider, BPMDisplay ];
        } // Scene
    }

  • Bound with inverse problem

    In the code below, model variable is initialized to "abc". It is bound to tbox with inverse. So when prgram runs, the string "abc" is expected in text box but it does not appear unless a key is pressed on the text box.
    Normally in the program, data is already available on client. When I show a UI which is bound to data in memory, the data is expected to be displayed in the UI. How can this be achieved?
    thanks for help
    ~ Tushar
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.ext.swing.SwingButton;
    import javafx.scene.control.TextBox;
    var model : String = "abc";
    public class Test {
    public var button : SwingButton = SwingButton {
    text: "Button"
    translateX: 50 translateY: 80
    action:
    function() {
    println("model = {model}");
    model="cde";
    public var tbox : TextBox = TextBox { text: bind model with inverse
    translateX: 50 translateY: 120
    function run() {
    var test : Test = Test {};
    Stage {
    title : "MyApp"
    scene: Scene {
    width: 400
    height: 400
    content: [ test.button, test.tbox ]
    }

    Can you use SwingTextField instead? It seems to work without the TextBox bug.
    var myText: String = "Hello world";
    var myText2: String = "Hello again";
    Stage {
        title: "Application title"
        width: 250
        height: 80
        scene: Scene {
            content: HBox{
                content:[SwingTextField {
                        columns: 10
                        text: bind myText with inverse
                        editable: true
                    },TextBox {
                        text: bind myText2 with inverse
                        columns: 12
                        selectOnFocus: true
    }

  • Do I need to have my site uploaded to a remote host for embeded formscentral form  to work? I am getting a broken section of header with a warning sign on top corner saying "!Local host." Cheers

    Hey there all.
    I am wondering if there is something wrong with my embedded form or if it is simply because
    I have not uploaded my site to remote host yet? I am only getting a broken part of the header with
    no actual form, with a warning "!local host" in top left hand corner. If anyone could enlighten
    me on this problem it would be greatly appreciated, it is my first time making forms

    Cheers, I noticed some browsers were treating the form differently. I am uploading to a test server tomorrow, hopefully all goes well, thanks for your reply  

  • How to insert a null value to combobox which is bind with datasource

    Hi,
    i am working on c# winforms application. I have 2 comboboxes one is CustomerCbBox and another is OrderCbBox. CustomerCbBox is bind with data source.
    on CustomerCbBox SelectedIndexChanged event data is populated in OrderCbBox from data source. 
    i want to add a null or empty field in CustomerCbBox. all I want is that when the user don't Select Customer Name and OrderNo null or empty data enter in database. but when i click Insert Button it generate error "Object reference is not "object
    reference not set to an instance of an object".
    here is my code.
      private void MainForm_Load(object sender, EventArgs e)
    production pd = new production();
    CustomerCbBox.DataSource = pd.Customer();
    CustomerCbBox.DisplayMember = "Cust";
    CustomerCbBox.ValueMember = "CustId";
     private void CustomerCbBox_SelectedIndexChanged(object sender, EventArgs e)
                      try
                          string PartyName = CustomerCbBox.SelectedIndex.ToString();
                           PONum1.DataSource = pd.GetPOnumActive(PartyName1);
                              PONum1.DisplayMember = "PONum";
                              PONum1.ValueMember = "PONum";
                      catch (Exception ex)
                          MessageBox.Show(ex.Message);
         Please help me to solve this problem thanks.      

    Hello,
    We could check whether the user has selected any items before adding that to database.
    if (CustomerCbBox.SelectedIndex > -1)
    // do something
    }else{//add dbnull to database}
    And for adding null to databse, we could pass DBNull.Value instead.
    Regards,
    Carl
    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.

  • It crashes with out warning nomatter what site I'm on and the page goes white plus it want to update but will not support cretain sites that I need

    sorry I wrote before but forgot to edit it.Since I came home 3 weeks ago from surgery. I can be on any site especially on facebook playing games and it goes white completely with out warning so I have to restart my computer again to get back especially on facebook.I play alot of games on there and other things.No matter if I'm chatting .ect on any of my sites the page goes completely white.I get a message to upgade to mazolla firefox 5 but will not except some of my sites like replayer,ect.. so I keep putting it to ask me again in 7 days. I need those sites.Can you help me PLEASE.Going for another surgery in Aug. and my computer is the only thing that keeps me busy unless I want to watch TV all the time.I have Mc Afee security for free from att and they tried to fix it but it still doing it.I have window vista can you help me.don't know much about computers but my grandchildren did get into it and put like Itune and certain games that I was chraged for which I cleared up.Can you help Please..do not want to upgrade cause some of my sites will be gone especially real player and my other sites.I told to go K2 here by Mc Affee security...Have no crash Id.

    You're welcome.
    Voicemail is left at your carrier's server. That will continue to work unless you report your iPhone as lost or stolen with your carrier.
    You may never find it again and you can't if the iPhone remains offline or out of service which means the iPhone is powered off or doesn't have cellular reception.

  • HT1727 My old computer died on me with no warning signs. I didn't know or need to copy my music to another computer. I would like to know how to get the music that I bought onto my new computer without having to buy it all again.

    My old computer died on me with no warning signs. I didn't know or need to copy my music to another computer. I would like to know how to get the music that I bought onto my new computer without having to buy it all again. I just want to be able to get all of my music that I bought on itunes onto my computer. Right now the money ive spent is just gone and I have no music to show for it.

    Go to the iTunes Store and select "Purchased" from the Quick Links side bar on the right. Go through all the tabs to download again for free

  • Photoshop Elements 11 installed on Mac Mini OS X 10.9.5. Application running successfully on bot main user and administrative accounts for considerable time with no warning messages. When established a new user account on same computer and try to call up

    Photoshop Elements 11 installed on Mac Mini OS X 10.9.5. Application running successfully on bot main user and administrative accounts for considerable time with no warning messages. When established a new user account on same computer and try to call up elements receive message “Some ot the application components are missing from the Application directory. Please reinstall the application.” How do I correct this problem without disturbing application in main user account?

    Brooks lansing if you create a new Administrator account does the same issue occur?  If so then it is likely that there is a file permission failure and file permissions have been set for the existing Users instead of the groups they belong to.
    Have you removed and reinstalled Photoshop Elements 11?  This may reset the file permissions to the correct state to allow it to work under new accounts.

  • Snow Leopard shutting down with no warning is getting more complex!

    I have a series 1 Macbook Pro and have updated to Snow Leopard. As with most other people I immediately got problems with the "battery Service" message. So, having read all the various posts, and tried re-calibration, I bought a new battery.
    Charged fully and disconnected adaptor. The machine shut down with no warning at about 85%! I tried a few more times after fully charging the battery and it shut down a number of times - 83%, 85%, 89% and 98%. The battery shows a cycle count of 1. The last time it shut down (89%) I decided to try re-starting without plugging the adaptor back in. The machine started and ran up to the point where it properly started Snow Leopard - when it was about to change from the blue screen - at which point it shut down again. I tried this a number of times and it was absolutely conisistant, doing it every time.
    I then had the bright idea of plugging in the adaptor but watching the LED to see what happened. The LED came on green for 1 or 2 seconds, then went red. I then immediately unplugged it again. I then tried to start the machine with battery only. It started perfectly and went on running until down to 15% at which point it shut down, again with no warning. Tried re-starting - it wouldn't! Plugged the adaptor in so that it would charge the battery whilst using the machine. Then, much to my amazement, while the adaptor was still plugged in, and the battery was far from fully charged, the machine shut down - again without warning. That's "it shut down with battery installed AND mains connected". The machine then wouldn't start, with mains connected. It would switch on for a few seconds then shut down again. To get it to start I needed to remove the battery and run it on mains only.
    That's where I am at the moment, running 'mains only' with no battery installed. It looks as if Snow Leopard sets the battery monitor / charging hardware incorrectly on the MBP. Once set incorrectly it looks as if it loses itself!
    Has anyone else experienced anything like this?

    It really doesn't get any better! Well, not a lot. I decided that I'd try yet another brand new battery. I charged it fully, disconnected the mag connector and it ran happily without shutting down - hooray. However, after putting out the message about low power and about to shut down, at about 5%, it ran to about 2% and shut down without warning. It didn't go to sleep.
    I then couldn't get the machine to start again. I reset the SMC and still no joy. it would start to run, flash the screen a couple of times and then die. To get it to run I had to disconnect the battery, start it, then plug the battery back in again. Snow Leopard does appear to do something odd with the charging hardware. It appears to leave it in an odd state.
    You may be right about Battery Update 1.3, but there appears to be no way of installing it under 10.6.8 - unless you know something I don't!
    This is the current battery:
      Manufacturer:          Sony
      Device name:          ASMB012
      Pack Lot Code:          0002
      PCB Lot Code:          0000
      Firmware Version:          102a
      Hardware Revision:          0500
      Cell Revision:          0303
      Charge Information:
      Charge remaining (mAh):          3734
      Fully charged:          No
      Charging:          No
      Full charge capacity (mAh):          5205
      Health Information:
      Cycle count:          2
      Condition:          Normal
      Battery Installed:          Yes
      Amperage (mA):          -2230
      Voltage (mV):          11429
    As you can see, I'm running 'battery only' at the moment!

  • I couldnt update my itune as it was coming up with a warning message so i uninstalled it and now it wont let me re installl it? when i hit download off apple website it goes to thank you for downloading itunes but it didnt download.

    i couldnt update my itune as it was coming up with a warning message so i uninstalled it and now it wont let me re install it? when i hit download off apple website it goes to thank you for downloading itunes but it didnt download.

    Hi,
    Please uninstall your creative cloud desktop app and re-download it from the below link:-
    Creative Cloud Help | Creative Cloud for desktop
    and then follow the same steps that you have been following.
    Hope that works for you.
    Regards
    Sarthak

  • My problem is that the iPod does not turn on. Everytime I attempt to turn it on it shows the Apple logo then a small icon showing a sad face with a warning sign.

    IS MY IPOD DEAD?!?!?!?!?
    I think I have the previous iPod Classic with a black glossy front and I am pretty sure it is glass at the front. My problem is that the
    iPod does not turn on. Every time I attempt to turn it on it shows the Apple logo then a small icon showing a sad face with a
    warning sign along with the Apple support website. At the same time I can hear the internal mechanics which is also very loud. I have attempted
    to charge it as well as connecting it to itunes but no success. Could you please help?

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable                     
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • How to create a page  to bind with spreadsheet

    Hi ,
    Am using jdev 11.1.2.2.0. I need to create the custom spreadsheet to integrate with fusion application. currently am referring one document which i got in google. find the link below:
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/jdev/obe11jdev/ps3/tutorial_adfdi/adfdinewtutorial/jdtut_11r1_59_1.html
    In this example they have taken the workspace ADFdi_BC.jws . But i need the process for developing this ADFdi_BC application. And then it is very clear in the document to bind with excel.
    Can you pls share this document to create ADFdi_BC application.
    Thanks in advance!!!!!

    Hi,
    I guess, this application is a simple Employee-Department application using the HR schema.You can search for a simple ADF BC application in google to get step-by-step tutorial for that.
    -Arun

  • Is that possible to add a listener to a class that bind with a image?

    Hello, I am trying to add listener to a class that binds with image.  For example, I want to add listener to customDividerSkin(see example below, i bold and underline the text), so when user click the customdividerSkin image haloGreen box will be hided. Thanks,
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2008/09/18/customizing-the-divider-skin-on-a-dividedbox-conta iner-in-flex/ -->
    <mx:Application name="HDividedBox_dividerSkin_test"
    xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="vertical"
    verticalAlign="middle"
    backgroundColor="white"
    initialize="init();">
    <mx:Script>
    <![CDATA[
    [Embed("arrowLeft.png")]
    private const customDividerSkin:Class;
    private function init():void
    dividedBox.setStyle("dividerSkin", customDividerSkin);
    ]]>
    </mx:Script>
    <mx:HDividedBox id="dividedBox"
    horizontalGap="24"
    width="100%"
    height="100%">
    <mx:ViewStack id="AddFormViewStack"
      width="100%"
      height="100%">
    <mx:Box id="box1"
    backgroundColor="haloGreen"
    width="100%"
    height="100%"
    minWidth="100"/>
    <mx:Box id="box2"
    backgroundColor="haloBlue"
    width="100%"
    height="100%"
    minWidth="100"/>
    </mx:ViewStack>
    </mx:HDividedBox>
    </mx:Application>

    Set the class as the source for an mx:Image and set the listener to the  Image

  • Online split mirror Backup is getting completed with a warning message

    Dear Experts,
    Recently we have configured the online split mirror backup and it is getting completed with a warning message that "BR0494W Oracle pfile cannot be created from spfile in remote OPS$ connect mode on UNIX platforms"
    Please suggest and below is the complete backup log and appreciate quick help
    Detail log:                    bdxudchg.anf
    BR0051I BRBACKUP 6.40 (15)                                                                               
    BR0055I Start of database backup: bdxudchg.anf 2008-04-26 17.56.04                                                                               
    BR0049W Last BRBACKUP run was probably killed                                                                               
    BR0494W Oracle pfile cannot be created from spfile in remote OPS$ connect mode on UNIX platforms                                                                               
    BR0351I Restoring /oracle/PD1/sapbackup/cntrlPD1.dbf                                                                               
    BR0355I from /oracle/PD1/sapbackup/cntrlPD1.dbf ...                                                                               
    BR0319I Control file copy created: /oracle/PD1/sapbackup/cntrlPD1.dbf 34349056                                                                               
    BR0101I Parameters                                                                               
    Name                           Value                                                                               
    oracle_sid                     PD1                                                                               
    oracle_home                    /oracle/PD1/920_64                                                                               
    oracle_profile                 /oracle/PD1/920_64/dbs/initPD1.ora                                                                               
    sapdata_home                   /oracle/PD1                                                                               
    sap_profile                    /oracle/PD1/920_64/dbs/initPD1.sap                                                                               
    backup_mode                    ALL                                                                               
    backup_type                    online_split                                                                               
    backup_dev_type                util_file                                                                               
    orig_db_home                   /oracle/PD1                                                                               
    util_par_file                  /oracle/PD1/920_64/dbs/initPD1.utl                                                                               
    primary_db                     PD1BKP.world                                                                               
    split_cmd                      /wipro/SD-scripts/SD_split_mount_delay.sh                                                                               
    resync_cmd                     NULL                                                                               
    system_info                    orapd1/orapd1 peppdb HP-UX B.11.23 U ia64                                                                               
    oracle_info                    PD1 9.2.0.7.0 8192 23999 11040627253                                                                               
    sap_info                       640 SAPPD1 PD1 Z0784028998 R3_ORA 0020209102                                                                               
    make_info                      hpia64 OCI_920 Oct  9 2004                                                                               
    command_line                   brbackup -u / -c -d util_file                                                                               
    BR0116I ARCHIVE LOG LIST before backup for database instance PD1                                                                               
    Parameter                      Value                                                                               
    Database log mode              Archive Mode                                                                               
    Automatic archival             Enabled                                                                               
    Archive destination            /oracle/PD1/oraarch/PD1arch                                                                               
    Archive format                 %t_%s.dbf                                                                               
    Oldest online log sequence     23996                                                                               
    Next log sequence to archive   23999                                                                               
    Current log sequence           23999      SCN: 11040627253                                                                               
    Database block size            8192       Thread: 1                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.47.42                                                                               
    BR0315I 'Alter tablespace PSAPPD1 begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.00                                                                               
    BR0315I 'Alter tablespace PSAPPD1640 begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.03                                                                               
    BR0315I 'Alter tablespace PSAPPD1USR begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.08                                                                               
    BR0315I 'Alter tablespace PSAPTOOLS begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.57                                                                               
    BR0315I 'Alter tablespace PSAPUNDO begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.59                                                                               
    BR0315I 'Alter tablespace SYSTEM begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.59                                                                               
    BR0295I Splitting mirror disks...                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.32                                                                               
    BR0296I Split of mirror disks successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPPD1 end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPPD1640 end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPPD1USR end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPTOOLS end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPUNDO end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace SYSTEM end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0340I Switching to next online redo log file for database instance PD1 ...                                                                               
    BR0321I Switch to next online redo log file for database instance PD1 successful                                                                               
    BR0117I ARCHIVE LOG LIST after backup for database instance PD1                                                                               
    Parameter                      Value                                                                               
    Database log mode              Archive Mode                                                                               
    Automatic archival             Enabled                                                                               
    Archive destination            /oracle/PD1/oraarch/PD1arch                                                                               
    Archive format                 %t_%s.dbf                                                                               
    Oldest online log sequence     24023                                                                               
    Next log sequence to archive   24026                                                                               
    Current log sequence           24026      SCN: 11041541242                                                                               
    Database block size            8192       Thread: 1                                                                               
    BR0118I Tablespaces and data files                                                                               
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_1/pd1.data1                12884910080    4  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_2/pd1.data2                12884910080    5  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_3/pd1.data3                12884910080    8  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_21/pd1.data21              12884910080   11  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_11/pd1.data11              12884910080   10  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_4/pd1.data4                12884910080    9  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_31/pd1.data31              12884910080   12  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_51/pd1.data51              12884910080   14  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_5/pd1.data5                12884910080   16  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_6/pd1.data6                 6442459136   25  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_52/pd1.data52              12884910080   24  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_42/pd1.data42              12884910080   23  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_32/pd1.data32              12884910080   22  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_22/pd1.data22              12884910080   21  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_12/pd1.data12              12884910080   20  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_91/pd1.data91              12884910080   19  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_81/pd1.data81              12884910080   18  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_71/pd1.data71              12884910080   17  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_44/pd1.data44              12884910080   42  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_24/pd1.data24              12884910080   41  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_14/pd1.data14              12884910080   40  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_93/pd1.data93              12884910080   39  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_83/pd1.data83              12884910080   38  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_73/pd1.data73              12884910080   37  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_63/pd1.data63              12884910080   36  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_53/pd1.data53              12884910080   35  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_7/pd1.data7                12884910080   34  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_95/pd1.data95              12884910080   59  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_75/pd1.data75               6442459136   58  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_85/pd1.data85              12884910080   57  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_65/pd1.data65              12884910080   56  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_9/pd1.data9                 6442459136   55  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_55/pd1.data55               6442459136   54  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_35/pd1.data35              12884910080   53  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_45/pd1.data45              12884910080   52  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_25/pd1.data25              12884910080   51  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_67/pd1.data67               6442459136   76  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_87/pd1.data87              12884910080   75  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_57/pd1.data57               6442459136   74  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_37/pd1.data37              12884910080   73  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_27/pd1.data27               6442459136   72  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_47/pd1.data47               6442459136   71  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_17/pd1.data17               6442459136   70  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_96/pd1.data96               6442459136   69  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_76/pd1.data76              12884910080   68  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_89/pd1.data89               6442459136   93  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_59/pd1.data59               6442459136   92  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_39/pd1.data39               6442459136   91  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_29/pd1.data29               6442459136   90  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_49/pd1.data49               6442459136   89  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_19/pd1.data19               6442459136   88  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_98/pd1.data98               6442459136   87  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_78/pd1.data78               6442459136   86  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_68/pd1.data68               6442459136   85  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_141/pd1.data141             6442459136  110  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_131/pd1.data131             6442459136  109  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_121/pd1.data121             6442459136  108  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_111/pd1.data111             6442459136  107  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_101/pd1.data101             6442459136  106  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_100/pd1.data100             6442459136  105  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_80/pd1.data80               6442459136  104  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_70/pd1.data70               6442459136  103  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_90/pd1.data90               6442459136  102  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_113/pd1.data113             6442459136  127  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_103/pd1.data103             6442459136  126  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_192/pd1.data192             6442459136  125  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_182/pd1.data182             6442459136  124  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_172/pd1.data172             6442459136  123  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_162/pd1.data162             6442459136  122  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_152/pd1.data152             6442459136  121  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_142/pd1.data142             6442459136  120  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_132/pd1.data132             6442459136  119  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_221/pd1.data221             6442459136  208  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_211/pd1.data211             6442459136  207  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_201/pd1.data201             6442459136  206  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_190/pd1.data190             6442459136  205  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_200/pd1.data200             6442459136  204  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_170/pd1.data170             6442459136  203  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_180/pd1.data180             6442459136  202  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_140/pd1.data140             6442459136  201  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_160/pd1.data160             6442459136  200  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_150/pd1.data150             6442459136  199  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_110/pd1.data110             6442459136  198  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_130/pd1.data130            6442459136  197  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_120/pd1.data120             6442459136  196  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_189/pd1.data189            6442459136  195  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_199/pd1.data199            6442459136  194  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_169/pd1.data169             6442459136  193  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_179/pd1.data179             6442459136  192  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_159/pd1.data159             6442459136  191  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_149/pd1.data149             6442459136  190  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_139/pd1.data139             6442459136  189  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_109/pd1.data109             6442459136  188  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_129/pd1.data129             6442459136  187  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_119/pd1.data119             6442459136  186  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_188/pd1.data188             6442459136  185  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_198/pd1.data198             6442459136  184  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_168/pd1.data168             6442459136  183  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_178/pd1.data178             6442459136  182  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_148/pd1.data148             6442459136  181  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_158/pd1.data158             6442459136  180  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_138/pd1.data138             6442459136  179  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_108/pd1.data108             6442459136  178  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_128/pd1.data128           12884910080  177  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_118/pd1.data118             6442459136  176  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_187/pd1.data187             6442459136  175  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_197/pd1.data197             6442459136  174  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_167/pd1.data167             6442459136  173  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_177/pd1.data177            6442459136  172  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_157/pd1.data157             6442459136  171  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_147/pd1.data147             6442459136  170  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_137/pd1.data137             6442459136  169  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_117/pd1.data117             6442459136  168  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_127/pd1.data127             6442459136  167  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_107/pd1.data107             6442459136  166  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_186/pd1.data186             6442459136  165  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_196/pd1.data196             6442459136  164  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_166/pd1.data166             6442459136  163  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_176/pd1.data176            6442459136  162  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_156/pd1.data156             6442459136  161  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_146/pd1.data146             6442459136  160  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_136/pd1.data136             6442459136  159  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE   

    Hi again
    Please let me know whether we need to put the parameter remote_login_password=exclusive in pfile or spfile
    I prefer the spfile, just:
    SQL> alter system set remote_login_passwordfile = exclusive scope = spfile;
    To grant sysoper to system:
    SQL> grant sysoper to system;
    And restart the instance.
    Regards
    Michael

  • I have an iPad (original). I cannot complete the update to iOS 5.  It gets to the "backup" stage and then finds an error (-402653081). It asks if I want to continue, with a warning that "continuing will result in the loss of all contents on this iPad."

    I have an iPad (original). I cannot complete the update to iOS 5.  It gets to the "backup" stage and then finds an error (-402653081). It asks if I want to continue, with a warning that "continuing will result in the loss of all contents on this iPad." What can I do?

    Thanks Bob, I don't know why but it all of a sudden worked a few days later. It's a mystery but at least problem solved.

Maybe you are looking for