Valid methods to back up ASO database

Hi Experts,
I think there are 2 ways to back up ASO database
1) Maxl alter database commands
2)Esscmd BEGIN ARCHIVE/END ARCHIVE
Can any one confirm me that above methods are valid to do the tasks .If invalid let me know which one is invalid.I went through dbag and it give me little confusion in finding which one is valid methid.

Hi John,
Thank you for the reply.
I have some clarification on the following question which i came in certification last 2 days back.
A calcualtion is performed on a database for which create block on equation is off.The command SET CREATEBLOCKONEQ ON is issued immediately before an equation in the script.which statements accurately describe when blocks will be created?
1) blocks will be created ONLY when the equation assigns non - constant values to members of sparse diemension.
2)blocks will be created only when the equation assigns constant values to memebers of sparse dimension
3)blocks will be created when the equation assignes either constant or non constant values to a members of sparse dimension
4)No blocks will be created.
please clarify on the above.

Similar Messages

  • Backing Bean Validation Method error

    Hi all,
    I've an ADF JSF User Registration Form and I want to set my server-side validation to confirm passwords entered by the user using the validator attribute bound to customized validation logic sitting in a method my backing bean. I've tried quite a few cracks at this but I still seem to get a java.lang.NullPointerException error when the method is invoked.
    The relevant method in my Backing Bean looks like this:
    public void comparePassword(FacesContext facesContext, UIComponent uiComponent, Object newValue) {
    //Get the new value that is passed passed from the Confirm Password field
    String confirmPassword = (String)newValue;
    //Get the password that has already been entered
    String password = (String)getLoginPasswordText().getValue();
    //Compare passwords and raise validation error message
    if (!password.equals(confirmPassword)){
    throw new ValidatorException(new FacesMessage
    (FacesMessage.SEVERITY_ERROR,
    "Passwords need to be the same",
    "Password values should be the same"));
    The getters and setters for the components are also in the bean and the gettLoginPasswordText() returns the original password input text field (the one that I want to compare it to).
    Is there something that I've missed here?
    Cheers

    Thanks Frank.
    I now understand a bit more about value binding. But unfortunately I need a little more help (from anyone) on this one. I've tried quite a few things and I think the problem stems from the fact that the validation code doesn't seem to pickup the value entered in the comparison field - at least in the way that I've coded it. Here's a more complete example of what I'm trying to overcome:
    I've got two input text components:
    <af:inputText required="true" simple="true"
    id="loginPasswordText"
    immediate="true"
    value="#{backing_UserRegistration.password1}">
    </af:inputText>
    <af:inputText required="true" simple="true"
    id="loginConfirmPasswordText"
    immediate="true"
    validator="#{backing_UserRegistration.comparePassword}"
    value="#{backing_UserRegistration.password2}">
    </af:inputText>
    I've setup the relevant accessors as in the following:
    String password1 = "";
    public String getPassword1(){
    return password1;
    String password2 = "";
    public String getPassword2(){
    return password2;
    And my validation now code looks like this:
    public void comparePassword(FacesContext context, UIComponent toValidate, Object value) {
    if (!Password2.equals(Password1)) {
    FacesMessage msg = new FacesMessage("summary message", " detailed message");
    msg.setSeverity(FacesMessage.SEVERITY_INFO);
    ValidatorException e = new ValidatorException(msg);
    throw e;
    I've tested the validation code on a standalone basis ie passing in a new variable as part of the method ie.
    String word = (String) value;
    if (word.equals("tom"))....
    The validator and message fires OK, so I know the problem lies with picking up the entered values for password1 and password2. I know the values are there because I can "see" them on screen and they are recognized by standalone validators and the bean has a session scope.
    Ideas anyone?
    Thanks

  • How to force validator method instead of data type validation in af:table

    This post will probably once again illustrate exactly how new I am to the Java/JDeveloper world so thanks in advance for any help! I have tried searching but couldn't find anything that seemed to mirror my problem.
    I am using a modification of Frank's idea on how to individually color table cell backgrounds.
    http://thepeninsulasedge.com/frank_nimphius/2008/04/10/adf-faces-conditionally-color-table-cell-background-2/
    My intention was to use this along with custom validation to color cells with invalid values. It was a user request that it be done so as to quickly spot input errors (when updating records) if someone had missed the initial faces message and was no longer in the field that generated the error. It works fine for fields in my af:table based on VO attributes with varchar2 types but the 2 values with float and number types handle character input with a faces message "Not a number" and then do not seem to process the validator. The reason I (think I) need to use the validator in addition to Franks code is that in the validator code I use an addpartialtarget to the uicomponent that refreshes the background color if it changed in the backing bean.
    FYI the project is based on ADF BC/JSF.
    I tried gave the full use case as suggested so you understand what I am trying to accomplish and if you have a better way to accomplish this please let me know as well.
    Thanks,
    Rich
    Managed-Bean
        public String getMODELColorString() {
            MODELColorString = "width:125px;";
            Object MODEL = getRowValue("#{row.ModelType}");
            if (MODEL != null) {
                if (!isValidMODEL(MODEL.toString())) {
                    MODELColorString = "background-color:red;width:125px;";
            return MODELColorString;
        }Backing-Bean
            if (!myValidation.isValidMODEL(object.toString())) {
                System.out.println("InValid Data");
            AdfFacesContext.getCurrentInstance().addPartialTarget(uiComponent);P.S. If I made any newbie mistakes in my code please let me know, although this is obviously not production code yet by any means.
    Message was edited by:
    BengalGuy

    Frank (or anyone else who might offer some advice),
    I thought that solved my issue as I could see the validator getting triggered, however something else is now happening. It seems to pass through the validator once for each of the values on my table with the invalid input I entered on one of the numbers, "a" in this case, and then once again through the color change backing bean but at that time the invalid input reverts to the original input and the change is rendered on the af:table as well. Any thoughts ? I put a print in the validator method, in the method that gets called from the validator (checks to see if value can be converted to float) , and then the color change bean (which also calls the float validation test) and pasted the output below.
    Validator Triggered \Current Value = 0.037178375 \FloatTestOn: 0.037178375 \Result: Valid Data
    Validator Triggered \Current Value = 0.109212324 \FloatTestOn: 0.109212324 \Result: Valid Data
    Validator Triggered \Current Value = 0.18624917 \FloatTestOn: 0.18624917 \Result: Valid Data
    Validator Triggered \Current Value = 0.26863635 \FloatTestOn: 0.26863635 \Result: Valid Data
    Validator Triggered \Current Value = 0.35674548 \FloatTestOn: 0.35674548 \Result: Valid Data
    Validator Triggered \Current Value = -0.38118127 \FloatTestOn: -0.38118127 \Result: Valid Data
    Validator Triggered \Current Value = -0.3382032a \FloatTestOn: -0.3382032a NumberFormatException: For input string: "-0.3382032a"
    08/04/16 10:03:14 \Result: InValid Data
    Validator Triggered \Current Value = -0.29224017 \FloatTestOn: -0.29224017 \Result: Valid Data
    Validator Triggered \Current Value = -0.24308495 \FloatTestOn: -0.24308495 \Result: Valid Data
    Validator Triggered \Current Value = -0.1905158 \FloatTestOn: -0.1905158 \Result: Valid Data
    Validator Triggered \Current Value = -0.13429564 \FloatTestOn: -0.13429564 \Result: Valid Data
    Validator Triggered \Current Value = -0.07417088 \FloatTestOn: -0.07417088 \Result: Valid Data
    Validator Triggered \Current Value = -0.009870344 \FloatTestOn: -0.009870344 \Result: Valid Data
    \Checking for color change \FloatTestOn: 0.037178375
    \Checking for color change \FloatTestOn: 0.109212324
    \Checking for color change \FloatTestOn: 0.18624917
    \Checking for color change \FloatTestOn: 0.26863635
    \Checking for color change \FloatTestOn: 0.35674548
    \Checking for color change \FloatTestOn: -0.38118127
    \Checking for color change \FloatTestOn: -0.3382032 <- "a" is no longer there ?
    \Checking for color change \FloatTestOn: -0.29224017
    \Checking for color change \FloatTestOn: -0.24308495
    \Checking for color change \FloatTestOn: -0.1905158
    \Checking for color change \FloatTestOn: -0.13429564
    \Checking for color change \FloatTestOn: -0.07417088
    \Checking for color change \FloatTestOn: -0.009870344

  • P6 user name is not valid for connecting to the reporting database

    No data is available because your P6 user name is not valid for connecting to the reporting database
    I am getting above error in the following environment:
    P6 running on wls instance 1.
    BI Publisger running on wls instance 2
    MS SQL server 2005
    Note that the error appears when I clink on the 'Reports' tab in P6. My admin user on P6 has access to report/analyser modules.
    To connect P6 to BI Publisher I am using 'PxRptUser' in the P6 configuration for Bi Publisher. I know as well that the WSDL URL is correct and I can test this in SoapUI tool.
    In BI publisher I have created the PMDB data source using PxRprUser, and the test of this connection works.
    (Because the report samples come with Oracle flavoured SQL that SQL server does not like, I have configured BI Publisher so I have just a single report left that sources it data from an xml file. This works in BI Publisher. It also helps me in that I do not need to add 'WHERE' clauses and parameters required for SQL server?)
    Furthermore, using a DB tool, I can connect to my SQL server using PxRPTUser.
    So why do I get the error above?
    I picked up somewhere that I should not be adding users to BI Publisher. Funny enough, testing the 'login' method the BI Publisher exposes through its WSDL (as above) I noticed I HAD to create the user PxRptUser in BI publisher application itself (on top of PxRptUser in database) for the login web service to work with PxRptUser
    That did not solve the connection between P6 and BI Publisher though. What am I missing ...
    Edited by: user3674522 on 10/11/2011 20:16

    Thought I found something but can't repliacte, som issue is still there:
    Had a look at the wls instance logs where BI publisher is running, and the error I get is:
    111111_023646955][][ERROR] javax.naming.NamingException: Unresolved naming: cn=admin, dc=user, dc=users, dc=principals at [cn=admin]
    That user, admin, is the one I have used to access P6. Why is this passed on to BI Publisher? I thought the idea was that the PxRptUser set in BI Publisher configurations in P6 would be used?
    Edited by: user3674522 on 10/11/2011 20:17

  • What is the Oracle supported method for backing up OCFS2?

    Hi
    My customer has been trying to backup Oracle Cluster File System (ver 2) with netbackup 6.5, but not via RMAN.
    They want to know if this method of backing OCFS up is suppported?
    But I think the supported method has to use a netbackup Oracle agent and RMAN
    Can anybody confirm this please?
    Regards
    jethro_p

    The recommended method is thru RMAN only. Directly backing up OCFS thru netbackup is not a reliable backup.
    We faced an critical oracle error & the database went down. We are not able to bring the database with the direct backup thru veritas. Then we restored the database only thru rman backup.

  • Methods to Back up iCal Calendars

    I'm researching 3 methods of backing up my iCal information.
    1.) Choosing "Back up Database" from the File menu in the iCal application. This creates a .icbu file with the date attached for you to save in any location you specify.
    2.) Choosing "Export" from the File menu in the iCal application. This creates a .ics file of the specific calendar you selected for you to save in any location you specify
    3.) Copying the entire "iCal" folder from ~Library/Application Support/. This will include the files: (nodes.plist, Sources, sync.plist, todos-info.plist)
    My question: Is there a difference in these three methods? If I restore from method #1 vs. #2 vs. #3 will my results be different?
    Why I'm asking: I'm using Retrospect to back up all my data to an external drive periodically. By using Retrospect, I'd have to use method #3 since it's an automated task.
    Thanks in Advance,
    Al
    PS> I have the same question in regards to the Address Book database.

    I figured it out

  • Methods for Backing Up Address Book

    I'm researching two methods of backing up my Address Book information.
    1.) Choosing "Back up Address Book" from the File menu in the Address Book application. This creates a .abbu file with the date attached for you to save in any location you specify.
    2.) Copying the entire "Address Book" folder from ~Library/Application Support/. This will include the files: (ABPerson.skIndex, ABPerson.skIndexInverted, AddressBook.data, AddressBook.data.beforesave, AddressBook.data.previous, Images)
    My question: Is there a difference in these two methods? If I restore from method #1 will my results be different then restoring from method #2.
    Why I'm asking: I'm using Retrospect to back up all my data to an external drive periodically. By using Retrospect, I'd have to use method #2 since it's an automated task.
    Thanks in Advance,
    Al
    PS> I have the same question in regards to the iCal database.
    PowerMac G4 (Digital Audio) / PowerBook G4 15   Mac OS X (10.4.4)  

    I figured it out

  • Calling a method on backing bean in response to contextual event

    Hi
    I am using Jdeveloper 11.1.1.6.0 and using ADF contextual events..
    I have a drop down list and i am rasiing a contextual event on changing the current selection. In response to that event i want to call a backing bean method with parameters.. But when i click on the subscriber section for the contextual event, i can see only some bindings of the page.. How can i call a method on backing bean as a subscriber..
    Thanks
    Raghu

    Hi,
    this article has a use case for the POJO approach: http://www.oracle.com/technetwork/issue-archive/2011/11-may/o31adf-352561.html
    Another is to define a method binding in the receiving PageDef file and configure it as explained here
    http://java.net/projects/smuenchadf/pages/ADFSamplesBindings/revisions/3#SMU164
    Frank

  • Error : No valid R/3 Back-end system

    Hi CRM gurus,
    I'm trying to connect SAP CRM 5.0 to SAP ECC 5.0.
    When I launch trx R3AS for downloading the first object of the list coming from Best Practise (DNL_CUST_ACGRPB), I am getting the above error: "No valid R/3 Back-end system."
    Now the point is that RFCs work smoothly, administration console as well and R/3 view CRMRFCPAR was filled correctly.
    Where is the problem? I'm looking into, but without results.
    Any suggestions in this issue will be rewarded.
    Regards,
    AndreA

    Many thanks Praveen,
    I have carried out all the checks in the tables and it seems that everything is fine!.
    Creating a RFC Destication for CRM in R/3
    Maintain Table CRMRFCPAR and CRMCONSUM?
    In Table CRMPAROLTP, Parameter "crm release" should set to your CRM version ( ex 500 for crm 5.0)
    Maintain table TBE11, APPI should be NDI(new dimension integration),A yes
    I don't really know where the error could lay.
    Andrea

  • How to call a method in backing bean on hitting 'Enter' key on a page.

    Hi all,
    I would be obliged if any one can provide me solution for the below given problem.
    My requirement is to call a method in backing bean when i hit 'Enter' key on a JSP page.
    I am trying this by using a script given below.
    *function fnChangeFocus(){*
    *if(window.event.keyCode==13){*
    * document.getElementById("mainform:submitForm:commandbutton").focus();*
    The JSP has the textbox as given below.
    *<h:inputText id="inputtxtboxid" disabled="false" value="#{Bean.inputvalue}"*
    onkeypress="fnChangeFocus()" size="24" />
    Using this I could not acheive the required functionality. Please suggest some alternative.
    Thanks,
    Jagadeesh Pala

    Only a form element supports the submit() function. Make sure that the getElementById returns the appropriate form. Or rather pass the element as the 'this' reference to the function and get the parent form from it.
    After all this is just basic DHTML / Javascript+DOM knowledge and in fact this has nothing to do with JSF. For future basic DHTML / JS+DOM questions you may take a look at the appropriate forums, e.g. dhtmlcentral.com, dynamicdrive.com, etcetera.

  • Back up in database

    hi expert,
    what is sccs? How  to provide  Differenent type  back up in database?
    thanx

    hi subodha,
    what is sql replication --
    Replication is the process of sharing data between databases in different locations. Using replication, you create copies of the Database and share the copy with different users so that they can make changes to their local copy of the database and later synchronize the changes to the source database.
    u can refer the link for more data
    http://www.cryer.co.uk/brian/sqlserver/howtoreplication.htm
    let me know the u need any further data
    bvr

  • Uploading CSV File into Web Dynpro Java Table and Write back to a Database

    Hi Gurus!
    I would like to upload a csv file and read the content into an UI table element.
    Then, I need to write the uploaded file back to a database. I'm using NetWeaver 2004s.
    could you please provide advice for both, uploading and wirting to databse (e.g. maxDB or oracle), since I'm quite new in WDJ.
    thanks in advance.
    farid
    ps. helpfull answers will be rewarded with points!

    Hi ,
    have look at this blog
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/6603. [original link is broken] [original link is broken] [original link is broken]
    Have a look at this links.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c0d9336b-b4cf-2910-bdbf-b00d89bd2929.
    Re: Popup Internal Window - data type IWDWindow not available
    Regards,
    krishna.

  • I have downloaded whats app/brave temple run but using netsafe card. well now it shows 1.98$ is pending , though m trying with new netsafe card to pay it is showing error saying Pls select valid method for payment. i used same method as i did earlier

    i have downloaded whats app/brave temple run but using netsafe card. well now it shows 1.98$ is pending , though m trying with new netsafe card to pay it is showing error saying Pls select valid method for payment. i used same method as i did earlier

    I have recently started having this problem in PSE8. The Adobe workaround
    did work, but I don't fancy having to re register each time I use it.
    What I have discovered is that it's nothing to do with the image metadata as it occurs before any image is opened.
    It SEEMS to only occur if you use file/open with to open an image in the editor - IE start PSE with that command.
    If you close elements down, and start it using programs/PSE/Elements (or your desktop shortcut) - the panorama feature magically works.
    Each time I've opened the editor 'automatically' using image/open with, it seems to create the problem.
    Hope this helps

  • Best method for backing up macbook air?

    Please tell me what would be the best method to back up my macbook air?

    Yes, this i know, Since I have nearly 100 HD laying around, when I clone my system, its bootable, and the second HD becomes the defacto recovery
    at the very worst, you can reload the OS online.       But yes, youre correct, but Superduper is FREE, and CCC surely isnt.
    as a "clone it all" option, Superduper is great for HD upgrading and emergency backup for laptop HD.  Since laptops HD are prone to failure (not SSD as in the AIR), keeping a cloned backup is a great idea.
    But yes, your right, ......I consider a second cloned HD a "recovery HD", ......but not in the sense you imply.......  
    An ERROR that both superduper and CCC make in a CLONE, however, is they write the BOOT FILES in a diff. location, so if you install the replacement HD after a crash, it will (not 1st time which is always slow) cause slightly slower startup from poweron.......in which case you have to reinstall the OS on the CLONE...........that IS if you care that much about a few extra seconds boot time on your replacement cloned HD.
    But LION and MOUNTAIN LION systems *also* have "Network Recovery", which can download and install without a recovery volume.

  • Problem in validator method

    Hi to all, i have this jsf code:
              <h:outputText value="#{bundle.oldPassword}:" />
              <h:inputSecret id="oldPassword" value="#{userManager.oldPassword}" required="true"></h:inputSecret>
                        <t:message id="oldPasswordError" for="oldPassword" styleClass="error"/>
              <h:outputText value="#{bundle.newPassword}:" />
              <h:inputSecret id="newPassword" validator="#{userManager.validateChangePassword}" value="#{userManager.newPassword}" required="true"></h:inputSecret>
                        <t:message id="newPasswordError" for="newPassword" styleClass="error"/>
              <h:outputText value="#{bundle.retypePassword}:" />
              <h:inputSecret id="retypePassword" value="#{userManager.retypePassword}" required="true"></h:inputSecret>
                        <t:message id="retypePasswordError" for="retypePassword" styleClass="error"/>
    The field "newPassword" has the validator method "validateChangePassword".
    The validator method is (is a test):
         public void validateChangePassword(FacesContext fc, UIComponent ui, Object o){
              UIInput old = (UIInput)fc.getViewRoot().findComponent("oldPassword");
              UIInput pass = (UIInput)fc.getViewRoot().findComponent("newPassword");
              UIInput retp = (UIInput)fc.getViewRoot().findComponent("retypePassword");
              System.out.println("------ "+old.getValue());
              System.out.println("------ "+pass.getValue());
              System.out.println("------ "+retp.getValue());
              FacesMessage facesMessage = new FacesMessage("Error password");
              throw new ValidatorException(facesMessage);
    I must know the values of all three fields in jsf page, but, with the method above, i get only the value of one of the fields, the others return null.
    How can i do to getting all three values?
    Thanks!

    The local value of an input component is set after conversion and validation.
    You don't need to find newPassword value because you already have it as the
    third parameter of the method, i.e. Object o.
    You can't get a local value of retypePassword because the value hasn't been
    converted nor validated. Instead, you can get the submitted value; getSubmittedValue().
    But wait! You may understand that the ways to get these three values
    depend on the order of the components. Very ugly.
    This means that JSF's validator is not designed for cross values validation.
    It is designed for single value validation, I think.
    I recommend you that the validation you want should be done in the action method.

Maybe you are looking for

  • Csv-export with dynamic filename or include a report footer?

    Hi All, I have a question regarding the exported csv file contains a variable value as part of the file name. I read the following thread and example from Denes here: http://htmldb.oracle.com/pls/otn/f?p=31517:39:2021865942697087 How to generate Exce

  • Unable to change profiles on Express

    I have both an AirPort Extreme and an Express. I have the Extreme as my base station and my Express configured to join my network to stream AirTunes on my stereo. This setup works fine, but I want to take my Express to my parents' house and use it as

  • Insert data to form fields

    I am not sure if Firefox is preventing me from using a program to protect my passwords, but I am now unable to use it via this browser (I believe I have v21 installed...whatever the current version is). To describe the program, it is basically like o

  • Condition based RFC

    Hi, my scenario is WS <-> Proxy using PI 7.1. in proxy calling an RFC to update data into tables. my question is based on some source fiield i want to call different RFC. I know that in SAP we can call diff RFC based on condition.. can we achieve the

  • Blackberry curve 852- not working at all! help

    Hi I have joined this on behalf of my son, his phone has totally frozen, wont do anything, including charging we have tried resetting it etc but still nothing happens, he took it to a shop yesterday and apparently because he has downloaded a theme (w