FX Guide to which "Parent Root" is preferred for each task?

I'm basically making this question to enhance my own knowledge of the Parent class and it's subclasses, as well as help anyone else who might be confused on what to use when.
It seems that most cases I've seen call for a group to hold objects, but Group is tricky, because it auto-resizes, and sometimes you don't want that. So where do you go? It seems like Region is possible, but there is Also HBox, and VBox, as well as others.
So in my case I'm looking for an area that I know when I'm in and out of it, as well as something that doesn't resize itself for it's children, and I can intersect it to be able to add the intersecting "children" into it, or out of it, based on it's "region."
Anyone else is welcome to ask about the Parent and it's subclasses, so we may all be able to learn more about each individual part.
Thanks,
~KZ

Hi Ravi,
Can you help me...
Hi All,
I planned to create a job to do rman backup daily at 04:00 AM.
1. I created a program as follows
BEGIN
DBMS_SCHEDULER.CREATE_PROGRAM(
program_name => 'rman_backup_prg',
program_action => '/u02/rmanback/rman.sh',
program_type => 'EXECUTABLE',
comments => 'RMAN BACKUP');
END;
my rman script is
#!/usr/bin/ksh
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
export PATH=$PATH:/u01/app/oracle/product/10.2.0/db_1/bin
/u01/app/oracle/product/10.2.0/db_1/bin/exp rman/cat@catdb file=/u02/rmanback/rm
an_220108.dmp log=/u02/rmanback/rman_220108.log owner=rman statistics=none comp
ress=n buffer=400000
compress *.dmp
exit
2. I created a schedule as follows
BEGIN
DBMS_SCHEDULER.CREATE_SCHEDULE(
schedule_name => 'rman_backup_schedule',
start_date => SYSTIMESTAMP,
end_date => '31-DEC-16 05.00.00 AM',
repeat_interval => 'FREQ=DAILY; BYHOUR=4',
comments => 'Every day at 4 am');
END;
3. I created ajob as follows.
BEGIN
DBMS_SCHEDULER.CREATE_JOB (
job_name => 'rman_backup_job',
program_name => 'rman_backup_prg',
schedule_name => 'rman_backup_schedule',
enabled=> true,
auto_drop=> false
END;
While I am running the job I am getting the following error anybody help me.
ORA-27369: job of type EXECUTABLE failed with exit code: Not owner
ORA-06512: at "SYS.DBMS_ISCHED", line 150
ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
ORA-06512: at line 2
If I removed "compress *.dmp" line in rman script it is working fine.
/* additional Info from dba_scheduler_job_run_details as follows */
ORA-27369: job of type EXECUTABLE failed with exit code: Not owner
STANDARD_ERROR="
Export: Release 10.2.0.3.0 - Production on Tue Jan 22 14:30:08 2008
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Release 10.2.0.3.0 - Production
Export"
Regards,
Kiran

Similar Messages

  • Need to access parent elements in nested for-each loop

    Hi All,
    I have a xslt mapping requirement in which I am completely stuck. The details are as listed below. Please help!
    Schema structure is as follows:
    Root
    Payload
    Transaction-123
    Loop-LINE
    Loop-SDPP
    Segment-FSTT
    Element-111
    Required xslt file structure is:
    <xsl:for-each Loop-LINE>
    <tns:Item>
    <Line-1000>
    <Line-2000>
    <Line-3000>
    <Line-8000>
    <xsl:for-each Loop-SDPP>
    <xsl:for-each Segment-FSTT[ns0:Element-111 != "A"]>
    <SDetails>
    </SDetails>
    <xsl:for-each Loop-LINE> --------- How to access Loop-LINE element from this for loop????
    <tns:Item>
    <2000>
    <2020>
    <2070>
    <2150>
    </tns:Item>
    </xsl:for-each>
    </for-each>
    </for-each>
    </tns:item>
    </for-each>
    Need help in understanding how can I run a for-each loop for Loop-LINE which is two levels up in the schema tree structure.
    Thanks..

    Thanks for this answer but I can't obtain the right output with my test case; the multi column must be in the loop as that :
    ALPHABETICAL INDEX C1
    Alternator .......................................... Feed Pump
    Belt Details / Engine Gaskets Sets ..... Flywheel Housing
    < NEW PAGE>
    INDEX ALPHABETIQUE C2
    Alternateur......................................... Culbuteurs
    Bloc-Cylindres.................................... Demarreur
    Denis

  • A report which displaies Bank Incoming payments for each Customer

    Hi All,
    could anyone show me a report which displaies the Bank Incoming payments for each Customer?
    Thanks
    Gandalf

    Yes u can very well see the Off setting account ( Bank account number ) in the line item report.
    For that small customization is requiered so as to activate the off setting account display in all line item report.
    Just implement the below changes
    NodeFinancial Accounting
    PathIMG u2192 Financial Accounting u2192 Financial Accounting Global Settings u2192 Business Transaction Events
    1                    Active Settings
    Setttings u2192 Products u2192 u2026 of a customer
    Following new product added and activated:
    Product                        -            OFF
    Text                 -            Offsetting account
    Active               -            Yes
    Setttings u2192 P/S Function Modules u2192 u2026 of a customer
    Following new event added:
    Event                      -           00001650
    Product                                    -            OFF
    Ctr                               -            (Leave Blank)
    Appl.                            -            (Leave Blank)
    Function Module -            LINE_ITEMS_GET_GKONT
    The above settings enable the function module for displaying the offsetting account in line item display.
    Ritesh

  • Detect the fields which are primary/foreign keys for each schema's tables

    Hello everybody,
    I'd like to know if it's possible to select a field in one of the dictionary tables to identify the fields of a table which are PK or FK in this one. I'd like to do this to generate the fields that I need to put in a technical design.
    Actually I have this (if it can help you to understand what I'd like to do) :
    select table_name "Table name",
    column_name "Physical field name",
    case when data_type = 'NUMBER' then data_type || '(' || NVL(data_precision,0) || ',' || NVL(data_scale,0) || ')'
    when data_type = 'VARCHAR2' then data_type || '(' || data_length || ')'
    else data_type
    end "Datatype",
    case when nullable = 'Y' then 'FALSE'
    when nullable = 'N' then 'TRUE'
    end "Not null",
    /* Here I'd like to retrieve TRUE or FALSE if the field to display is a primary key or not and the same for foreign keys*/
    from all_tab_columns
    where table_name in (select table_name
    from all_tables
    where table_name like '%project_name%'
    and table_name not like '%TMP%');
    Thanks a lot for your help,
    Florent

    Please investigate all_constraints and all_cons_colums.
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14237/toc.htm

  • Is it possible to specify which cpu to be used for each session ?

    hi ,
    like to check if in Oracle , is there any hints to specify the CPU to be used assuming the server have > 1 ?
    pls advise
    rgds

    We may say the degree of parallelism for a query instead - http://download.oracle.com/docs/cd/B19306_01/server.102/b14223/usingpe.htm#i1009828
    SELECT /*+ parallel(tab,4) */ ....
    Best regards.

  • Connect by query, need root element for each row

    Hi,
    I am working on a hierarchical query, using connect by prior. Each node in the tree has two properties, an type and a sequence.
    The table that contains the hierarchy has 4 fields:
    element_type_from
    element_sequence_from
    element_type_to
    element_sequence_to
    Each child has one parent, a parent can have multiple childeren. For a leaf, the fields element_type_to and element_sequence_to are null.
    To generate a tree you can run:
    select element_type_to
    ,      element_sequence_to
    from   element_hierarchy
    start with element_type_from = [root_element_type]
           and element_sequence_from = [root_element_sequence]
    connect by prior element_type_to = element_type_from
           and prior element_sequence_to = element_sequence_fromThat works fine... however... not only do I want the child elements, I would like to return the root element sequence for each child (in our table the root element type is always the same). There are multiple root elements and I want to create a list containing all trees and each node in the tree must have its root as well.
    There is the option of using sys_connect_by_path. This returns the root, but also the entire path to the current child. Also it returns a varchar2, that needs to be substr-ed and to_number-ed to get to the sequence... not nice.
    warning, extremely ugly (but functional) code:
    select element_type_to
    ,      element_sequence_to
    ,      to_number(substr(sys_connect_by_path(element_sequence_from ,','),2,instr(sys_connect_by_path(element_sequence_from ,',') ||',',',',2)-2)) root_sequence
    from   element_hierarchy
    start with element_type_from = [root_element_type]
           and element_sequence_from = ( select [root_element_sequence] from all_root_elements )
    connect by prior element_type_to = element_type_from
           and prior element_sequence_to = element_sequence_fromThere has to be a simple solution that I am missing here! Can you help?
    Edit: Oops, database version is 10.2.0.4.0

    Hi,
    What you posted was actually the best way to do it in Oracle 9.
    Since you're using Oracle 10, you can use CONNECT_BY_ROOT, as William said:
    select element_type_to
    ,      element_sequence_to
    ,      connect_by_root element_sequence_from  AS root_sequence          -- Changed
    from   element_hierarchy
    start with element_type_from = [root_element_type]
           and element_sequence_from = ( select [root_element_sequence] from all_root_elements )
    connect by prior element_type_to = element_type_from
           and prior element_sequence_to = element_sequence_from 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables, and the results you want from that data.
    Explain how you get those results from that data.

  • Which Macbook Pro is better for a Music Tech major?

    I am going to convert to a Macbook Pro from a PC because of the vast numbers of music programs it offers. I just want to know some opinions of which of the 13.3 inch ones would be best. I know there is a difference between processors, but I'd like to know which one would be better for multi-tasking on the go with programs like Logic Express, Sibelius, and Pro Tools.

    Hi R,
    The fastest CPU (currently 2.7GHz Core i7) with an SSD and the RAM maxed out.

  • Which view format is preferred in Ui5 development ?

    Started with Ui5 a week back and documentation is really good. But when getting hands on with this made me bewildered. Can anyone help me with below queries
    1) Which view is preferred in application development for UI5 ? i can only see Js sample codes in documentations. (IS JS only preferred for development)
    2) Is it possbile to use mixture of View formats in an application ? (XML view and its controller for one screen and HTML view for other screen)

    Thanks ,
    When i look at the api reference of SAPUI5 SDK - Demo Kit  i get the below error. Is something wrong ?
    API Reference 
    sap.ui.core.mvc.View
    HTTP Status 404 - /sdk/docs/docs/api/symbols/sap.ui.core.mvc.View.html
    type Status report
    message /sdk/docs/docs/api/symbols/sap.ui.core.mvc.View.html
    description The requested resource is not available.

  • [svn] 2706: Improve the information given during parse errors by providing more context about which parent token is not expecting a particular child token to follow .

    Revision: 2706<br />Author:   [email protected]<br />Date:     2008-08-01 10:10:58 -0700 (Fri, 01 Aug 2008)<br /><br />Log Message:<br />-----------<br />Improve the information given during parse errors by providing more context about which parent token is not expecting a particular child token to follow.<br /><br />QA: Yes<br />Doc: No<br />Checkintests: Pass<br />Reviewer: Paul<br /><br />Bugs:<br /> SDK-15791 - [MXML Namespaces] Provide better error message when language tags are added as child of Declarations tag<br /> SDK-15659 - [MXML Namespaces] Error message not descriptive when Private tag is not immediate child of mxml document<br /> SDK-15669 - [MXML Namespaces] Error message not descriptive when incorrect <Library> and <Definition> tags are defined<br /><br />Ticket Links:<br />------------<br />    http://bugs.adobe.com/jira/browse/SDK-15791<br />    http://bugs.adobe.com/jira/browse/SDK-15659<br />    http://bugs.adobe.com/jira/browse/SDK-15669<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler_en.properties

    Thank you for the sympathy and the information about the Adobe.com forum Michael.
    I posted here because, to be honest, for a company that's acknowledged their installers and updaters and support needs some work, they seem very determined to obfuscate the means by which users can provide direct feedback to the company. Much like you, I've also noticed a trend in CS5 installations that mirrors the issues that were present in CS4. it's a sad state of affairs.
    As for my installation, you are also quite right to say that a clean install would have been a lot faster than what I went through with TS and it was actually my first idea. Before calling TS I'd actually read through the forums and noticed that a large number of users who were faced with my situation had no other choice but to reformat. I was just giving Adobe the benefit of the doubt and wasted 2 and a half weeks through that course of action...
    What makes this situation even more frustrating is that the installer failed on a fresh system. It was a custom-built design machine, assembled and configured by myself. The only software that had been installed on it prior to Design Premium was Firefox, an FTP client and the start of my problems, trial versions of various CS4 programs. I used trials just long enough to retire the previous design computer so that I wouldn't contravene the EULA's stipulation of not running more than one instance of software at the same time on different machines.  Turns out being honest once again penalised a legal customer.
    If there is just thing users should learn from my far from unique tale of failed tech support it's that if you ever run into a problem with the installation, don't bother calling TS, just reformat and start from scratch.  It might seem like it'll take longer to get going again, but in actuality, it's the opposite. Reformatting means you'll be up and running in about 1 or 2 days rather than 2 weeks.
    Marc

  • Which car chargers (dual preferred) work with iPad 3?

    As above, my car charger won't charge my new iPad (iPad 3), despite saying it is 2.1 amps. 
    Which car chargers (dual preferred) work with iPad 3?

    I have one that is supposed to work.  Bought after a google search, FWIW.  Doesn't work.  Says it outputs 2.1amps.  The iPad says it does not charge with it.
    I'm looking for experience with my question, not marketing.
    Which car charger that people own and use here works with the new iPad?

  • HDCam or DCP. Which is preferable for my film?

    Hi
    Not saying it's going to happen but just in case my film is selected for screening at a festival I'd like to be prepared. So my question:
    I shot 1080i, my timeline  is currently 1080i tho maybe it should be 1080p. Anyways, which would be preferable for my film, HDCam or DCP?
    DCP: I see there are ways to do-it-yourself tho it sounds tricky. The alternative is very expensive.
    HDCam: On one thread someone said go to a local PBS or TV station and they would make the transfer free. Free? That sounds impossible in the good old USA. Anyone have any advice on HDCam?
    best
    elmer

    The Mac Pro would be better, with more powerful graphics and multiple cores that Logic and Final Cut can actually use.

  • Which is preferable for exhibition, HDCam or DCP?

    Hi
    I was curious which format is preferable for exhibition between HDCam or DCP or if there is a choice which is easier to get.
    DCP: I see you can 'do-it-yourself' tho it sounds tricky. The alternative is very expensive.
    HDCam: On one thread someone said go to a local PBS or TV station and they would make the transfer free. Free? That sounds impossible in the good old USA. Any other advice re HDCam?
    best
    elmer

    Hi
    I was curious which format is preferable for exhibition between HDCam or DCP or if there is a choice which is easier to get.
    DCP: I see you can 'do-it-yourself' tho it sounds tricky. The alternative is very expensive.
    HDCam: On one thread someone said go to a local PBS or TV station and they would make the transfer free. Free? That sounds impossible in the good old USA. Any other advice re HDCam?
    best
    elmer

  • I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    with an iphone 3G the most up to date ios is 4.2.1 so you have a problem because whatsapp requires a higher version.  If you saved an earlier version of whatsapp you could install that otherwise you cannot use the app.  You will need to get a more up to date phone

  • Which is the Mac preferable option for running FCPX?

    Hi everyone,
    I'm a newbie looking for the best compromise budget Mac for AVCHD 1080p video editing with Final Cut Pro X, Adobe Premiere CS6 and Adobe Aftereffects. The storage space is not important as I'm planning to keep all the files on a Thunderbolt-connected EHD (any comments on this?).
    Currently, I'm working on a iMac 27'' 3.4GHz i7 16GB 1600 MHz DDR3 NVIDIA GeForce GTX 675 MX 1024 MB and would like to get a personal machine that also works (as) smooth, but for a smaller budget (up to 1000 USD). These are the options I currently have:
    1. Mac mini (late 2012) MD387xx/A
    2.5GHz dual-core Intel Core i5
    16GB DDR3 SDRAM
    Intel HD 4000
    500 GB HD
    Thunderbolt USB 3
    802.11n WiFi + Bluetooth 4.0
    2. iMac 27'' (mid 2011)
    2.7GHZ Intel Core i5
    16GB 1333 MHz DDR3
    AMD Radeon HD 6770M 512 MB
    1TB HDD
    3. MacBook Pro 17'' (early 2011)
    2.3GHz Intel Core i7
    8 GB 1333 MHz DDR3 RAM
    AMD Radeon HD 6750M 1024 MB
    Intel HD Graphics 3000 512 MB
    500 GB SATA Storage
    How important is the duo- or quad-core?
    Which graphic card would be the best suited for video editing and graphics on FCPX/AfterEffects?
    Which one would you go for if looking for a stable, strong performance for up to 5 years?
    Thanks in advance for any tips!

    La expondrás con un PC, ó Mac, ó reproductor DVD....... Saludos

  • How To Change Root Folder Reference for href - anythingslider links?

    How To Change Root Folder reference for href - anythingslider links?
    My root folder in Web Apps>Carousel in admin is set at /carousel/ (http://bestinscotland04.businesscatalyst.com/carousel/slide-2 - as an example) but I want it to link to a specific page at the root level (specifically /scottish-menswear/mens-highland-kilt-outfit).
    I can't find the controls, css, or html file to enable my picture to link to this product page.
    I'm sorry for the amateur question - I've never had formal training and it's always a reverse-engineering situation with me.
    Thank you.

    One way to address this is to use the Virtual Web Host feature.
    I've uploaded a simple application note to help guide you through the steps.
    An alternative would be to create an html at /Web/ which forwards to /Web/Joomla.  Not a great solution, I know.
    I'm sure there is a way to change the setting in a linux configuration file, but I don't know which file that is in.  Maybe some other linux savy community members could help out with that?

Maybe you are looking for

  • Flashing in Windows Modes doesn't work

    I'm running Windows Vista Business, and when I try to update my BIOS in windows mode, it fails. I'm using MSI Live Monitor 3. After finding the bios (1.5), I use "windows mode" to flash. A command-line window comes up, and I can see everything gettin

  • Bizarre App "de-selection" Problem - Any idea?

    Ok... This is strange enough that I am at a total loss. This literally just started happening this morning for no apparent reason. Basically what's going on is that when I am in an app, like safari or pages, or anything, after about 30 seconds of usi

  • Printing outbound delivery

    Hi all, I've maintained a new output type in the output determination procedure for application V2, and also the condition record, I'm creating a stock transport order, then a outbound DN, why is that the output record doesn't appear automatically in

  • Third party reporting tools

    I am trying to use a third party reporting tools. I have found one I like from Inetsoft. The problem I am having is running the sample code they provide. I keep getting the error of method not found in my package.class file. They have provide sample.

  • MacBook Air does not See a Plantronics Voyager Pro bluetooth headset

    My MacBook Air does not "see" my Plantronics Voyager Pro + bluetooth headset as a discoverable bluetooth asset.  I have read on Apple and Plantronics forums that these two devices should be compatible, but so far no luck.  Anybody have any experience