Rman and Flash Recover questions.

I am trying to understand some of the new features of Oracle 10g as they relate to backup and recovery.
1) Flashback Query? I have looked thru many technical bulletins in the Oracle Technology Network and Metalink and am still confused as from where Flashback Query retrieves the data. Documentation seems to point to the Undo Tablespace. Is this is true I assume the Undo Tablespace would have to be quite large if you wanted to retrieve a record that might be > 1 week old on an active database. The undo_retention parm would have to be set quite large and the Undo Tablespace would have to be created with the "Retention Guarantee" clause. Correct?
2) Backing Up the Flash Recovery Area to Tape?
For all databases we backup with Rman this is the standard backup configuration we use for Oracle 9i.
RMAN> show all;
RMAN configuration parameters are:
CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 100 DAYS;
CONFIGURE BACKUP OPTIMIZATION OFF; # default
CONFIGURE DEFAULT DEVICE TYPE TO 'SBT_TAPE';
CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
CONFIGURE DEVICE TYPE 'SBT_TAPE' PARALLELISM 2;
CONFIGURE DEVICE TYPE DISK PARALLELISM 1; # default
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE MAXSETSIZE TO UNLIMITED; # default
CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/crs01/app/oracle/product/9.2/dbs/snapcf_CRSP.f'; # default
The standard Rman backup script we use is seen below.
run {
# Full database backup including the control file and spfile
backup database format '%d_%U' ;
# Switch logs before backing up the archive logs
sql 'alter system archive log current';
# Backup all the archive logs for the past 5 days
backup archivelog from time 'sysdate-5' format '%d_archives_%U';
# Mark unavailable backups as expired
crosscheck backup;
# Delete backups older than 100 days
delete noprompt obsolete;
delete expired backup;
# Delete archive logs older than 7 days
delete noprompt archivelog until time 'SYSDATE-7';
# Backup control file again
backup current controlfile;
resync catalog;
If we use Flash Recovery area and have enough disk space for two days of Rman backups to be stored there we must move anything over two days old to tape. The command "Backup Recovery Area" backs up the Rman backups in the Flash area to tape, correct? Will any of the
configuration or backup commands listed above have to change? Upon execution of the Restore command in Rman will Rman know to retrieve from tape a backup > 2 days old?
Thanks

Hi David
1.yes u need large undo tablespace that hold information for long time.
and set undo retension parameter according to need of flashback query.
But Don't set "Retention Guarantee" because when u set this parameter it will fail DML transaction on database.
because it will give importance to retail data in undo.
In simple Scenerio(No Guarantee Mode)
if DML required undo space in undo tablespace then it will overwrite expired undo and select query may be fail with "snapshot too old error"
But when u set it to undo retension then
oracle will not able overwrite on expired undo and u r DML query fail..........
so in normal prod database we will give more importance on DML query rather then Select query
so Don't use undo retension to gurantee mode.
But u can use in dataware house where query take long time to fetch result even in days.
2.u need to config MML for taking backup of rman to tape directly.
Thanks and regards
Kuljeet Pal Singh

Similar Messages

  • FlashBuilder and Flash AS3 question

    I'm heads down working with the FlashBuilder tool which is heavy AS3, and have used Flash CSx for years.
    My question: I'm assuming my AS3 skills that I develop with FlashBuilder will be directly applicable to Flash CSx, correct? I understand I'll need the context of applying my AS3 code to the Flash objects when working in Flash CSx but for the most part will my AS3 skills carry over from FlashBuilder to Flash CS4/5?
    Thanks in advance,
    Rich

    AS3 knowledge and skills has nothing to do with editors/IDE (which CSx, FlashBuilder, etc. are) per se. So, once you get your hands on AS3 - it doesn't matter where you write your code - it will work the same way in the final compiled swf. Nevertheless, there is a learning curve involved while getting to know new development environment as with any new software.

  • QT7 Pro - QTVR and Flash - Repeat question

    Within Flash I create a user interface for my QTVR realty tours.
    I export as a flat QTVR file.
    Then within QT PRo 6 I am able to select the Flash Track layer properties (MOVIE - GET MOVIE PROPERTIES) and deselect the MOUSE CAPTURE ENABLED checkbox. This allows the VR to 'spin' properly.
    I have asked this question before and I have heard nothing back from Apple so here it goes again:
    I could not use the same workflow I used with QT Pro 6 (as above) with QT Pro 7 - I tried it back in May 2005. Has anything changed since then?
    Has this Flash Track property been reestablished in any upgrades?
    I thought that I had asked Apple - a long time ago - they said they would answer the question - but I have heard SQUAT!
    Any help would be appreciated.
    Peter.
    G4 DP 867   Mac OS X (10.3.9)  
    G4 DP 867   Mac OS X (10.3.9)  

    The ability to edit the "mouse capture" properties has been removed from QT version 7. It is still available in version 6.5.2 (Movie Properties window).
    I've installed version 7 of QT and use it with an older (previously hidden) copy of QT 6.5.2 Pro. I'm still able to remove the check mark from the movie properties on these files.
    To install both version of QT Pro on the same OS you need to "hide" the older QT Player app prior to the upgrade. I just added 6.5.2 to the app name (Applications folder) and now can use both versions (and both different movie properties windows) during my work.

  • Screen is grey and flashing apple, question mark and warning symbol

    I was working on my computer when a message appeared on my screen telling me my hard drive was almost full. I tried to delete some files, specifically Logs files, and then continued working until my screen froze and I had to shut down. When I rebooted the following appeared on my screen.

    Sorry, but you did not post your image. Please use the camera icon in the message composition window's toolbar to upload your image into your post.
    Meanwhile see:
    Freeing Up Space on The Hard Drive
      1. See Lion's Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?.
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.
    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located.

  • RMAN and Point IN time recovery

    1. We have a table with bad data.
    2. We know that data was entered via the GUI exactly one week ago.
    3. I have an RMAN database full back-up that was taken the same day but before the table was screwed.
    4. the database in archivelog mode.
    5. we will be happy to restore the database in the condition before the change occured
    5. when I restore database via RMAN, and do:
    recover UNTIL TIME '16-MAR-2005';
    Oracle restore bad data, and if I put time or scn I get a message that the database incarnation is wrong!
    Is there any other way to do it?
    TIA

    Thanks Laurent! I was able to restore it only until Mar. 17?
    1. RMAN> reset database to incarnation 2;
    2. RMAN> restore database until time "timestamp '2005-03-15 00:00:00.00'";
    RMAN-03002: failure of recover command at 03/29/2005 19:44:11
    RMAN-06555: datafile 1 must be restored from backup created before 15-MAR-05
    3. My backup was created on Mar. 16, :
    RMAN> restore database until time "timestamp '2005-03-17 00:00:00.00'";
    RMAN-03002: failure of restore command at 03/29/2005 19:46:55
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 4 found to restore
    RMAN-06023: no backup or copy of datafile 3 found to restore
    4. RMAN>Restore database; OK
    5. RMAN>Recover database; internal error!
    RMAN-03002: failure of recover command at 03/29/2005 20:08:02
    ORA-00283: recovery session canceled due to errors
    RMAN-11003: failure during parse/execution of SQL statement: alter database reco
    ver logfile 'G:\ORACLE\ORA10G\FLASH_RECOVERY_DATA\ORCLSRMA\CONTROLFILE\2005_03_2
    3\O1_MF_1_14_14442T9B_.ARC'
    ORA-00283: recovery session canceled due to errors
    ORA-00600: internal error code, arguments: [3021], [1], [15], [2], [0], [419057]
    , [0], [416789]
    6. RMAN> recover database until time "timestamp '2005-03-17 00:00:00.00'"; OK
    7.RMAN> recover database until time "timestamp '2005-03-17 00:00:00.00'"; OK
    8. RMAN> alter database open resetlogs; OK
    9. RMAN> list incarnation;
    List of Database Incarnations
    DB Key Inc Key DB Name DB ID STATUS Reset SCN Reset Time
    1 1 ORCLSRMA 2671268838 PARENT 1 09-MAR-04
    2 2 ORCLSRMA 2671268838 PARENT 318842 01-MAR-05
    3 3 ORCLSRMA 2671268838 ORPHAN 380529 25-MAR-05
    5 5 ORCLSRMA 2671268838 CURRENT 409286 29-MAR-05
    4 4 ORCLSRMA 2671268838 ORPHAN 416789 25-MAR-05

  • My older ibook g4 is locked up with an icon flashing. looks like a file folder flashing a blue and white face/question mark. what is this?

    my older ibook g4 is locked up with an icon flashing. looks like a file folder flashing a blue and white face/question mark. what is this?

    Apple's suggestions for dealing with the flashing question mark folder:
    http://support.apple.com/kb/TS1440?viewlocale=en_US
    Niel has summed it up pretty nicely.

  • Folder with face and flashing question mark, what to do when this happens?

    I'm sure this has been asked a million times, please help, my brother has a ibook G4, OSX 10.3.9, about 3 years old and now when he turns on the ibook it has a folder with a face in it and a flashing question mark. Do you just leave it and it will sort it self out or is there something to do to make it go away? Any help will be appreciated. Thanks

    I have replaced a 40 G harddrive with a seagate 160 G drive. When I try to start it it only comes up with the flashing question mark. I have tried to boot off the install CD, but it only flashes the question mark. This is my daughters computer and she really needs it to work for school.
    I have tried to "restore" using my new Mac Book and the old 40 G drive in an external USB case. But still is no good. I have used DiskWarrior and the drive will boot.
    This is an ibook G4 running 10.4.2

  • Installed new hard drive and flashing question mark appears

    I bought a new hard drive for my macbook pro (mid 2009) because my original harddrive bit the dust... I purchased it off of amazon which states that its specifically for macbooks and the reviews appeared to back it up. I saw a lot of people with great reviews of the same model of macbook that I have so I figured it was the best solution.. I connected the new hard drive but I am getting the dreaded flashing folder/question mark. Is this normal before re-installing the OS x? Heres the problem, I am out of town on business and do not have the original OSx disc on hand. So my question is, is the flashing question mark normal upon installing a new harddrive? and if so, is there away to install the OSx onto the new harddrive without the disc?
    my macbook was running mavericks before the harddrive went to poo, however I did try to re-install mavericks before i ultimately realized that I needed to new harddrive. I noticed that rebooting my mac with command+r would give me the option to reinstall mavericks without a disc or anything. the next question I have is, would this still be do-able on the new harddrive? I tried the command+R option on the new harddrive but nothing happens.
    Can someone help me out here, I am getting a little desperate as I have gone over a week without my mac and theres so crucial things I need to get done! Luckily I have all my stuff backed up on an external hard drive, I just need to get the mac running again. Thanks for taking time to read!

    1. Yes, it is normal. If there's no OS on the drive, there's nothing to take the computer past that point.
    2. No, there's no way on that Mac model. You need to use an existing system(see #4).
    3. Not on that Mac model; it doesn't have the Internet Recovery system, and there isn't a recovery partition on the new drive.
    4. If the backup drive contains a bootable clone of any compatible OS, or a Time Machine backup created from Mac OS X 10.8 or newer, connect it and restart the computer with the Option key held down. If it doesn't contain either, you can't.
    (105476)

  • RMAN and Datapump Question

    Hello,
    Database : 11gR2
    I was recently provieded an access to a new database, because users are complaining of poor perfromance.
    During my monitoring of this database, and using statspack report (because we don't have licensed diagnostics pack), I have seen both RMAN and Datapump processes running together during peak hours. So I asked the DBA responsible of this server, why she's scheduling RMAN and datapump together?!! She replied that she knows nothing about these datapump processes and that could be RMAN who is using (“ Module: Data Pump Worker”) !
    This answer was surprising me since in the Oracle documentation, I never read that before! Is it correct that RMAN utility can use Data Pump Workers??!
    This is here answer : "I think these “ Module: Data Pump Worker” are run by rman during backup."
    Thank you and sorry for this stupid question!
    Edited by: 899767 on 26-ago-2011 0:47

    RMAN and DATAPUMP are two different utility provided by oracle to take backup
    Oracle Backup are divided into two parts: ---
    a) Physical Backup: -- These are the copies of physical database files and we can take it by using RMAN utilities provided by Oracle.
    b) Logical Backup: -- These contain logical data (for example tables and stored procedures) extracted with Oracle Datapump Utility and stored in a binary file
    Refer to this thread it will help
    https://forums.oracle.com/forums/thread.jspa?threadID=1133819
    And
    http://myoracleservice.com/?q=node/38

  • When I start MacBook Pro13 shows gray Screen and flashing file Image with question mark

    When I start MacBook Pro13 shows gray Screen and flashing file Image with question mark , it's brand new I just receive it from Apple Store .

    Startup Manager to select Startup disk.
    http://support.apple.com/kb/HT1310
    Repair Disk
    Steps 2 through 8
    http://support.apple.com/kb/PH5836

  • Hi guys, problem with grey screen and flashing question mark. on top of it while in utility, i'm unable to verify, verify disc permission or repair disc0 which is obviously my main hd. any ideas where to go from here? tried to reistall osx but no luck.

    hi guys, problem with grey screen and flashing question mark. should be straight forward affair but on top of it while in disc utility, i'm unable to verify, verify disc permission, repair or even erase disc0 which is obviously my main hd. any ideas where to go from here? tried to reinstall osx but no luck, stucked when asked to chose location to install osx. would really apreciate any kind of help with this cause i'm quite new mac user. ty

    If you don't have a backup, read this:
    https://discussions.apple.com/docs/DOC-1689

  • HT201303 I know my username and password but forgot the answers to the security questions and my recover email address is no longer valid.

    I know my username and password but forgot the answers to the security questions and my recover email address is no longer valid.  What to do?

    Basically, none; if desired, you can fill out and submit this form, but will probably be told to call.
    (122649)

  • My Apple ID is blocked and the recover email I stopped using it long time ago also I forget my security questions answers what I should do

    My account is blocked and I can't recover it because I forget the security questions and the recover email I stopped using it long time ago

    If you can't get access to it via http:iforgot.apple.com then try contacting Support in your country and see if they can get access to it for you (they should also be able to reset yor security questions) : http://support.apple.com/kb/HT5699
    If they do then update the rescue email address on it to an account that you have access to in case you need to use it in the future - steps 1 to 7 half-way down this page should let you update it : http://support.apple.com/kb/HT5312

  • I forgot my security questions and can't remember them and the recovering email was my friends buy he lost the phone so I'm stuck .... What do I do ? I need help

    I Forgot my security questions and it wont let buy more memory because being my first time and the recovering email I have was my friends and he is not answering me . What can I do ?

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (123368)

  • Flash Builder 4.7 and design view question

    I have programmed a large, commercial level mobile application using Flash Builder 4.6. It is working GREAT when ran on both iOS and Android devices. 
    I was using the trial version of Flash Builder 4.6 to develop this application. I used the states feature that FB has built in to handle Portrait, Landscape, and Phone / Tablet configs. This means that I built 4 different layouts for all 8 of my views in my mobile application. Using the design view in FB 4.6 was what allowed me to do this.
    I have to say that I LOVE Flash Builder so far. GREAT tool. 
    My trial ended just last week. I had to purchase version 4.7 of the software, only to find out that they REMOVED the design view from the software.
    All complaining aside, what have other programmers who are in the same boat as me done as a solution? I would like to continue to program in AS and Flash Builder as I have taken the time to write the application and learn the whole platform. 
    As it stands now, I am in the process of downgrading my liscence keys from 4.7 to 4.6, but in order to do this I had to RETURN my retail version of FB 4.7 premium (bought online) and buy a volume liscening version (NOT through adobe, only allowed to do this through a reseller such as CDW). then once I have a key for 4.7 through volume liscencing, it can be downgraded to 4.6.
    I'm hoping to get input from others in the same boat. Did you change Programming languages? if so, to what? Did you change IDE's? If so, to what?

    Joe -
         I actually never completed the downgrade to 4.6 so I've been using 4.7 without the design view.    In 4.6, I would put a control on the view within design view.  Then I would change each state, move it around, and it would be placed that way.  In my case, each view has 4 states - portraitPhone, landscapePhone, portraitTablet, and landscapeTablet.   I had to do this 4 times for each control under 4.6
         So I went back and looked at my code in 4.7 and all the resulting code was these explicit x, y, height, and width values.  See the code below:
    <s:states> <s:State name="portraitPhone" stateGroups="phone,portrait"
    />
     <s:State name="landscapePhone" stateGroups="phone,landscape"/>
     <s:State name="portraitTablet" stateGroups="tablet,portrait"/>
     <s:State name="landscapeTablet" stateGroups="tablet,landscape"/>
     </s:states>
     <s:List id="lstMake" x="10" y="19" height="25%" allowMultipleSelection="false"borderVisible="
    true" click="changeMake(event)" labelField="label"width.landscapePhone="
    295" height.landscapePhone="105"x.landscapeTablet="
    25" y.landscapeTablet="54" width.landscapeTablet="461"height.landscapeTablet="
    292" fontSize.landscapeTablet="24"width.portraitPhone="
    182" height.portraitPhone="175"x.portraitTablet="
    16" y.portraitTablet="35" width.portraitTablet="399"height.portraitTablet="
    360" fontSize.portraitTablet="24">
     <s:dataProvider>
     <s:ArrayList id="makeCollection">
     <fx:Object label="Cadillac" data="18"/>
     <fx:Object label="Chevrolet" data="1"/>
     <fx:Object label="Dodge" data="2"/>
     <fx:Object label="Ford" data="3"/>
     <fx:Object label="GMC" data="4"/>
     <fx:Object label="Isuzu" data="6"/>
     <fx:Object label="Jeep" data="7"/>
     <fx:Object label="Licoln" data="8"/>
     <fx:Object label="Mazda" data="9"/>
     <fx:Object label="Mercury" data="10"/>
     <fx:Object label="Nissan" data="11"/>  
    <fx:Object label="Oldsmobile" data="12"/>
     <fx:Object label="Sterling" data="20"/>
     <fx:Object label="Suzuki" data="13"/>
     <fx:Object label="Toyota" data="14"/>
     </s:ArrayList>
     </s:dataProvider>
     </s:List>
     <s:Label x="10" y="8" fontSize="11" text="Vehicle Make"x.landscapeTablet="
    10" y.landscapeTablet="23" fontSize.landscapeTablet="24"fontSize.portraitTablet="
    24"/>
     <s:Label x="143" y="11" fontSize="11" text="Vehicle Year"x.landscapePhone="
    354" y.landscapePhone="10"x.landscapeTablet="
    517" y.landscapeTablet="23" width.landscapeTablet="143"height.landscapeTablet="
    26" fontSize.landscapeTablet="24"x.portraitPhone="
    204" y.portraitPhone="8"x.portraitTablet="
    446" y.portraitTablet="11" fontSize.portraitTablet="24"/>
     <s:List id="lstYear" x="145" y="20" height="25%" allowMultipleSelection="false"borderVisible="
    true" click="doYearChange(event)" dataProvider="{yearCollection}"labelField="
    value"x.landscapePhone="
    313" y.landscapePhone="19" width.landscapePhone="157"height.landscapePhone="
    105"x.landscapeTablet="
    524" y.landscapeTablet="54" width.landscapeTablet="343"height.landscapeTablet="
    292" fontSize.landscapeTablet="24"x.portraitPhone="
    200" y.portraitPhone="19" height.portraitPhone="194"x.portraitTablet="
    453" y.portraitTablet="37" width.portraitTablet="276"height.portraitTablet="
    358" fontSize.portraitTablet="24">
     </s:List>
     <s:List id="lstModel" x="10" y="147" height="30%" borderVisible="true"dataProvider="
    {modelCollection}" labelFunction="lblFunct"width.landscapePhone="
    460" height.landscapePhone="99"x.landscapeTablet="
    13" y.landscapeTablet="384" width.landscapeTablet="992"height.landscapeTablet="
    309" fontSize.landscapeTablet="24"x.portraitPhone="
    10" y.portraitPhone="221" width.portraitPhone="301"height.portraitPhone="
    184" allowMultipleSelection="false"click="doModelSelected(event)" fontSize.portraitPhone="
    12"x.portraitTablet="
    16" y.portraitTablet="428" width.portraitTablet="742"height.portraitTablet="
    521" fontSize.portraitTablet="24"></s:List>
     <s:Label x="12" y="132" fontSize="11" text="Vehicle Model"x.landscapeTablet="
    10" y.landscapeTablet="354" fontSize.landscapeTablet="24"x.portraitPhone="
    10" y.portraitPhone="207"x.portraitTablet="
    10" y.portraitTablet="401" width.portraitTablet="154"height.portraitTablet="
    21" fontSize.portraitTablet="24"/>
      So instead of continuing to try and modify these values by hand, then run the program, using trial and error, I took a different tact.   I removed ALL x y height and width values.  Then, I wrapped all the mxml code in either <s:HGroup or <s:Vghroup tags depending on what I wanted.  Then I would just set the vertical and horizontal align on these groups.  This allows everything to scale correctly based on the size of the view (each device really is a little different).   Finally,  I hand entered things like font sizes by using State Groups like this:   fontSize.phone="12"  fontSize.tablet="22".    It still took testing on the screen to see how my layouts worked but it just makes the UI so much easier to change around and works so much better with out all the static stuff in it.
    If you have some time , I would suggest taking one of your 4.6 views that has all these static variables and trying to modify it to work like I said above.    My modified code (to do the same thing as above) is below:
    <s:states> <s:State name="portraitPhone" stateGroups="phone,portrait"
    />
     <s:State name="landscapePhone" stateGroups="phone,landscape"/>
     <s:State name="portraitTablet" stateGroups="tablet,portrait"/>
     <s:State name="landscapeTablet" stateGroups="tablet,landscape"/>
     </s:states>
     <s:VGroup height="100%" width="100%" verticalAlign="top">
     <s:HGroup paddingTop="10" width="100%" height="50%">
     <s:VGroup width="60%" paddingLeft="5">
     <s:Label fontSize="11" text="Vehicle Make"fontSize.tablet="
    24"/>
     <s:List id="lstMake" width="100%" allowMultipleSelection="false"borderVisible="
    true" click="changeMake(event)" labelField="label"fontSize.tablet="
    24" fontSize.phone="12">
     <s:layout>
     <s:VerticalLayout horizontalAlign="contentJustify" requestedMaxRowCount.portraitTablet="8" requestedMaxRowCount.phone="6" requestedMaxRowCount.landscapeTablet="4"gap="
    0" rowHeight.phone="28" variableRowHeight="false" rowHeight="55"verticalAlign="
    middle"/>
     </s:layout>
     <s:dataProvider>
     <s:ArrayList id="makeCollection">
     <fx:Object label="Cadillac" data="18"/>
     <fx:Object label="Chevrolet" data="1"/>
     <fx:Object label="Dodge" data="2"/>
     <fx:Object label="Ford" data="3"/>
     <fx:Object label="GMC" data="4"/>
     <fx:Object label="Isuzu" data="6"/>
     <fx:Object label="Jeep" data="7"/>
     <fx:Object label="Lincoln" data="8"/>
     <fx:Object label="Mazda" data="9"/>
     <fx:Object label="Mercury" data="10"/>
     <fx:Object label="Nissan" data="11"/>  
    <fx:Object label="Oldsmobile" data="12"/>
     <fx:Object label="Sterling" data="20"/>
     <fx:Object label="Suzuki" data="13"/>
     <fx:Object label="Toyota" data="14"/>
     </s:ArrayList>
     </s:dataProvider>
     </s:List>
     </s:VGroup>
     <s:VGroup width="30%">
     <s:Label fontSize="11" text="Vehicle Year"fontSize.tablet="
    24"/>
     <s:List id="lstYear" width="100%" allowMultipleSelection="false" borderVisible="
    true" click="doYearChange(event)" dataProvider="{yearCollection}"labelField="
    value" fontSize.phone="12" fontSize.tablet="24">
     <s:layout>
     <s:VerticalLayout horizontalAlign="contentJustify" requestedMaxRowCount.portraitTablet="8" requestedMaxRowCount.phone="6" requestedMaxRowCount.landscapeTablet="4"gap="
    0" rowHeight.phone="28" variableRowHeight="false" rowHeight.tablet="55"verticalAlign="
    middle"  
    />
     </s:layout>
     </s:List>
     </s:V

Maybe you are looking for

  • Mac mail no longer works with iCloud

    Since installing icloud, my mac mail is no longer working.

  • Linking to a detail page

    I have the letters A to Z in a master page and would like to link to a detail page, where all companies are displayed whose names begin with A, or B depending which letter the user has clicked. On the detail page (compdetail.php) I have that code: $q

  • Set up audio on tv

    I have a hp pavillion dv7 notebook and westinghouse monitor that is hooked up to my cable box to use as tv.  When I connect my pc to the tv, how do I get the sound to come from the tv and not the pc speakers? I am connecting with a vga cable.

  • Why do I keep getting new keychain verification codes sent to my iphone?

    Why do I keep getting new keychain verification codes sent to my iphone?

  • Database connectivity in netbeans

    whenever i try connectin database using this code : import java.sql.*; import java.lang.*; import java.net.*; import javax.naming.*; public class NewClass{ public static void main(String[] args) { // Load the JDBC driver System.out.println("Table Cre