Confusion over defining Nodes

Hi,
I'm very new to MW and user guide is helping me in setting up the tool. I wanted to understand that , during Defining Node, we have to provide detail of 11i instance and R12 instance. I can understand that we have APPL_TOP, iAS Home, 806 HOME, ContextFile, Environment File etc information for all 11i Nodes. My question is same screen seeks the same information on R12 nodes as well. We have not yet deployed the R12 instance so how do we pass all information here ? Is installing R12 in upgrade mode us compulsory before using MW.
Regards,
rashid

Rashid,
Tom is partially right.
It is NOT expected that you would have installed the R12 filesystem yet at the time of defining nodes, but it is expected that you have at least PLANNED OUT all the locations for the R12 filesystem.
With that said, it is NOT actually necessary to create the directories or files at the time of node definition. You may get some "warnings" in the configuration steps, but they are not fatal, and you may continue, as long as you understand that the values you specify must be the exact values that will be used later.
-Vikki
Product Manager for the Maintenance Wizard

Similar Messages

  • Determine if mouse is over tree node

    hi.
    I recently added some code from this forum on
    highlighting a node when the mouse is over it.
    I am taking this futher and setting a Border around the nodehowever it draws a border around every node.
    I want to only draw the border when the mouse is over the node.
    the example i got does this to set the foreground
    ((JLabel)result).setForeground(Color.red);
    i do this to set the border
    ((JLabel)result).setBorder
    (BorderFactory.createLineBorder(Color.black));
    i ve tried getting the positions of both the mouse and the jlabel but am having trouble determining if the position of the mouse is within the position of the node in the tree.
    Ive used methods like the contains method but it doesnt work for me . can anyone give me a hint as to how to see if the points of the mouse are on the Jlabel?

    This is very close to your solution. Last month, I implement ToolTip Text on every Tree Node so when Mouse goes on to the Node, It shows the Tool Tip Text. Have a look at this code and try to change it accordingly.
    This code is in the Constructor in your class.
    tree.setCellRenderer(new IDETreeCellRenderer());
    tree.setToolTipText("");Class: IDETreeCellRenderer - Cell Renderer for the Tree
    package tv.izone.ide.tree;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import tv.izone.core.*;
    import tv.izone.ide.guiutilities.*;
    import tv.izone.izml.data.*;
    public class IDETreeCellRenderer
        extends DefaultTreeCellRenderer {
       DefaultTreeCellRenderer label;
        * Override TreeCellRendererComponent, used for changing Tree Node for comments.
        * @param tree Tree to be used
        * @param value Value of the Node
        * @param selected true, if selected
        * @param expanded true, if expanded
        * @param leaf true, if it is a leaf
        * @param row Row Number
        * @param hasFocus True, if has Focus
        * @return Component, Tree
       public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded,
                                      boolean leaf, int row, boolean hasFocus) {
          try {
          label = (DefaultTreeCellRenderer)super.getTreeCellRendererComponent(tree, value, selected, expanded, leaf, row,
                                                      hasFocus);
          label.setToolTipText(dataObject.getToolTipText());
    // Instead of setToolTipText(), try setBackgroundColor() or setBorder()
         return label;
          } catch (Exception ex) {
          // NullPointerException, usually comes at the start of the Application
          // when the Tree is empty.
          return this;
    }Hope this Helps
    Regards
    Raheel

  • Still confused over fup changes to Total BB option...

    There still seems to be confusion over the planned changes for Total BB Option 1 customers.
    Although KerryG has informed us that the monthly allowance will remain at 10Gb and the charge for additional use will be changing to £5 per 5Gb, BT customer services seem to think the extra usage charge remains the same as it is now.
    Please see posts from KerryG and bobm here -
    http://community.bt.com/t5/BB-in-Home/WHERE-IS-OUR​-USAGE-MONITOR-BT/m-p/41085#M24680
    Does anyone have any further info please ?

    Hi Del
    I can confirm that the info I provided on the earlier thread was correct.  I am sorry if people have received other information when calling in.  I have fed this back to the relevant teams to make sure all advisors are aware of these recent changes. 
    To clarify, the position for BT Total Broadband Option 1 is:
    Usage allowance – will remain at 10GB
    Additional usage charges – they will be charged at 5GB for £5 (rather than 1GB for £1) as from November 1st 2010.
    As mentioned before, there are a couple of links that may be useful for those who think they may be likely to incur additional usage charges and wish to review which broadband option is best for them:
    Details of usage allowances for each option
    Details of options for upgrading your broadband package
    Thx
    Kerry
    Retired BTCare Community Manager - StephanieG and SeanD are your new Community Managers
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Confusion over Native Query Result List

    I have this confusion over the field object of a resultList of a Native query. This is because it has contradicted the idea of the books for me.
    This is a pure example
    @SqlResultSetMapping(name="LoanCapitalization.reportMapping",
    columns={
        @ColumnResult(name="policy_number"),
        @ColumnResult(name="policy_holder"),
        @ColumnResult(name="amount"),
        @ColumnResult(name="outstanding_loan"),
        @ColumnResult(name="interest"),
        @ColumnResult(name="amount_to_date"),
        @ColumnResult(name="effective_date"),
        @ColumnResult(name="sub_system_code")
    @NamedNativeQuery(name="LoanCapitalization.aggregateStatement", query="SELECT   l.policy_number, l.last_name || ' ' || l.first_name as " +
            "policy_holder, l.amount, c.out_principal_bf as outstanding_loan, c.out_interest_bf as interest, " +
            "SUM (r.repayment_amount) as amount_to_date, c.effective_date, l.sub_system_code FROM loan l JOIN v_latest_capitalization c " +
            "ON l.loan_id = c.loan_id JOIN loan_repayment r ON l.loan_id = r.loan_id WHERE " +
            "c.effective_date BETWEEN ?1 AND ?2 GROUP BY l.policy_number, l.last_name, l.first_name, l.amount, " +
            "c.out_principal_bf, c.out_interest_bf, c.effective_date, l.sub_system_code order by l.sub_system_code, l.last_name",
            resultSetMapping="LoanCapitalization.reportMapping")and
    Query query = entityManager.createNamedQuery("LoanCapitalization.aggregateStatement");
            AggregateStatementLoanBalanceReportData data = null;
            List<AggregateStatementLoanBalanceReportData> returnList = new ArrayList<AggregateStatementLoanBalanceReportData>();
            query.setParameter(1, reportCriteria.getFromDate());
            query.setParameter(2, reportCriteria.getToDate());
            List<Object[]> resultList = query.getResultList();
            System.out.println("resultList.size() >>>>>>>>>> " + resultList.size());
            for (Object[] obj : resultList){
                data = new AggregateStatementLoanBalanceReportData();
                System.out.println("(String)obj[1] >>>>>>>>>> " + (String)obj[1]);
                System.out.println("(String)obj[2] >>>>>>>>>> " + (String)obj[2]);
                System.out.println("(String)obj[3] >>>>>>>>>> " + (String)obj[3]);
                System.out.println("(String)obj[4] >>>>>>>>>> " + (String)obj[4]);
                System.out.println("(String)obj[5] >>>>>>>>>> " + (String)obj[5]);
                System.out.println("(String)obj[6] >>>>>>>>>> " + (String)obj[6]);
                data.setPolicyNumber((String)obj[0]);
                data.setName((String)obj[1]);
    .......My first shocking surpise is that all the System.out.println() return nulls but
    System.out.println("resultList.size() >>>>>>>>>> " + resultList.size()); returned 1.
    so can anyone suggest what the problem may be.
    Regards,
    Michael

    I came across your post as I experienced the same problem. As I found no answers I tried different let's say stupid solutions.
    The one that solved my problem was to write the name for the @ColumnResult in capitals as I noticed that Oracle transforms the alias column names into capitals. I guess otherwise the mapping doesn't occur correctly.
    My example:
    @SqlResultSetMappings({
    @SqlResultSetMapping(
    name = "Customers.searchCustomers",
    entities =
    @EntityResult(entityClass = Customers.class)
    columns =
    @ColumnResult(name = "CONTACTDATE"),
    @ColumnResult(name = "CONTRACTDATE")
    String queryString =
    "SELECT c.CUSTOMER_ID, c.LAST_NAME, c.FIRST_NAME, c.OPU, c.CUSTOMER_CORE_ID, " +
    "to_char(con.CONTACT_DATE, 'yyyy-dd-mm') AS CONTACTDATE, to_char(contr.CONTRACT_DATE, 'yyyy-dd-mm') AS CONTRACTDATE " +
    "FROM CUSTOMERS c " +
    "LEFT JOIN CONTACTS con ON con.CUSTOMER_ID = c.CUSTOMER_ID AND con.ACTIVE = '1' " +
    "LEFT JOIN CONTRACTS contr ON contr.CUSTOMER_ID = c.CUSTOMER_ID AND contr.ACTIVE = '1' " +
    "WHERE c.CAMPAIGN_ID = ?1 AND upper(c.LAST_NAME) LIKE ?2 AND upper(c.FIRST_NAME) LIKE ?3";
    query = em.createNativeQuery(queryString,
    "Customers.searchCustomers");

  • Premier Elements 7 - confusion over mixing video formats

    Hi
    I have been using a DV camcorder (SD quality) for some time, originally recording in 4:3 format, and more recently in 16:9 format (as we bought a wide screen telly).
    I have just treated myself to a new AVCHD Panasonic video recorder recording High Definition footage in 1080 16:9 PAL format onto an SD memory card.
    I wanted to take all this footage and put it on my computer to edit it together and start making some films to keep for the future - on DVD for now, and at some point on Blue Ray. To this end I have just purchased Adobe Premier Element 7.0, with Photoshop Elements 7.0 bundled together.
    My confusion is that it appears I can only use one format in a "project" as I need to define the parameters for the "project" in terms of SD vs HD and 4:3 vs 16:9. I was hoping to be able to store all of my footage of various quality definitions and screen ratils into a "library" (which I see is called "Organiser" in Adobe terms) on the hard disk, and then pick and choose from the "library" what to put into each "film project" as I make them, mixing formats as I wish. I realise that in this way, the output would itself switch from 3:4 to 16:9 etc on accasions as I switch scene to use a different format, and so may not appear to be the smoothest edit.... but I thought that would be my decision to do if I wanted it. Instead it appears I cannot mix a few minutes if 4:3 SD footage of my son as a baby, with more recent 16:9 1080 HD footage of him as a boy - which is a real shame as it is what I wanted to do....
    Have I misunderstood, or am I right in thinking I am limited in this way?
    Why can I mix still photos of any format with video , but not mix different formats of PAL video?
    Many thanks

    Thanks Paul
    I have been having go, as you suggest, and as you said, I cannot edit my AVCHD footage in Scene mode as it has 5.1 audio (which I cannot change on the videocam) This is very disappointing as I really wanted the simplicity of the scene editing rather than timeline.... This is compounded by the fact that timeline editing seems even more complicated than normal as each new AVCHD clip I add is placed onto a different video track (not all on track 4 as you thought)- so it is real mess to work out on my screen.... Is this a bug, the way PRE treats 5.1 tracks - or is it just oversight and poor design? Do you think it might be addressed by Adobe?
    Anyhow, thanks for explaining what is going on, as without your warning, I would have assumed that the PRE 7 sceneline feature was broken - you would have thought there would be some warning / documentation from Adobe about this, as effectively, a big feature is now unavailable to me as an AVCHD user - and the product claims to be compatible with AVCHD!
    Would you be able to advise on a couple more of my "newbie" file format questions?
    How do the settings work between setting the initial PROJECT format, and then choosing the various OUTPUT (sharing) settings. For example, if I want to edit a project using AVCHD clips only, and output it to DVD quality to watch on a PC or burn to DVD disk, do I get the same thing if I set the project setting to PAL AVCHD High Def 1080 5.1 and then the share setting to DVD quality output, as I would if I set the project settings to DV 48hz and the share setting to DVD quality output?
    My ideal would be to retain the High Definition of the footage through the editing process and then be able to output to DVD quality now, but to be able to come back to the finished edited project in the future and choose to output it to Blueray when I have upgraded my TV and bought a blueray player. i.e. I am trying to make my filming and edited projects a bit futureproof....
    Finally, I am just not up enough on all the different format lingos (Mpeg1, MPeg2, H.116 etc) to know what I should be choosing from the list for:
    1) outputting edited footage to burn onto a DVD to be used on a DVD player
    2) outputting edited footage to save onto a PC to view in the best possible quality on a PC
    Do you know?
    Many thanks

  • Generating user defined nodes

    Can anyone tell me how I can generate a user defined number of Graph.Nodes from the keyboard instead of going through them one at a time please. I have tried to use a for loop but I can't get it to work.
    Can anyone help.
    import java.util.Iterator;
    public class GraphTest{
         public static void main(String[] args){
              ASDigraph graph = new ASDigraph();
              // Instead of the following I would like the user to type a number
              // from the keyboard to generate any number of nodes.
              Graph.Node nodeA = graph.addNode("A");
              Graph.Node nodeB = graph.addNode("B");
              Graph.Node nodeC = graph.addNode("C");
              Graph.Node nodeD = graph.addNode("D");
              Graph.Node nodeE = graph.addNode("E");
              Graph.Node nodeF = graph.addNode("F");
              // There is other code here to generate random edges to each
              // vertex
              Iterator iter;
              iter = graph.successors(nodeA);
              System.out.println("Depth first search starting at A:");
              while(iter.hasNext()){
                   Graph.Node node = (Graph.Node) iter.next();
                   System.out.print(node.getElement() + " ");
              System.out.println('\n');
    //This is the method used to add a node to the graph. This is taken from the ASDigraph class
    public Graph.Node addNode (Object elem) {
        // Add to this graph a new node containing element elem, but with no
        // connecting edges, and return the new node.
            ASDigraph.Node node = new ASDigraph.Node(elem);
            node.prevNode = null;
            node.nextNode = firstNode;
            firstNode = node;
            size++;
            return node;
    //I also use this Input class for user entry from the keyboard. For instance: -
    // Create nodes
              System.out.print("Enter the number of nodes : ");
              nodeLength = new int[Input.readInt()];
              //Initialize each node an element
              for(i=1; i<nodeLength.length; i++){     
                   // I tried to generate nodes from here
    import java.io.*;
    // Input class
    public class Input
            public static int readInt()
               byte nos[] = new byte[12];  //*** Stores characters read ***
               int noread;                 //*** Number of characters read ***
               //*** Read keys pressed as a set of bytes ***
               try
                    noread = System.in.read(nos) - 2; //*** Ignore \n and \r ***
               catch(IOException e){}
               int v = 0;
               int multiplier = 1;
               int start = 0;
               //*** IF it starts with a minus THEN ***
               if(nos[0]=='-')
                    //*** Start at the second char and change the sign ***
                    start=1;
                    multiplier= -1;
               //*** Create a value from the bytes ***
               for(int c=start;nos[c] !=13;c++)
                    v = v*10 + nos[c] - '0';
               return v*multiplier;
            public static float readFloat()
               byte nos[] = new byte[15];
               int noread;
               //*** Read keys pressed as a set of bytes ***
               try
                    noread = System.in.read(nos) - 2; //*** Ignore \n and \r
               catch(IOException e){}
               boolean frac=false;
               float v=0;
               float dp=0;
               int multiplier=1;
               int start=0;
               //*** IF first character is minus THEN ***
               if(nos[0]=='-')
                    //***Start at second character and change sign ***
                    start=1;
                    multiplier=1;
               //*** Convert to number ***
               for(int c=start; nos[c]!=13; c++)
                    if(nos[c]==(int)'.')
                            frac=true;
                            dp=10;
                            continue;
                     if(!frac)
                            v = v*10 +nos[c] - '0';
                     else
                            v = v+(float)((nos[c]-'0')/dp);
                            dp*=10;
                return v*multiplier;
             public static char readChar()
               byte nos[] = new byte[10];
               int noread=0;
               //*** Read keys pressed as a set of bytes ***
               try
                    noread = System.in.read(nos) - 2; //*** Ignore \n and \r
               catch(IOException e){}
               if(noread>0)
                    return (char)nos[0];
               else
                    return'\0';
             public static String readString()
               byte nos[] = new byte[80];
               int noread=0;
               //*** Read keys pressed as a set of bytes ***
               try
                    noread = System.in.read(nos) - 2; //*** Ignore \n and \r
               catch(IOException e){}
               String s="";
               //*** Convert bytes to  characters and add to string ***
               for(int p=0; p<noread; p++)
                    s=s+(char)nos[p];
               return s;
    }

    Take a look at [url http://forum.java.sun.com/thread.jsp?thread=515624&forum=31&message=2456219]reply #1 here.

  • Confusion over ASM

    Hi All,
    i was going through ASM docs and so far my understanding " its is purely an instance which has got only the metadata of all the RDBMS instances using that ASM"
    In ASM instance we dont have redo log file, datafiles etc then what is the functionality of DBWr and LGWr background processes in ASM instnace?
    Regards,
    ASM

    Hans Forbrich wrote:
    Aman,
    Even I started with the misinterpretation that ASM handles I/O for the database. Not quite correct.
    In the simplest explanation of ASM I've come up with is: Actual database I/O is 'raw', with the benefit that ASM manages the table of contents of the disk. The database server process asks ASM where to start reading; the DBWR asks ASM where to start writing - both server process and DBWR still operate.
    "The Oracle ASM instance manages the metadata and provides space allocation for the Oracle ASM files. When a database instance creates or opens an Oracle ASM file, it communicates those requests to the Oracle ASM instance. In response, the Oracle ASM instance provides file extent map information to the database instance."
    This is taken from the 11gR2 ASM manual in Chapter 1 http://download.oracle.com/docs/cd/E11882_01/server.112/e10500/toc.htm at Fig 1-1
    Hans,
    Thanks so much for the correction and for the link. I stand corrected, ASM does teh metadata writes only, the actual data IO operations are handled by the db's background processes only.
    Just now, I opened [ASM Under the Hood book|http://www.amazon.com/Oracle-Automatic-Storage-Management-Under/dp/0071496076] and was reading it to find the answer and page no 44 clearly mentioned the same what you have just said. Here is a note from the same page about DBWR ,
    >
    This processes manages the SGA buffer cache in the ASM instance. DBWR writes out dirty buffers ( changed metadata buffers ) from ASM buffer cache to disk. >
    Which I believe is a very clear explanation that ASM processes just maintain metadata stuff. Thanks so much once again!
    @Gurfan, Eduardo,
    Apologies for any confusion that I unknowingly have created. Please read Hans's reply and mine over here.
    regards
    Aman....
    Edited by: Aman.... on Oct 10, 2009 7:24 AM corrected page no, it was 44 :-( .

  • Request help for confusion over Oracle single instance database

    Hello all,
    Following Oracle version was installed at the client site @ the moment
    Oracle Database 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64) on Non-Clustered enviornment.
    The clients are going to arrange another identical server and wants to configure it with 2 nodes windows cluster enviornement.
    The current server where Oracle server was installed will become active node of the cluster.
    The confusion is if we should install the following version on node 2
    Oracle Clusterware 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64)
    or
    node 2 should also be installed with
    Oracle Database 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64) version ?
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/111060-win64soft-099656.html
    Any help for removing confusion would be appreciated
    Thanks,

    I think it's first needed to think about what kind of configuration you want; Failsafe, DataGuard or even RAC? But you talk about clustered and an active node, so I take it the object is to create a Failsafe cluster.
    If you want to use FailSafe first read about it, for example use http://www.oracle.com/technetwork/database/windows/index-082893.html (Resources: Documentation)
    Eric

  • Confused over photostream and I cloud, how to move my pictures

    Hi, 
    I have an iPhone 4S and an iPad 2.  Apple store sold me cloud storage over a year ago as my phone needed to be replaced under warranty and I had to back up.  I paid to continue after the year was up. 
    I am horribly confused however as I apparently have 15GB storage I have paid for with 10.6GB available and yet I cannot change to iOS 7 as there isn't enough memory in my phone. 
    I have synced to iTunes and can't get to my photos which are in photo-stream.  Ideally I would like to take all of my photos in photostream and save them onto my PC but I don't know where they are in order to do this.
    Any help much appreciated as I'm about to throw the lot out of the window having read what feels like the entire apple support community and getting more and more confused.
    Many thanks
    Lisa

    As I think you have realised, you need space on your phone for the update.
    Welcome to the Apple Community.
    My webpage here might help you understand the various ways photos can be saved on your device and some of the advantages and disadvantages associated with each method.

  • Confusion over sequences in Goldengate

    I've got two databases on the same (test) server which I've set up with Goldengate.
    The databases are both 10.2.0.4 64-bit on RHEL5, and the Goldengate version is 11.2.1.0.1 for 10g.
    Source=PROD
    Target=PROD11G (in anticipation of being upgraded...)
    I've successfully configured Golgengate so the database was replicating DML and DDL, but realised I forgot to install support for Oracle sequences.
    Following the instructions on pg 32 of the Goldengate Installation Guide, I ran the sequence.sql script as sysdba on both databases and pointed it to my existing 'GGATE' schema owner.
    On the source system I've also run: alter table sys.seq$ add supplemental log data (primary key) columns;
    ... but I'm confused about steps 8 and 9 which are:
    8. on source
    GRANT EXECUTE on DDLuser.updateSequence TO DBLOGINuser;
    9. on target
    GRANT EXECUTE on DDLuser.replicateSequence TO Replicatuser;
    The DDLuser is my 'GGATE' schema owner, but who is DBLOGINuser and ReplicatUser. Is this the schema(s) referred to in my extract group? i.e. sure006 (btw,... I tried but still get the below error when starting replicat).
    Anyway,... I now start the replicat process and it abends with the below error:
    2012-07-06 14:03:44  INFO    OGG-00996  Oracle GoldenGate Delivery for Oracle, rep1.prm:  REPLICAT REP1 started.
    2012-07-06 14:03:44  INFO    OGG-01407  Oracle GoldenGate Delivery for Oracle, rep1.prm:  Setting current schema for DDL operation to [SYS].
    2012-07-06 14:03:44  ERROR   OGG-00519  Oracle GoldenGate Delivery for Oracle, rep1.prm:  Fatal error executing DDL replication: error [Error code [24344], ORA-24344: success with compilation error SQL CREATE OR REPLACE PROCEDURE "GGATE" .replicateSequence (
       sourceHWM IN  NUMBER,
       maxDistance  IN NUMBER,
       seqFlush IN  NUMBER,
       seqOwner IN  VARCHAR2,
       seqUpdate IN  NUMBER,
       seqName IN  VARCHAR2,
       loggedUser IN  VARCHAR2,
       racTarget IN  NUMBER,
       isTrace IN  NUMBER,
       traceUser IN  VARCHAR2
    AUTHID current_user
    IS
    PRAGMA autonomous_transaction;
    newSeqVal NUMBER;
    HWMTarget NUMBER;
    HWMTargetNext NUMBER;
    maxVal NUMBER;
    minVal NUMBER;
    cnt NUMBER;
    numberOfSimulatedHWTargetMoves NUMBER;
    simulateHWTargetStart NUMBER;
    simulateHWTargetEnd NUMBER;
    HWMOnSource NUMBER;
    isFound NUMBER;
    distance NUMBER;
    firstPass NUMBER;
    isCycle NUMBER;
    incBy NUMBER;
    flushStmt VARCHAR2(1000);
    objId NUMBER;
    sCache NUMBER;
    mDist NUMBER;
    BEGIN
       firstPass := 1;
       IF isTrace = 1 THEN
           "GGATE" .seqTrace  ('BEGIN "' || traceUser || '".trace_put_line(''SEQUENCEREP'', ''################ STARTING SEQUENCE REPLICATION FOR '' || '''|| seqOwner || '.' || seqName ||  '''); END;', traceUser);
           "GGATE" .seqTrace  ('BEGIN "' || traceUser || '".trace_put_line(''SEQUENCEREP'', ''INPUT IS: sourceHWM '' || '''
           || to_char(sourceHWM) || ''' || '' maxDistance '' || ''' || to_char(maxDistance) ||  ''' || '' seqFlush '' || ''' || to_char(seqFlush) ||  ''' || '' seqOwner '' || ''' || seqOwner || ''' || '' seqUpdate '' || ''' || to_char(seqUpdate) || ''' || '' seqName '' || ''' || to_char(seqName) || ''' || '' loggedUser '' || ''' || to_char(loggedUser) || ''' || '' racTarget '' || ''' || racTarget || ''' || '' isTrace '' || ''' || to_char(isTrace) || ''' || '' traceUser '' || ''' || traceUser ||'''); END;', traceUser);
       END IF;
       -- set current schema to sequence owner. This is to avoid issues when there is a table name same as schema
       -- name in which case sequence name is treated a column to table name and things fail
       EXECUTE IMMEDIATE ('ALTER SESSION SET CURRENT_SCHEMA="' || seqOwner || '"');
       -- we d.
    2012-07-06 14:03:44  ERROR   OGG-01668  Oracle GoldenGate Delivery for Oracle, rep1.prm:  PROCESS ABENDING.I'm obviously doing something stupid, but can't realise what it is.
    I see from the second INFO line that my current schema is being set to SYS. Should I be granting the execute privileges to SYS? (if so, the doc isn't at all clear)
    I've included my manager, extract and replicat parameter files if that helps.
    GLOBALS
    ===========
    GGSCHEMA ggate
    CHECKPOINTTABLE ggate.chkptab
    mgr.prm
    ===========
    PORT 7809
    USERID ggate, PASSWORD *****
    PURGEOLDEXTRACTS /u04/app/oracle/goldengate/11.2.1.0.1/10g/extracts, USECHECKPOINTS
    ext1.prm
    ===========
    EXTRACT ext1
    USERID ggate@prod, PASSWORD *****
    RMTHOST prod2.ctru.auckland.ac.nz, MGRPORT 7809
    RMTTRAIL /u04/app/oracle/goldengate/11.2.1.0.1/10g/dirdat/rt
    DDL INCLUDE ALL
    DDLOPTIONS ADDTRANDATA
    TABLE sure006.*;
    rep1.prm
    ===========
    REPLICAT rep1
    ASSUMETARGETDEFS
    USERID ggate@prod11g, PASSWORD *****
    DISCARDFILE /u04/app/oracle/goldengate/11.2.1.0.1/10g/dirdat/discard, append
    MAP sure006.*, TARGET sure006.*;Edited by: stuartu on Jul 6, 2012 3:07 PM

    doh!,... looks like I must have run the sequence.sql script in the source both times (the REPLICATESEQUENCE procedure in GGATE schema was invalid). I ran sequence.sql in the target and now replicat starts fine.
    although now I see that the sequence still isn't being incremented on the target....
    SQL>
    SQL> !echo $ORACLE_SID
    PROD
    SQL> conn sure006/********
    Connected.
    SQL> create table test_sequence ( mysequence number );
    Table created.
    SQL> create sequence test_seq start with 1 increment by 1 nocache;
    Sequence created.
    SQL> insert into test_sequence values ( test_seq.nextval );
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> /
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from test_sequence;
    MYSEQUENCE
          1
          2
          3
          4
          5
          6
          7
          8
          9
         10
         11
         12
    12 rows selected.
    SQL> select * from user_sequences;
    SEQUENCE_NAME               MIN_VALUE  MAX_VALUE INCREMENT_BY C O CACHE_SIZE LAST_NUMBER
    TEST_SEQ                    1 1.0000E+27          1 N N            0       13
    1 row selected.... but on the target (PROD11G) database, the sequence exists but the LAST_NUMBER = 1, not 13.
    SQL> !echo $ORACLE_SID
    PROD11G
    SQL> conn sure006/******
    Connected.
    SQL> select count(*) from test_sequence;
      COUNT(*)
         12
    1 row selected.
    SQL> select * from user_sequences;
    SEQUENCE_NAME               MIN_VALUE  MAX_VALUE INCREMENT_BY C O CACHE_SIZE LAST_NUMBER
    TEST_SEQ                    1 1.0000E+27          1 N N            0        1
    1 row selected.The ggserr.log log only has a warning about the non-uniqueness of the table.
    2012-07-06 14:57:31  WARNING OGG-00869  Oracle GoldenGate Capture for Oracle, ext1.prm:  No unique key is defined for table 'TEST_SEQUENCE'. All viable columns will be used to represent the key, but may not guarantee uniqueness.  KEYCOLS may be used to define the key.
    2012-07-06 14:57:33  WARNING OGG-00869  Oracle GoldenGate Delivery for Oracle, rep1.prm:  No unique key is defined for table 'TEST_SEQUENCE'. All viable columns will be used to represent the key, but may not guarantee uniqueness.  KEYCOLS may be used to define the key.Is there something more I need to do?

  • Tree view control - populating speed - over 100 nodes

    I have a few questions about a tree view control:
    1. If you put more than approximately 100 nodes in a tree, it populates too slow. There is no change if you try with query or record group. I figured that the populating of the record group makes all problems, but there is no chance to enlarge the array siye of the record group. Developer 6 has some built-ins which can do that, bu after many unsuccesful tries I don't see a solution.
    I tried to make fetches from cursor into a record group (30 nodes on a "page", but it looses a real hierarchy and you should do a lot of programming). If anybody knows how to make the population of the tree faster or have some template / please forward.
    2. After we put the patch 5 of developer6, tree view control is totally unpredictable. Usually its when you programmaticaly try to select a node (ftree.set_tree_selection)...Anybody have the same problems?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Natasa Stojovska ([email protected]):
    I have a few questions about a tree view control:
    1. If you put more than approximately 100 nodes in a tree, it populates too slow. There is no change if you try with query or record group. I figured that the populating of the record group makes all problems, but there is no chance to enlarge the array siye of the record group. Developer 6 has some built-ins which can do that, bu after many unsuccesful tries I don't see a solution.
    I tried to make fetches from cursor into a record group (30 nodes on a "page", but it looses a real hierarchy and you should do a lot of programming). If anybody knows how to make the population of the tree faster or have some template / please forward.
    <HR></BLOCKQUOTE>
    Try taking out the 'start with' and 'connect by' clauses in your select statement if you're using them. However, this will mean that you will have to determine the levels of the tree manually and ensure that the data comes out in the same order each time you execute the select statement.
    null

  • Confusion over nested tables and system generated nested tables

    Hi,
    I have been reading other threads about nested tables, naming and updating them etc, but I have what seems
    to me some odd behaviour.
    I modified my schema to set the attribute xdb:maintainDom to be false for a collection and then registered
    the schema with the generate tables option defaulted to true. The result was that I had to add xdb:tableProps
    attributes specifying nested table storage at each element above the collection element, this was because Oracle
    was creating tables at each level. So I have this kind of thing:
    <xsd:element name="BibPt" xdb:SQLType="BIBPT_T"
      xdb:defaultTable="BIBPT"
      xdb:tableProps="NESTED TABLE XMLDATA.PTEES.PTEE_SEC.PTEE STORE AS NESTED_PTEE_SEC
    NESTED TABLE XMLDATA.INVS.INV STORE AS NESTED_INV_BIBPT TABLESPACE BIBLIO">
    <xsd:element name="Ptees" xdb:SQLType="PTEES_T" xdb:tableProps="NESTED TABLE
    XMLDATA.PTEE_SEC.PTEE STORE AS NESTED_PTEE_SEC2">When I did this the nested tables were created, but when I loaded data never had anything in them. Instead
    I found that nestes tables with systems generated names like "SYSNTxxxxxxxxx" has been created that contained
    the data.
    When I registered the schema without the tables being generated, I created a table with this syntax:
    create table poc_wip2 of xmltype
    xmlschema "http://www.derwent.co.uk/wpi.xsd" element "WPI"
    NESTED TABLE XMLDATA."BibPt".PTEES.PTEE_SEC.PTEE STORE AS NESTED_PTEE_SEC
    NESTED TABLE XMLDATA."BibPt".INVS.INV STORE AS NESTED_INV_BIBPT(Thanks to a posting by Sam Monsarrat which showed me this was possible).
    Now I had my named nested tables, which contained the data after it was loaded and no system named
    nested tables.
    So why the difference?
    In the first instance why do my named nested tables stay empty and why does the data go into system
    generated tables I have no control over as regards tablespace placement?
    Is it possible to have a XML schema registered that only generates tables that I have named with the defaultTable
    attribute, rather than all or nothing?
    And last but not least, what's the best approach for this, since I want to be able to access the data via indexes
    on the nested tables.
    Thanks
    Pete

    Hi Pete
    Would you please publish the schema you are using?
    Thanks,
    Tobias

  • Very Confused over Reinstall Discs, Recovery Discs and how do I CREATE THEM!

    I am the owner of a Lenova IdeaCenter K300 Computer with Windows 7 64Bit OS
    The system has been running for just about a year now...no issues, very stable...however after a recent issue with another computer MFG system...I have questions:
    First the Other MFG system - The computer was purchased in April of 2008 with Windows Vista, the computer was unplugged on November 1, 2008 and stored in a cool Dry place....In October of 2011 My Godson wanted a new computer and I told him I have a computer that was lightly used and would do what he wanted it to do.
    I plugged in a monitor, keyboard, mouse, and turned on the unit when MUCH to my surprise the HD had failed...BADLY...so I went to a local store, purchased a new HD and installed it on the machine. 
    First let me explain that this computer MFG after several calls to them looking for help.. explained to me the following
    1: Reinstall Discs were NOT avail
    2: The System did not support creating Recovery discs since all the information that the system needed was stored on
        the Hard Drive that was supplied with the system...and that the OEM Windows VISTA version was available to use for
        3 years
    I said Okay, but I have a computer that had a HD failure so how do I go about reinstalling Windows Vista to get the computer up and running again?  They told me that I had to PURCHASE from a store a copy of Windows Vista.   I said that I had from two other computers from another MFG Windows Vista Reinstall Discs, can I use those, and use the Product Key code supplied by YOUR company to reintsall the OS?  They said NO...you need the orginal Hard Drive....I was like WHAT!
    Needless to say you can imagine my EXTREME frustration over not being able to get the computer up and running again.  After several calls to the Presidents Office I was finally....after 6 weeks of battle able for a cost mind you of $19.99 to get physical DVD's to reintall Windows Vista onto the system - (they should arrive this week)
    So now I am sitting in front of this LENOVA computer wondering ...Worse CaseScenerio...HD FAILURE...and lets face it it DOES HAPPEN.
    so here are my questions
    1: What is the difference between Recovery Disc and Reinstall Dics?
    2: If this Lenova System can only Create Recovery Discs ...and the HD needs to be replaced will the Recovery discs reintsall Windows 7 on this system?
    3: How do I create these discs...I found an option on Lenova Rescue System to create Recovery Discs but it was 24  4.5 GB DVD's to do this?  Windows Vista only needed 2
    Am I missing something here can some one Please help me
    thank you!

    They should sell you recovery disc without any problems. If you call customer service and you feel that the conversation is going no ware you probably talking to wrong person. Disconnect and tray another time, you will never speak to the same person twice
    OEM reinstall disc doesn’t need activation, retail windows disc needs but you have serial number on the sticker so just call Microsoft and activate it.
    Recovery disc is a copy of your computer hard drive with windows, drivers, software included
    Reinstall disc is the same for all computers with windows only, you have to install drivers and software separately
    Reinstall OEM disc is only for Lenovo system but it is the same like retail windows disc with added pre-activation

  • Confusion over DBCA script generated for manual RAC DB creation

    Version:11.2.0.4/RHEL 6.3
    We would like to create our 3-node RAC DB manually.  DBCA cannot meet our requirement because our redo log files, datafiles, tempfiles and control files are placed in a complicated manner . If we use DBCA , we will have to spend a lot of time configuring to our requirements after the DB creation.
    I generated the DB creation scripts from DBCA (DB Name = BRCFPRD )
    DBCA placed the db creation scripts in the specified directory in all the 3 nodes !!
    They all have almost the same contents . The only difference being the instance name (BRCFPRD12.sql for Node2, ... etc).
    Scripts in each node have the createDB.sql statement which has CREATE DATABASE "BRCFPRD" statement. Why is this ? The database need to be created only from one node. Then why did DBCA place createDB.sql in all nodes ?
    I just want to run the script from just one node , say Node1 and it should create the 3-Node RAC DB. How can I do this manually?
    -- The scripts genereated by DBCA in Node1
    apex.sql
    BRCFPRD1.sh
    BRCFPRD1.sql
    context.sql
    CreateClustDBViews.sql
    CreateDB.sql
    CreateDBCatalog.sql
    CreateDBFiles.sql
    cwmlite.sql
    emRepository.sql
    init.ora
    interMedia.sql
    JServer.sql
    lockAccount.sql
    ordinst.sql
    owb.sql
    postDBCreation.sql
    spatial.sql
    xdb_protocol.sql
    -- The contents of the main shell script BRCFPRD1.sh
    $ cat BRCFPRD1.sh
    #!/bin/sh
    OLD_UMASK=`umask`
    umask 0027
    mkdir -p /optware/product/admin/BRCFPRD/adump
    mkdir -p /optware/product/admin/BRCFPRD/dpdump
    mkdir -p /optware/product/admin/BRCFPRD/hdump
    mkdir -p /optware/product/admin/BRCFPRD/pfile
    mkdir -p /optware/product/cfgtoollogs/dbca/BRCFPRD
    umask ${OLD_UMASK}
    ORACLE_SID=BRCFPRD1; export ORACLE_SID
    PATH=$ORACLE_HOME/bin:$PATH; export PATH
    echo You should Add this entry in the /etc/oratab: BRCFPRD:/optware/product/oracle/11.2.0:Y
    /optware/product/oracle/11.2.0/bin/sqlplus /nolog @/optware/product/BRCFPRD1.sql
    -- Contents of BRCFSPRD1.sql
    $ cat BRCFPRD1.sql
    set verify off
    ACCEPT sysPassword CHAR PROMPT 'Enter new password for SYS: ' HIDE
    ACCEPT systemPassword CHAR PROMPT 'Enter new password for SYSTEM: ' HIDE
    ACCEPT sysmanPassword CHAR PROMPT 'Enter new password for SYSMAN: ' HIDE
    ACCEPT dbsnmpPassword CHAR PROMPT 'Enter new password for DBSNMP: ' HIDE
    host /optware/product/oracle/11.2.0/bin/orapwd file=/optware/product/oracle/11.2.0/dbs/orapwBRCFPRD1 force=y
    host /grid/product/11.2.0/bin/setasmgidwrap o=/optware/product/oracle/11.2.0/bin/oracle
    host /optware/product/oracle/11.2.0/bin/srvctl add database -d BRCFPRD -o /optware/product/oracle/11.2.0 -p +DATA/BRCFPRD/spfileBRCFPRD.ora -n BRCFPRD -a "DATA,ARCH_DG"
    host /optware/product/oracle/11.2.0/bin/srvctl add instance -d BRCFPRD -i BRCFPRD1 -n cimprd175
    host /optware/product/oracle/11.2.0/bin/srvctl add instance -d BRCFPRD -i BRCFPRD3 -n cimprd177
    host /optware/product/oracle/11.2.0/bin/srvctl add instance -d BRCFPRD -i BRCFPRD2 -n cimprd176
    host /optware/product/oracle/11.2.0/bin/srvctl disable database -d BRCFPRD
    @/optware/product/CreateDB.sql
    @/optware/product/CreateDBFiles.sql
    @/optware/product/CreateDBCatalog.sql
    @/optware/product/JServer.sql
    @/optware/product/context.sql
    @/optware/product/xdb_protocol.sql
    @/optware/product/ordinst.sql
    @/optware/product/interMedia.sql
    @/optware/product/cwmlite.sql
    @/optware/product/spatial.sql
    @/optware/product/emRepository.sql
    @/optware/product/apex.sql
    @/optware/product/owb.sql
    @/optware/product/CreateClustDBViews.sql
    host echo "SPFILE='+DATA/BRCFPRD/spfileBRCFPRD.ora'" > /optware/product/oracle/11.2.0/dbs/initBRCFPRD1.ora
    @/optware/product/lockAccount.sql
    @/optware/product/postDBCreation.sql
    -- Contents of CreateDB.sql in Node1
    $ cat /optware/product/CreateDB.sql
    SET VERIFY OFF
    connect "SYS"/"&&sysPassword" as SYSDBA
    set echo on
    spool /optware/product/CreateDB.log append
    startup nomount pfile="/optware/product/init.ora";
    CREATE DATABASE "BRCFPRD"
    MAXINSTANCES 32
    MAXLOGHISTORY 1
    MAXLOGFILES 192
    MAXLOGMEMBERS 3
    MAXDATAFILES 3000
    DATAFILE SIZE 700M AUTOEXTEND ON NEXT  10240K MAXSIZE UNLIMITED
    EXTENT MANAGEMENT LOCAL
    SYSAUX DATAFILE SIZE 600M AUTOEXTEND ON NEXT  10240K MAXSIZE UNLIMITED
    SMALLFILE DEFAULT TEMPORARY TABLESPACE TEMP TEMPFILE SIZE 20M AUTOEXTEND ON NEXT  640K MAXSIZE UNLIMITED
    SMALLFILE UNDO TABLESPACE "UNDOTBS1" DATAFILE SIZE 200M AUTOEXTEND ON NEXT  5120K MAXSIZE UNLIMITED
    CHARACTER SET AL32UTF8
    NATIONAL CHARACTER SET AL16UTF16
    LOGFILE GROUP 1  SIZE 28672M,
    GROUP 2  SIZE 28672M
    USER SYS IDENTIFIED BY "&&sysPassword" USER SYSTEM IDENTIFIED BY "&&systemPassword";
    set linesize 2048;
    column ctl_files NEW_VALUE ctl_files;
    select concat('control_files=''', concat(replace(value, ', ', ''','''), '''')) ctl_files from v$parameter where name ='control_files';
    host echo &ctl_files >>/optware/product/init.ora;
    spool off

    If you look at scripts generated in Node2 and Node3 , you can see all scripts except the instance specific ones are commented using REM .
    REM host /u01/product/oracle/11.2.0.3/dbhome_1/bin/srvctl add instance -d STOMPER -i STOMPER1 -n ugxtlprd186
    REM host /u01/product/oracle/11.2.0.3/dbhome_1/bin/srvctl add instance -d STOMPER -i STOMPER2 -n ugxtlprd187
    REM host /u01/product/oracle/11.2.0.3/dbhome_1/bin/srvctl disable database -d STOMPER
    REM @/u01/product/CreateDB.sql
    REM @/u01/product/CreateDBFiles.sql
    REM @/u01/product/CreateDBCatalog.sql
    REM @/u01/product/JServer.sql
    REM @/u01/product/context.sql
    <snipped >

  • Confused over saving files in Bridge or Camera Raw CS4

    I'm a little confused the way Bridge and Camera Raw saves files that have been adjusted. For example, when I took a photo and just applied a crop to it, I clicked on "save image" in camera raw, set up a new folder and new file name. I clicked on ok expecting to see the uncropped photo in the original source folder. What I saw was the cropped photo under the original file name.
    Ultimately I found the original file by looking through explorer. I guess my question is, Is there a tutorial that explains the way Bridge/Camera Raw saves files?
    Appreciate the help

    The changes applied by Camera Raw are saved as metadata, a few lines of code added to the file or to a separate XML file. If you want to save the changes done by Camera Raw then simply click on Done, the Save button will save a copy, not the current changes back onto the original file.
    Check out the section on Camera Raw from the Help files:
    http://help.adobe.com/en_US/Photoshop/11.0/WSB5C0E258-66DE-4089-9CB0-42F396E2B814.html

Maybe you are looking for

  • Replicatiin of Routes in Sales order

    Hi, We are working on CRM 5.0 with ECC 6.0 as backend. We are creating sales orders in ECC and replicating to CRM. Now the issue is how to replicate routes from the ECC sales order to CRM Sales order. Can anybody help us in understanding replication 

  • PCR (Personnel Change Request) in ess/mss workflow number

    Hi , i am working on PCR (Personnel Change Request) Hr workflow object it is es/mss object.please tell me is there any standard workflow available for this .if so please tell me the workflow number. Regards, charita.

  • Title-template-problem

    I probably hit a "wrong key" - but suddenly my title-template in Premiere Pro CS6 looks quite different! I´m not able to choose fonds or to press T for writing a title - Can anyone tell me how to reset the title-template to default? Your help will be

  • Can I erase ... ?

    In the App folder, I have iWork08 which contains Keynote (version 4.0.4), Numbers (1.0.3), and Pages (3.0.3); iWork09 which contains Keynote (5.3), Numbers (2.3) and Pages (4.3); and lastly, stand alone Keynote (6.5.2), Numbers (3.5.2) and Pages (5.5

  • Does anyone know how to correct an incorrect Apple ID (email) that was entered when setting up new iPhone 4S?

    While setting up new iPhone 4S, I mistakenly mistyped my Apple ID (email address) so when I go to app store, that incorrect account is revealed.  Trying to figure out how to change the Apple ID on the iPhone 4S to correct info.  Anyone know how to do