HT204003 We need more companys with pass book

We need more company's with pass book. Also apple need a new make over + apple need to get the black berry key board that's hot!!!

Thanks for sharing, not that any of your fellow users in this user to user technical support forum really care.
If you have feedback for Apple, provide it to them here:  http://www.apple.com/feedback
If you have a technical support question for these forums, ask it.

Similar Messages

  • Need more help with a GUI

    It's the ever popular Inventory program again! I'm creating a GUI to display the information contained within an array of objects which, in this case, represent compact discs. I've received some good help from other's posts on this project since it seems there's a few of us working on the same one but now, since each person working on this project has programmed theirs differently, I'm stuck. I'm not sure how to proceed with my ActionListeners for the buttons I've created.
    Here's my code:
    // GUICDInventory.java
    // uses CD class
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class GUICDInventory extends JFrame
         protected JPanel panel; //panel to hold buttons
         protected JPanel cdImage; // panel to hold image
         int displayElement = 0;
         public String display(int element)
                   return CD2[element].toString();
              }//end method
         public static void main( String args[] )
              new GUICDInventory();
         }// end main
         public GUICDInventory()
              CD completeCDInventory[] = new CD2[ 5 ]; // creates a new 5 element array
             // populates array with objects that implement CD
             completeCDInventory[ 0 ] = new CD2( "Sixpence None the Richer" , "D121401" , 12 , 11.99, 1990 );
             completeCDInventory[ 1 ] = new CD2( "Clear" , "D126413" , 10 , 10.99, 1998 );
             completeCDInventory[ 2 ] = new CD2( "NewsBoys: Love Liberty Disco" , "2438-51720-2" , 10 , 12.99, 1999 );
             completeCDInventory[ 3 ] = new CD2( "Skillet: Hey You, I Love Your Soul" , "D122966" , 9 , 9.99, 1998 );
             completeCDInventory[ 4 ] = new CD2( "Michael Sweet: Real" , "020831-1376-204" , 15 , 12.99, 1995 );
             //declares totalInventoryValue variable
                 double totalInventoryValue = CD.calculateTotalInventory( completeCDInventory );
              final JTextArea textArea = new JTextArea(display(displayElement));
              final JButton prevBtn = new JButton("Previous");
              final JButton nextBtn = new JButton("Next");
              final JButton lastBtn = new JButton("Last");
              final JButton firstBtn = new JButton("First");
              prevBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = (//what goe here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              nextBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                          displayElement = (//what goes here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              firstBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = 0;
                        textArea.setText(display(displayElement));// <--is this right?
              lastBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = //what goes here?;
                        textArea.setText(display(displayElement));// <--is this right?
              JPanel panel = new JPanel(new GridLayout(1,2));
              panel.add(firstBtn); panel.add(nextBtn); panel.add(prevBtn); panel.add(lastBtn);
              JPanel cdImage = new JPanel(new BorderLayout());
              cdImage.setPreferredSize(new Dimension(600,400));
              JFrame      cdFrame = new JFrame();
              cdFrame.getContentPane().add(new JScrollPane(textArea),BorderLayout.CENTER);
              cdFrame.getContentPane().add(panel,BorderLayout.SOUTH);
              cdFrame.getContentPane().add(new JLabel("",new ImageIcon("cd.gif"),JLabel.CENTER),BorderLayout.NORTH);
              cdFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              cdFrame.pack();
              cdFrame.setSize(500,200);
              cdFrame.setTitle("Compact Disc Inventory");
              cdFrame.setLocationRelativeTo(null);
              cdFrame.setVisible(true);
         }//end GUICDInventory constructor
    } // end class GUICDInventory
    // CD2.java
    // subclass of CD
    public class CD2 extends CD
         protected int copyrightDate; // CDs copyright date variable declaration
         private double price2;
         // constructor
         public CD2( String title, String prodNumber, double numStock, double price, int copyrightDate )
              // explicit call to superclass CD constructor
              super( title, prodNumber, numStock, price );
              this.copyrightDate = copyrightDate;
         }// end constructor
         public double getInventoryValue() // modified subclass method to add restocking fee
            price2 = price + price * 0.05;
            return numStock * price2;
        } //end getInventoryValue
        // Returns a formated String contains the information about any particular item of inventory
        public String displayInventory() // modified subclass display method
              return String.format("\n%-22s%s\n%-22s%d\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Copyright Date:", copyrightDate, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
         } // end method
    }//end class CD2
    // CD.java
    // Represents a compact disc object
    import java.util.Arrays;
    class CD implements Comparable
        protected String title; // CD title (name of product)
        protected String prodNumber; // CD product number
        protected double numStock; // CD stock number
        protected double price; // price of CD
        protected double inventoryValue; //number of units in stock times price of each unit
        // constructor initializes CD information
        public CD( String title, String prodNumber, double numStock, double price )
            this.title = title; // Artist: album name
            this.prodNumber = prodNumber; //product number
            this.numStock = numStock; // number of CDs in stock
            this.price = price; //price per CD
        } // end constructor
        public double getInventoryValue()
            return numStock * price;
        } //end getInventoryValue
        //Returns a formated String contains the information about any particular item of inventory
        public String displayInventory()
              //return the formated String containing the complete information about CD
            return String.format("\n%-22s%s\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
        } // end method
        //method to calculate the total inventory of the array of objects
        public static double calculateTotalInventory( CD completeCDInventory[] )
            double totalInventoryValue = 0;
            for ( int count = 0; count < completeCDInventory.length; count++ )
                 totalInventoryValue += completeCDInventory[count].getInventoryValue();
            } // end for
            return totalInventoryValue;
        } // end calculateTotalInventory
         // Method to return the String containing the Information about Inventory's Item
         //as appear in array (non-sorted)
        public static String displayTotalInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (unsorted):\n";
              //loop to go through complete array
              for ( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);          //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory();     //add the inventory detail in String
              }// end for
              return retInfo;          //return the String containing complete detail of Inventory
        }// end displayTotalInventory
         public int compareTo( Object obj ) //overlaod compareTo method
              CD tmp = ( CD )obj;
              if( this.title.compareTo( tmp.title ) < 0 )
                   return -1; //instance lt received
              else if( this.title.compareTo( tmp.title ) > 0 )
                   return 1; //instance gt received
              return 0; //instance == received
              }// end compareTo method
         //Method to return the String containing the Information about Inventory's Item
         // in sorted order (sorted by title)
         public static String sortedCDInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (sorted by title):\n";
              Arrays.sort( completeCDInventory ); // sort array
              //loop to go through complete array
              for( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);     //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory(); //add the inventory detail in String
              return retInfo;     //return the String containing complete detail of Inventory
         } // end method sortedCDInventory
    } // end class CD

    nextBtn.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
                   displayElement = (//what goes here? ) % //what goes here?
                   textArea.setText(display(displayElement));// <--is this right?
    });Above is your code for the "Next" button.
    You ask the question "What goes here"? Well what do you think goes there?
    If you are looking at item 1 and you press the "Next" button do you not want to look at item 2?
    So the obvious solution would be to add 1 to the previous item value. Does that not make sense? What problem do you have when you try that code?????
    Next you say "Is this right"? Well how are we supposed to know? You wrote the code. We don't know what the code is supposed to do. Again you try it. If it doesn't work then describe the problem you are having. I for one can't execute your code because I don't use JDK5. So looking at the code it looks reasonable, but I can't tell by looking at it what is wrong. Only you can add debug statements in the code to see whats happening.
    If you want help learn to as a proper question and doen't expect us to spoon feed the code to you. This is your assignment, not ours. We are under no obligation to debug and write the code for you. The sooner you learn that, the more help you will receive.

  • IMac Reboots Are Needed More Frequently With Lion - Any Preventive Ideas?

    My two-year old iMac was totally stable when running Snow Leopard. Since installing Lion I am noticing a new phenomenon. Various tasks I perform with Lion are now causing my computer to freeze from time to time, and requiring a reboot to get things working correctly again. It's turning out that I need to reboot about once a day to keep everything running right, while I used to be able to just put my computer to sleep each day, for weeks at a time, with no need to restart. Is anyone else noticing this? Any ideas?

    How much RAM is installed? How much free space do you have on your hard drive? Have you tried reinstalling Lion:
    Reinstalling Lion
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alterhatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • Any more problems with mac book pros with beeps

    are there any mac book pros with beeps lately...has apple fixed the problem?

    They have not released a fix, and the Macbook Pros received just 3 days ago have the beeps too.

  • How many problems do you need to have with a mac book pro to get it replaced i have had 6 problems and they say they have fixed everything and somthing new happends

    how many problems do you need to have with a mac book pro to get it replaced i have had 6 problems and they say they have fixed everything and somthing new happends
    I have had thehad the:
    ram replaced
    Battery
    Audio
    Trackpad
    os operating system
    fans
    And they still won't replace the laptop for me worst buy ever but i have had a imac for 2 months and nothing at all wrong .

    You could try calling Apple and ask for Customer Relations.
    From Readers Digest-February, 2005
    How to Complain
          You call customer service to complain about a product, and you hang up angrier than when you started. That’s customer rage, a feeling experienced by millions of people with a major complaint, says Scott Broetzmann, president an American firm that tells companies how to offer the best customer service. His secrets to getting good service:
    Have a goal
    If you want your product repaired, say so. Want an apology? Speak up.
    Keep it short
    Focus on one problem, and be succinct.
    Stick with it
    You have to invest the time it takes. Don’t get what you want? Ask for a supervisor.
    Skip ultimatums
    Don’t threaten not to do business with them again. Why should they help you if you won’t buy from them in the future?
    Plead your case
    Many companies have information such as how much money you’ve spent with them and how often you complain. If you’re a good customer, they may be more willing to help.
    Be nice
    You’re unlikely to get what you want if you’re rude.
    Good luck.

  • My iPad conveys that it is disable, and that I need to connect to iTunes.  When I connect to iTunes I get a message that I need to enter my pass code and open my Ipad, but I don't get the number board to open with a password.  How do I fix this?

    My iPad conveys that it is disabled, and that I need to connect to iTunes.  When I connect to iTunes I get a message that I need to enter my pass code and open my Ipad, but I don't get the scree with the number board to open with a password.  How do I fix this?

    You will need to restore it. The sidebar of your iPad appears on itunes even if you dont enter the passcode. There's the option to restore it. More info:
    iTunes: Backing up, updating, and restoring your iPhone, iPad, or iPod touch software

  • My iPad conveys that it is disabled, and that I need to connect to iTunes.  When I connect to iTunes I get a message that I need to enter my pass code and open my Ipad, but I don't get the screen to open with a password.  How do I fix this?

    My iPad conveys that it is disabled, and that I need to connect to iTunes.  When I connect to iTunes I get a message that I need to enter my pass code and open my Ipad, but I don't get the screen to open with a password.  How do I fix this?

    You will need to restore it. It may not sync, but the iPad's sidebar has to appear you can restore it and it will be as the last time ou synced it to iTunes. For more info:
    iTunes: Backing up, updating, and restoring your iPhone, iPad, or iPod touch software

  • In the middle of creating a book in aperture I need more photos. How can I add them to the browser at this stage?

    In the middle of creating a book in Aperture I need more photos. How can I add them to the browser at this stage?

    In the middle of creating a book in Aperture I need more photos. How can I add them to the browser at this stage?
    You can add more images to your book, by dragging them from the browser to your book album. Switch to the Library Inspector, select the album or project with the images in the source list, and then drag these images onto the book icon. That will add them to the book album, and then double click the book album again to continue working with the book.
    Regards
    Léonie

  • I need your help with a decision to use iPhoto.  I have been a PC user since the mid 1980's and more recently have used ACDSee to manage my photo images and Photoshop to edit them.  I have used ProShow Gold to create slideshows.  I am comfortable with my

    I need your help with a decision to use iPhoto.  I have been a PC user since the mid 1980’s and more recently have used ACDSee to manage my photo images and Photoshop to edit them.  I have used ProShow Gold to create slideshows.  I am comfortable with my own folder and file naming conventions. I currently have over 23,000 images of which around 60% are scans going back 75 years.  Since I keep a copy of the originals, the storage requirements for over 46,000 images is huge.  180GB plus.
    I now have a Macbook Pro and will add an iMac when the new models arrive.  For my photos, I want to stay with Photoshop which also gives me the Bridge.  The only obvious reason to use iPhoto is to take advantage of Faces and the link to iMovie to make slideshows.  What am I missing and is using iPhoto worth the effort?
    If I choose to use iPhoto, I am not certain whether I need to load the originals and the edited versions. I suspect that just the latter is sufficient.  If I set PhotoShop as my external editor, I presume that iPhoto will keep track of all changes moving forward.  However, over 23,000 images in iPhoto makes me twitchy and they are appear hidden within iPhoto.  In the past, I have experienced syncing problems with, and database errors in, large databases.  If I break up the images into a number of projects, I loose the value of Faces reaching back over time.
    Some guidance and insight would be appreciated.  I have a number of Faces questions which I will save for later. 

    Bridge and Photoshop is a common file-based management system. (Not sure why you'd have used ACDSEE as well as Bridge.) In any event, it's on the way out. You won't be using it in 5 years time.
    Up to this the lack of processing power on your computer left no choice but to organise this way. But file based organisation is as sensible as organising a Shoe Warehouse based on the colour of the boxes. It's also ultimately data-destructive.
    Modern systems are Database driven. Files are managed, Images imported, virtual versions, lossless processing and unlimited editing are the way forward.
    For a Photographer Photoshop is overkill. It's an enormously powerful app, a staple of the Graphic Designers' trade. A Photographer uses maybe 15% to 20% of its capability.
    Apps like iPhoto, Lightroom, Aperture are the way forward - for photographers. There's the 20% of Photoshop that shooters actually use, coupled with management and lossless processing. Pop over to the Aperture or Lightroom forums (on the Adobe site) and one comment shows up over and over again... "Since I started using Aperture/ Lightroom I hardly ever use Photoshop any more..." and if there is a job that these apps can do, then the (much) cheaper Elements will do it.
    The change is not easy though, especially if you have a long-standing and well thought out filing system of your own. The first thing I would strongly advise is that you experiment before making any decisions. So I would create a Library, import 300 or 400 shots and play. You might as well do this in iPhoto to begin with - though if you’re a serious hobbyist or a Pro then you'll find yourself looking further afield pretty soon. iPhoto is good for the family snapper, taking shots at birthdays and sharing them with friends and family.
    Next: If you're going to successfully use these apps you need to make a leap: Your files are not your Photos.
    The illustration I use is as follows: In my iTunes Library I have a file called 'Let_it_Be_The_Beatles.mp3'. So what is that, exactly? It's not the song. The Beatles never wrote an mp3. They wrote a tune and lyrics. They recorded it and a copy of that recording is stored in the mp3 file. So the file is just a container for the recording. That container is designed in a specific way attuned to the characteristics and requirements of the data. Hence, mp3.
    Similarly, that Jpeg is not your photo, it's a container designed to hold that kind of data. iPhoto is all about the data and not about the container. So, regardless of where you choose to store the file, iPhoto will manage the photo, edit the photo, add metadata to the Photo but never touch the file. If you choose to export - unless you specifically choose to export the original - iPhoto will export the Photo into a new container - a new file containing the photo.
    When you process an image in iPhoto the file is never touched, instead your decisions are recorded in the database. When you view the image then the Master is presented with these decisions applied to it. That's why it's lossless. You can also have multiple versions and waste no disk space because they are all just listings in the database.
    These apps replace the Finder (File Browser) for managing your Photos. They become the Go-To app for anything to do with your photos. They replace Bridge too as they become a front-end for Photoshop.
    So, want to use a photo for something - Export it. Choose the format, size and quality you want and there it is. If you're emailing, uploading to websites then these apps have a "good enough for most things" version called the Preview - this will be missing some metadata.
    So it's a big change from a file-based to Photo-based management, from editing files to processing Photos and it's worth thinking it through before you decide.

  • What do i need to connect my mac book pro to the tv with the thunderbolt on the mac to hdmi? I have the newest macbook pro. I'm wanting to have the best picture I can get from my 1080p tv. thanks

    what do i need to connect my mac book pro to the tv with the mac's thunderbolt port to hdmi? I have the newest macbook pro. I'm wanting to have the best picture I can get from my 1080p tv. thanks

    Thanks Community! I solved the problem. In fact it was not a problem but lack of understanding. These guys at Apple are way ahead in thir thinking. I will try to explain as short as I can.
    In Lion, ihe Prefferences/Display show only two choices: 6-7 steps of resolution and some color tab. No two screens, no two display to overlap, nothing for us to do. "That was the problem"! Everything is automatic.
    When I connected the HDMI cable to the Miniport into a T-bolt slot, the TV screen showed the "spiral galaxy" how Zyriab is calling it. In fact he gave me the best clue. That shows the connection is good. But where is the Mac Book image?
    You have to drag it to the right out of the Mac Book display area, and "voila!" it will continue on the TV screen. The same with the mouse pointer, push it out ofthe Mac Book display area and you see it on the TV sreen. Good image, you can keep the max resolution, etc. The sound is still on the Book's speakers. I have to figure that out.
    Thank everybody, especialy Zyriab, ne was the closest.
    High regards to everybody

  • I have business and personal e-mail accounts with different contacts. Can I have more than one address book on my iPhone?

    I have business and personal e-mail accounts with different contacts. Can I have more than one address book on my iPhone?

    Set up an additional user account and use one for work and one for personal stuff - each will have a separate address book. Turn on fast user switching for easy switching between the two.
    AK

  • HT201318 I registered my apple ID and Icloud with a US address, and live in Switzerland. I do not own a US credit card. Now that I need to buy more storage with my swiss credit card, I can't change the country's billing address from the US to my swiss one

    I registered my apple ID and Icloud with a US address, and live in Switzerland. I do not own a US credit card. Now that I need to buy more storage with my swiss credit card, I can't change the country's billing address from the US to my swiss one. HELP PLS?

    Did you actually watch the movie? You get 30 days in which to view it and if you didn't watch it, that could be why you are getting that message. If you have watched the movie and you're sure that is has expired by now, contact iTunes Store Support and seek their help.
    Change the country in the upper left. - and click on Purchases, billing and redemption to proceed.
    https://getsupport.apple.com/Issues.action

  • Need more 2D performance with RX9800 Pro

    Hello,
    I need more 2d performance with this card, better vector work optimization and so on. I'm work with Illustrator CS2, and it's too "slow" when i am dragging, etc.
    Is any way to incerase 2d performance ? Some unofficial drivers, or some "hack" ?
    Configuration:
    MSI K8T NEO 2
    CPU Athlong 64 3000+
    RX9800 PRO
    2x512 Apacer 400Mhz CL2.5
    Seagate 120GB S-ATA
    PSU 500W chill

    There isn't any optimization for that card to speak of with what you are doing.
    I would think a Matrox card would be better suited, but I am also speculating. It is far better at 2d performance regarding raster/vector operations.
    There might be a way to optimise the driver code, but I have no idea how.
    You might want to look into communities related to the work your are doing. I do remember Adobe has a forum and tech docs, perhaps you might find what you are looking for there http://www.adobe.com/support/main.html

  • Hi, I've been using the 3D function in PS, upgraded to CC2104 and it was disabled (need more VRAM). I then reinstalled CS6 and was able to use it for a day and now, today, I am getting the same message I got with PS CC2014 saying my VRAM is too low again.

    Hi, I've been using the 3D function in PS, upgraded to CC2104 and it was disabled (need more VRAM). I then reinstalled CS6 and was able to use it for a day and now, today, I am getting the same message I got with PS CC2014 saying my VRAM is too low again. I'm in the middle of a project that needs to go live tomorrow. HELP!!! Please.

    Photoshop requires 512 Meg of VRAM or more to use the 3D features - that's been the same for version 14 (CC) and now 15 (CC 2014). Check Help->System Info to see how much your card says it has.

  • Restore with brtools - need more archive redolog files

    Good day
    I will make online backup my oracle database with brtools
    (Oracle 10g, BRBACKUP 7.00 (39))
    brbackup -c -d util_file_online -t online -m all -u /
    bdztoexw anf  2009-01-23 15.27.40 ; 2009-01-23 16.47.21 ; 1  ...............     57    56     0     17671        226215105    17676        226268039  ALL
    online          util_file_online -
    7.00 (39)
    BR0280I BRBACKUP time stamp: 2009-01-23 16.43.38
    BR0232I 57 of 57 files saved by backup utility
    BR0230I Backup utility called successfully
    BR0280I BRBACKUP time stamp: 2009-01-23 16.43.40
    BR0340I Switching to next online redo log file for database instance VPP ...
    BR0321I Switch to next online redo log file for database instance VPP successful
    BR0117I ARCHIVE LOG LIST after backup for database instance VPP
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /oracle/VPP/oraarch/VPParch
    Archive format                 %t_%s_%r.dbf
    Oldest online log sequence     17673
    Next log sequence to archive   17676
    Current log sequence           17676            SCN: 226268039
    Database block size            8192             Thread: 1
    Current system change number   226268041        ResetId: 603135330
    After brbackup  I'll do "brarchive" in the same script:
    brarchive -c -d util_file -sd -u / > $br_out_file
    #ARCHIVE.. 17670  /oracle/VPP/oraarch/VPParch1_17670_603135330.dbf ; 2009-01-23 15.10.36 ; 43450368         226202112  1
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............
    #COPIED... ........ ...  ................. .......... ........ ........... ............
    #DELETED.. adztolzu svd  2009-01-23 16.51.11
    #ARCHIVE.. 17671  /oracle/VPP/oraarch/VPParch1_17671_603135330.dbf ; 2009-01-23 15.36.12 ; 43430912         226215105  1
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............
    #COPIED... ........ ...  ................. .......... ........ ........... ............
    #DELETED.. adztolzu svd  2009-01-23 16.51.11
    #ARCHIVE.. 17672  /oracle/VPP/oraarch/VPParch1_17672_603135330.dbf ; 2009-01-23 15.40.27 ; 43515904         226227928  1
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............
    #COPIED... ........ ...  ................. .......... ........ ........... ............
    #DELETED.. adztolzu svd  2009-01-23 16.51.11
    #ARCHIVE.. 17673  /oracle/VPP/oraarch/VPParch1_17673_603135330.dbf ; 2009-01-23 15.41.06 ; 43729408         226238784  1
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............
    #COPIED... ........ ...  ................. .......... ........ ........... ............
    #DELETED.. adztolzu svd  2009-01-23 16.51.11
    #ARCHIVE.. 17674  /oracle/VPP/oraarch/VPParch1_17674_603135330.dbf ; 2009-01-23 16.06.06 ; 43450368         226250315  1
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............
    #COPIED... ........ ...  ................. .......... ........ ........... ............
    #DELETED.. adztolzu svd  2009-01-23 16.51.11
    #ARCHIVE.. 17675  /oracle/VPP/oraarch/VPParch1_17675_603135330.dbf ; 2009-01-23 16.43.40 ; 13243904         226263012  1
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............
    #COPIED... ........ ...  ................. .......... ........ ........... ............
    #DELETED.. adztolzu svd  2009-01-23 16.51.11
    VPP  util_file  adztolzu svd  2009-01-23 16.47.22 ; 2009-01-23 16.54.47 ; 1  ...........     17670    17675        0        0  ------- 7.00 (39)  @0603135330
    BR0280I BRARCHIVE time stamp: 2009-01-23 16.51.11
    BR0232I 6 of 6 files saved by backup utility
    BR0230I Backup utility called successfully
    BR0016I 6 offline redo log files processed, total size 220.128 MB
    Then I take tape with this data and try restore only from this tape
    all datafiles and relevant archive redologs files (17670-17675) restored without errors
    but in the end ERROR occurred
    ERROR at line 1:
    ORA-01195: online backup of file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/oracle/VPP/sapdata1/system_1/system.data1'
    ORA-00279: change 226268039 generated at 01/23/2009 16:43:40 needed for thread
    1
    ORA-00289: suggestion : /oracle/VPP/oraarch/VPParch1_17676_603135330.dbf
    ORA-00280: change 226268039 for thread 1 is in sequence #17676
    My online backup ended, before switch to redolog 17676
    Why I need this file? I think files (17670-17675) should be enough?
    Besides, the change 226268039 generated exactly at moment Switching to next online redo.
    Can I try open database regardless of this error?
    Thank you for your prompt response
    Andrey Timofeev
    Edited by: Andrey Timofeev on Jul 21, 2009 3:52 PM

    <P>Good day, sorry for TAG. Once more time. <BR>
    I will make online backup my oracle database with brtools<BR>
    (Oracle 10g, BRBACKUP 7.00 (39))</P>
    <P>brbackup -c -d util_file_online -t online -m all -u /</P>
    <HR>
    <P>bdztoexw anf  2009-01-23 15.27.40  2009-01-23 16.47.21  1  ...............     57    56     0     17671        226215105    17676        226268039  ALL<BR>
    online          util_file_online </P>
    <HR>
    <P> BR0280I BRBACKUP time stamp: 2009-01-23 16.43.38</P>
    <HR>
    <BR>
    <P>BR0232I 57 of 57 files saved by backup utility<BR>
    BR0230I Backup utility called successfully</P>
    <P>BR0280I BRBACKUP time stamp: 2009-01-23 16.43.40<BR>
    BR0340I Switching to next online redo log file for database instance VPP ...<BR>
    BR0321I Switch to next online redo log file for database instance VPP successful</P>
    <P>BR0117I ARCHIVE LOG LIST after backup for database instance VPP</P>
    <P>Parameter                      Value</P>
    <P>Database log mode              Archive Mode<BR>
    Automatic archival             Enabled<BR>
    Archive destination            /oracle/VPP/oraarch/VPParch<BR>
    Archive format                 %t_%s_%r.dbf<BR>
    Oldest online log sequence     17673<BR>
    Next log sequence to archive   17676<BR>
    Current log sequence           17676            SCN: 226268039<BR>
    Database block size            8192             Thread: 1<BR>
    Current system change number   226268041        ResetId: 603135330</P>
    <HR>
    <BR>
    <P>After brbackup  I'll do &quot;brarchive&quot; in the same script:</P>
    <P>brarchive -c -d util_file -sd -u / &gt; $br_out_file</P>
    <HR>
    <P>#ARCHIVE.. 17670  /oracle/VPP/oraarch/VPParch1_17670_603135330.dbf  2009-01-23 15.10.36  43450368         226202112  1<BR>
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............<BR>
    #COPIED... ........ ...  ................. .......... ........ ........... ............<BR>
    #DELETED.. adztolzu svd  2009-01-23 16.51.11<BR>
    #<BR>
    #ARCHIVE.. 17671  /oracle/VPP/oraarch/VPParch1_17671_603135330.dbf  2009-01-23 15.36.12  43430912         226215105  1<BR>
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............<BR>
    #COPIED... ........ ...  ................. .......... ........ ........... ............<BR>
    #DELETED.. adztolzu svd  2009-01-23 16.51.11<BR>
    #<BR>
    #ARCHIVE.. 17672  /oracle/VPP/oraarch/VPParch1_17672_603135330.dbf  2009-01-23 15.40.27  43515904         226227928  1<BR>
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............<BR>
    #COPIED... ........ ...  ................. .......... ........ ........... ............<BR>
    #DELETED.. adztolzu svd  2009-01-23 16.51.11<BR>
    #<BR>
    #ARCHIVE.. 17673  /oracle/VPP/oraarch/VPParch1_17673_603135330.dbf  2009-01-23 15.41.06  43729408         226238784  1<BR>
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............<BR>
    #COPIED... ........ ...  ................. .......... ........ ........... ............<BR>
    #DELETED.. adztolzu svd  2009-01-23 16.51.11<BR>
    #<BR>
    #ARCHIVE.. 17674  /oracle/VPP/oraarch/VPParch1_17674_603135330.dbf  2009-01-23 16.06.06  43450368         226250315  1<BR>
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............<BR>
    #COPIED... ........ ...  ................. .......... ........ ........... ............<BR>
    #DELETED.. adztolzu svd  2009-01-23 16.51.11<BR>
    #<BR>
    #ARCHIVE.. 17675  /oracle/VPP/oraarch/VPParch1_17675_603135330.dbf  2009-01-23 16.43.40  13243904         226263012  1<BR>
    #SAVED.... adztolzu svd  *VXF1232718526    2009-01-23 16.51.11 ........... ............<BR>
    #COPIED... ........ ...  ................. .......... ........ ........... ............<BR>
    #DELETED.. adztolzu svd  2009-01-23 16.51.11<BR>
    #<BR>
    VPP  util_file  adztolzu svd  2009-01-23 16.47.22  2009-01-23 16.54.47  1  ...........     17670    17675        0        0  </P>
    <HR>
    <P>#</P>
    <HR>
    <P>BR0280I BRARCHIVE time stamp: 2009-01-23 16.51.11<BR>
    BR0232I 6 of 6 files saved by backup utility<BR>
    BR0230I Backup utility called successfully<BR>
    BR0016I 6 offline redo log files processed, total size 220.128 MB</P>
    <HR>
    <P>Then I take tape with this data and try restore only from this tape<BR>
    all datafiles and relevant archive redologs files (17670-17675) restored without errors <BR>
    but in the end ERROR occurred</P>
    <HR>
    <BR>
    <P>ERROR at line 1:<BR>
    ORA-01195: online backup of file 1 needs more recovery to be consistent<BR>
    ORA-01110: data file 1: '/oracle/VPP/sapdata1/system_1/system.data1'</P>
    <P>ORA-00279: change 226268039 generated at 01/23/2009 16:43:40 needed for thread<BR>
    1<BR>
    ORA-00289: suggestion : /oracle/VPP/oraarch/VPParch1_17676_603135330.dbf<BR>
    ORA-00280: change 226268039 for thread 1 is in sequence #17676</P>
    <HR>
    <BR>
    <P>My online backup ended, before swith to redolog 17676<BR>
    Why I need this file? I think files (17670-17675) should be enough?</P>
    <P>Besides, the cange 226268039 generated exactly at moment Switching to next online redo.<BR>
    Can I try open database regardless of this error?</P>
    <BR>
    <P>Thank you for your prompt response<BR>
    Andrey Timofeev</P>
    Edited by: Andrey Timofeev on Jul 21, 2009 4:53 PM
    Edited by: Andrey Timofeev on Jul 21, 2009 4:54 PM

Maybe you are looking for