Problems capturing pictures about OS6 - East System.getProperty ("video.snapshot.encodings"); valid?

Hello

I hope someone can help with this query.

I use the code that is very similar to the sample application camerademo to take a photo using the camera. It works properly on devices running OS5. However, on devices running OS6 photo is just an image of white/black.

I think I followed the problem until the encoding string passed to getSnapshot(). When I switch which must be a valid encoding string (based on the output of System.getProperty ("video.snapshot.encodings")) the captured image is a black screen. However, when I pass null to getSnapshot() it works correctly. I want to avoid using null as the captured image is much more that I need and for reasons of effectiveness, I would like to avoid having to reduce its size after the capture of the photo.

I tested this on the 9780 Simulator. The corresponding code is included below for reference.

Thanks in advance!

/*
 * CameraDemo.java
 *
 * Copyright © 1998-2008 Research In Motion Ltd.
 *
 * Note: For the sake of simplicity, this sample application may not leverage
 * resource bundles and resource strings.  However, it is STRONGLY recommended
 * that application developers make use of the localization features available
 * within the BlackBerry development platform to ensure a seamless application
 * experience across a variety of languages and geographies.  For more information
 * on localizing your application, please refer to the BlackBerry Java Development
 * Environment Development Guide associated with this release.
 */

package com.rim.samples.device.camerademo;

import java.util.Vector;

import javax.microedition.amms.control.camera.CameraControl;
import javax.microedition.media.Manager;
import javax.microedition.media.Player;
import javax.microedition.media.control.VideoControl;

import net.rim.device.api.system.Characters;
import net.rim.device.api.ui.Field;
import net.rim.device.api.ui.Keypad;
import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.component.Dialog;
import net.rim.device.api.ui.component.RichTextField;
import net.rim.device.api.ui.container.MainScreen;
import net.rim.device.api.util.StringUtilities;

/**
 * A sample application used to demonstrate the VideoControl.getSnapshot()
 * method. Creates a custom camera which can take snapshots from the
 * Blackberry's camera.
 */
final class CameraDemo extends UiApplication
{
    /** Entry point for this application. */
    public static void main(String[] args)
    {
        CameraDemo demo = new CameraDemo();
        demo.enterEventDispatcher();
    }

    /** Constructor. */
    private CameraDemo()
    {
        CameraScreen screen = new CameraScreen();
        pushScreen( screen );
    }
}

/**
 * A UI screen to display the camera display and buttons.
 */
final class CameraScreen extends MainScreen
{
    /** The camera's video controller. */
    private VideoControl _videoControl;

    /** The field containing the feed from the camera. */
    private Field _videoField;

    private Player player;

    /** An array of valid snapshot encodings. */
    private EncodingProperties[] _encodings;

    /**
     * Constructor. Initializes the camera and creates the UI.
     */
    public CameraScreen()
    {
        //Set the title of the screen.
        //setTitle( new LabelField( "Camera Demo" , LabelField.ELLIPSIS | LabelField.USE_ALL_WIDTH ) );

        //Initialize the camera object and video field.
        initializeCamera();

        //Initialize the list of possible encodings.
        initializeEncodingList();

        //If the field was constructed successfully, create the UI.
        if(_videoField != null)
        {
            createUI();
        }
        //If not, display an error message to the user.
        else
        {
            add( new RichTextField( "Error connecting to camera." ) );
        }

    }

    /**
     * Adds the VideoField and the "Take Photo" button to the screen.
     */
    private void createUI()
    {
        //Add the video field to the screen.
        add(_videoField);

    }

    /**
     * Initializes the Player, VideoControl and VideoField.
     */
    private void initializeCamera()
    {
        try
        {
            //Create a player for the Blackberry's camera.
           player = Manager.createPlayer( "capture://video" );

            //Set the player to the REALIZED state (see Player docs.)
            player.realize();

            //Grab the video control and set it to the current display.
            _videoControl = (VideoControl)player.getControl( "VideoControl" );

            if (_videoControl != null)
            {
                //Create the video field as a GUI primitive (as opposed to a
                //direct video, which can only be used on platforms with
                //LCDUI support.)
                _videoField = (Field) _videoControl.initDisplayMode (VideoControl.USE_GUI_PRIMITIVE, "net.rim.device.api.ui.Field");
                //Display the video control
                _videoControl.setDisplayFullScreen(true);
                _videoControl.setVisible(true);
            }

            //Set the player to the STARTED state (see Player docs.)
            player.start();

        }
        catch(Exception e)
        {
            Dialog.alert( "ERROR " + e.getClass() + ":  " + e.getMessage() );
        }
    }

    /**
     * Create a screen used to display a snapshot.
     * @param raw A byte array representing an image.
     */
    private void createImageScreen( byte[] raw )
    {
        //Initialize the screen.
        ImageScreen imageScreen = new ImageScreen( raw );

        //Push this screen to display it to the user.
        UiApplication.getUiApplication().pushScreen( imageScreen );
    }

    /**
     * Handle trackball click events.
     * @see net.rim.device.api.ui.Screen#invokeAction(int)
     */
    protected boolean invokeAction(int action)
    {
        boolean handled = super.invokeAction(action); 

        if(!handled)
        {
            switch(action)
            {
                case ACTION_INVOKE: // Trackball click.
                {
                try
                {
                    //A null encoding indicates that the camera should
                    //use the default snapshot encoding.
                    String encoding = null;

                    // All the below result in a black screen being captured on OS6 devices
                    // encoding = "encoding=jpeg&width=1024&height=768";
                    // encoding = "encoding=jpeg&width=1024&height=768&quality=superfine";
                    // encoding = _encodings[1].getFullEncoding();
                    // Null works but the image captured is large (~1MB)
                    encoding = null;

                    //Retrieve the raw image from the VideoControl and
                    //create a screen to display the image to the user.
                    createImageScreen(_videoControl.getSnapshot(  encoding ) );//null works
                }
                catch(final Throwable e)
                {
                    UiApplication.getUiApplication().invokeLater(new Runnable()
                    {
                        public void run()
                        {
                            Dialog.alert( "ERROR " + e.getClass() + ":  " + e.getMessage() );
                        }
                    });
                }

                    return true;
                }
            }
        }
        return handled;
    }

    /**
     * Prevent the save dialog from being displayed.
     * @see net.rim.device.api.ui.container.MainScreen#onSavePrompt()
     */
    public boolean onSavePrompt()
    {
        return true;
    }

    /**
     * Initialize the list of encodings.
     */
    private void initializeEncodingList()
    {
        try
        {
            //Retrieve the list of valid encodings.
            String encodingString = System.getProperty("video.snapshot.encodings");

            //Extract the properties as an array of words.
            String[] properties = StringUtilities.stringToKeywords(encodingString);

            //The list of encodings;
            Vector encodingList = new Vector();

            //Strings representing the four properties of an encoding as
            //returned by System.getProperty().
            String encoding = "encoding";
            String width = "width";
            String height = "height";

            EncodingProperties temp = null;

            for(int i = 0; i < properties.length ; ++i)
            {
                if( properties[i].equals(encoding))
                {
                    if(temp != null && temp.isComplete())
                    {
                        //Add a new encoding to the list if it has been
                        //properly set.
                        encodingList.addElement( temp );
                    }
                    temp = new EncodingProperties();

                    //Set the new encoding's format.
                    ++i;
                    temp.setFormat(properties[i]);
                }
                else if( properties[i].equals(width))
                {
                    //Set the new encoding's width.
                    ++i;
                    temp.setWidth(properties[i]);
                }
                else if( properties[i].equals(height))
                {
                    //Set the new encoding's height.
                    ++i;
                    temp.setHeight(properties[i]);
                }
            }

            //If there is a leftover complete encoding, add it.
            if(temp != null && temp.isComplete())
            {
                encodingList.addElement( temp );
            }

            //Convert the Vector to an array for later use.
            _encodings = new EncodingProperties[ encodingList.size() ];
            encodingList.copyInto((Object[])_encodings);
        }
        catch (Exception e)
        {
            //Something is wrong, indicate that there are no encoding options.
            _encodings = null;
        }
    }
    protected  boolean keyDown(int keycode,
                           int time) {
        System.out.println("Input" + keycode + "/" + Keypad.key(keycode) + " C1 = " + Keypad.KEY_CONVENIENCE_1 +  " C2 = " + Keypad.KEY_CONVENIENCE_2);
        if ( Keypad.key(keycode) == Keypad.KEY_CONVENIENCE_1 ) {
            return true;
        }
        return super.keyDown(keycode, time);
    }

        protected  boolean keyChar(char c, int status, int time) {
            System.out.println("Input" + c + ":" + Keypad.getKeyCode(c, status));
            switch (c) {
                case Characters.ESCAPE:
                    this.close();
                    return true;
                default:
                    return super.keyChar(c, status, time);
            }

        }
}

Thanks for getting back to me.

It turns out that it was only a problem on the Simulator. I managed to get my hands on a real device 9780 and the code works fine on it.

Tags: BlackBerry Developers

Similar Questions

  • System.getProperty returns NULL on Simulator

    The following call:

    System.getProperty("video.snapshot.encodings")
    

    Returns a null value.

    I tried using the default Simulator of the component package 4.5.0_4.5.0.16.

    This key is available in 4.7 +. I don't know what you're trying to do, but you should know that there is no way to adjust the front camera of 4.6.

  • Problem sending pictures through texting when the WIFI

    I recently move carrier to Cricket wiresless (Yes uses AT & T network) of the Sprint. Since I made the change, I had problems sending pictures through texting when the WIFI. I contacted the Cricket Wireless support and they had me reset the APN settings, he has to work because I also disabled WIFI at the time. Since then, I realized that I don't have the problem, when I cut the WIFI.

    Someone at - it similar problems?

    I found the resolution on Adroid Central:

    Wow! Presented this to the customer service email of Cricket and they responded in 12 minutes confirming:
    Billy M. (Cricket Wireless)
    16 Dec 08:46

    Hi Evan,

    Please contact the Support of Cricket. I'm sorry to hear about the problems you are having with your MMS then on the WiFi. Our team of network has been aware of this problem and is currently working on a resolution. In the meantime, you can use one of the IP addresses below in your MMS proxy under the APN settings that should solve the problem.

    192.168.196.78
    192.168.196.79
    192.168.196.117
    192.168.196.118

    Thank you
    Billy
    Looks like the guys from reddit were correct and the IP addresses are legitimate.

  • Problem with the wireless on the system tray icon.

    Original title: wireless

    not found wirreless icon in the taskbar

    Hi Amourhbone,

    Thanks for posting your question in the Microsoft Community forum.

    It seems that you have a problem with the icon on the system tray wireless.

    I imagine the inconvenience that you are experiencing. We are here to help and guide you in the right direction.
    Provide us with a few details in order to better understand the issue.

    1. which version of the operating system are you using?

    2. deal with any problem with the wireless network using Internet?

    3. do you receive any error messages?

    4. did you of recent changes on the computer before this problem?

    I suggest you try the procedure described in the article and see if it helps.

    System icons do not appear in the notification area in Windows Vista or Windows 7, you must restart the computer
    http://support.Microsoft.com/kb/945011

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    http://Windows.Microsoft.com/en-us/Windows7/back-up-the-registry

    Get back to us and let us know the State of the question, I'll be happy to help you. We, at tender Microsoft to excellence.
  • Want to download 10 W but not able to do that, during installation, a problem arises and the previous operating system is restored.

    My laptop is preinstalled with Windows 7 Home Basic.  At the free launch Windows 10 I downloaded the same and after 2 months, the hard drive crashed.  The repair shop trying to fix formatting, but could not revive.  This is why I bought a new hard drive and repair charge shot Windows 7 Ultimate edition.

    Now, I want to download 10 W but not able to do that, during installation, a problem arises and the previous operating system has been restored.  When I posted the question about how to solve this problem, I was told to try the download by way of USB/ISO file.

    Now my question is that

    one) can I reload Windows 7 Home basic as I have the product key?

    (b) I can then download Windows 10 according to the normal procedure?

    I'm not tech savvy, afraid to download files in USB and then load into the laptop, so this question.

    Concerning

    S Subramanian

    Original title: Windows 7 Home basic

    You can directly download Windows 10. Windows 7 complete edition currently installed is not genuine.

    When you upgraded from a previous version of Windows, what happened is that (your PC) hardware will get a digital right, a unique signature of the computer which is stored on the Microsoft Activation servers. The real Windows 7 or Windows 8 license you were using previously will be exchanged with a key to the diagnosis.

    Whenever you need to reinstall Windows 10 on this machine, go just to reinstall Windows 10. It automatically reactivates.

    Therefore, there is no need to know or get a product key, if you must reinstall Windows 10, you can use your Windows 7 or Windows 8 product key or use the reset function in Windows 10.

    Step 1: How to download official Windows 10 ISO files

    Step 2: how: perform a clean installation of Windows 10

  • Java 7 u45 System.getProperty returns null

    After the upgrade to u45, our web launch application has stopped working. He failed System.getProperty ("myproperty").

    "myproperty" is defined as an

    < resources >

    < j2se version = "+ 1.6" initial-heap-size = "64 m" max-heap-size = "256 m" / >

    < jar href = "nms_wsclient.jar" Download = hand "impatient" = "true" / > "

    < href = tΘlΘchargement jar "commons - httpclient.jar" = "forward" / >

    < href = tΘlΘchargement jar "commons - codec.jar" = "forward" / >

    < href = tΘlΘchargement jar "commons - logging.jar" = "forward" / >

    < jar href = "log4j.jar" Download = "forward" / > "

    "< property name ="myproperty"" value = "http://138.120.128.94:8085 /" / > ""

    < / resource >

    with old java version, System.getProperty ("myproperty") works very well to return the value, but with u45 it returns null.

    Does anyone have the same problem? no idea how to fix or work around it?

    Thank you

    Zhongyao

    7u45 made a change that is not documented in the release notes. You must precede the properties with jnlp.myproperty in your JNLP file, unless your jnlp file is signed.

    But like me, since you can have different values in multiple deployments, signing the JNLP is impossible.

    I tried to submit a bug on this issue report, but their bug report process works as well as 7u45...

  • Qosmio F30-114 - a problem with the installation of operating system

    Hi all
    I have a problem during the installation of operating system from the recovery disk (Win XP Media Center Edition).
    After loading the disc, I seen the installer welcome window, set up all the parameters in it and pressed the OK button.
    After that, an error has occurred (in a black console window):

    Check the type of partition MBR
    Not FOUND: Partition ID 4 is 0x00 not 0 x 88
    Seeking the TMBR
    No found TMBR!
    Fact.

    Microsoft DiskPart version 5.2.3790.1830
    Copyright (C) 1999-2001 Microsoft Corporation.
    On computer: MININT-JVC

    Disk 0 is now the selected disk.

    Services of disk management cannot complete the operation.
    Specified drive does not exist.
    ERROR: E:\04629R01 Reco-unpacking. TPA has failed!
    Press a key to continue...

    After reading this message and pressing a computer key restarts and that's all that happens.
    Also I can not install another OS (Win 7 for example), during the last part of an installation, I get a message "the work cannot be completed.".

    That's happened? I don't understand what is the reason for this problem. I was reinstall another OS (the drive recovery too) often earlier and everything was OK.

    You can install WXP using the Microsoft installation disc?
    Set the BIOS on the settings by default and to use the recovery disk again.

  • HP Officejet 6600: problem with the printer or ink system

    I have a HP Officejet 6600. I replaced the black cartridge with a new HP black ink cartridge. This message keeps poping up, there is a problem with the printer or ink system. Turn the printer off, then on. If the problem persists, contact HP. It gives me as two solutions. Solution 1: Reset the product. Turn the product off, and then unplug the power cord. Plug in the power cord and then press the key to activate the product. I've done this three times. Second solution: contact HP support note the error code provided in the email (I looked and it does not give me one) then he says, supported to contact Hp. go to: www.hp.com/support. Needless to say that this message keeps appearing on the screen of the printer and I can't do anything with the printer. Can anyone help with an idea? Please, I beg you.

    Hey @popcorn101,

    Welcome to the Forums of HP Support!

    I understand that you get the error "printer failure: there is a problem with the printer or ink system' on the front panel of your HP Officejet 6600 e-all-in-one printer.". Thanks for the troubleshooting steps that you received before reaching out for support, including. Right now, you have completed all the troubleshooting steps available in your efforts to solve this error in accordance with the document of support here. The failure itself is probably due to a failure of the print head. The print head is the part that the cartridges will fit. It controls the "reading" of the cartridges and put the ink on the page. If the print head does not, then the printing within your product system has failed. In this model of printer print head is a non-replaceable. Therefore, the resolution is a replacement of the entire unit.

    I highly recommend at this stage that you contact our Technical Support telephone queue for discover hardware replacement options.

    HP technical support are available by clicking on the following link:

    Contact HP support

    (1) once the page opens, please select the country in which you are located. Then, enter your HP model number on the right.

    (2) choose the 'Contact Support' tab at the top and scroll down to the bottom of the page "HP Support - contact" to fill out the form with your details.

    (3) Once finished, click on the 'Show the Options' icon in the lower right.

    (4) Finally, scroll to the bottom of the page and select 'phone number.' A file number and telephone number will now fill for you.

    I wish you good luck going forward with this!

  • Where can I post a problem of Aspire One AO756 USB system recovery?

    Hello.  Where can I post a problem of Aspire One AO756 USB system recovery?  I had a HARD drive crash, replaced the HARD drive and bought a USB (Win 8.1) on the Acer Store system recovery disk.  The USB settles all the installation files and then said to remove the USB key, then click OK to restart.  But the bios can not find a bootable disk to complete construction. I was sent a second USB drive with the same results.  The new HDD Seagate passes each Seatools test.  In addition, I can boot from USB to the DOS or Linux and access the disk without problem. Thank you

    You must use diskpart. in the windows setup program, there is an option to format the partitions manually. allows to delete all partitions, and it will automatically set the MBR or GPT disk.

  • You want to transfer my Win XP system on a new HARD drive. Are there problems with the copying of the system partition?

    Want to transfer all the information on my current including system partitions and data to a new HARD drive than my current HARD drive shows signs of debris. I suspect there are a few problems in the copy of the system partition as some files are not available for copying while windows is running?

    I advise to read the article on the copy of the hard drive in the first place, you can learn more. (:

  • Windows is not genuine, so I'm following the steps here to solve the problem, but I can't find "system services" on the computer! What should I do?

    I can't find "system services" on my lap!

    my windows is not genuine, so I'm following the steps here to solve the problem, but I can't find "system services" on the computer! What should I do?

    Hello

    1. what you trying to do?

    2. were there any changes (hardware or software) to the computer before the show?

    Click on the link below, if you receive the message that Windows is not genuine and see if the problem persists.

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-windows_install/Windows-is-showing-as-not-genuine/6efea9fd-70a9-4530-88c8-93fd7b2d5484

    Hope this information helps.

  • I'm having a problem with my Windows Vista operating system. Problem started on 19 February 2011.

    I'm having a problem with my Windows Vista operating system. I have a Toshiba Satellite A135-S2376. Problem started on 19 February 2011. Computer continues to display Windows Explorer or Microsoft Windows has stopped working messages. Cannot run all programs, sharing disk cleanup, System Restore. Cannot download IE 9. Help, please! For example: tried to run MP3 Rocket he was trying to load & then a message appears at the top that States platform Java cannot run or something to that effect. Basically, I can't run any program that needs to use Microsoft Windows.

    Hello

    You can try to do a system restore before this date

    http://www.windowsvistauserguide.com/system_restore.htm

    If necessary do in safe mode

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode option with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.

    and malware scan

    Download update and scan with the free version of malwarebytes anti-malware

    http://www.Malwarebytes.org/MBAM.php

    You can also download and run rkill to stop the process of problem before you download and scan with malwarebytes

    http://www.bleepingcomputer.com/download/anti-virus/rkill

    If it does not remove the problem and or work correctly in normal mode do work above in safe mode with networking

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode with networking with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.
  • Typo in document System.getProperty

    http://supportforums.BlackBerry.com/T5/Java-development/supported-system-GetProperty-keys/Ta-p/44521...

    fileconn.dir.MemoryCard.Video must bes fileconn.dir.memorycard.video instead. The former will throw an exception.

    Thanks for the find! I will get this update soon.

    See you soon,.

  • System.getProperty

    I'm trying to access the SD card on the Simulator.

    I first 'change' SD card via the Simulation menu and specify a path name, that I have set up to be identical to the structure of the directory of the SD card.

    Then, something I just found out, is that I have to get the name of the SD card.

    System.getProperty tried to get the name of the root directory, and I got the following results.

    The key string result

    filecon.dir.MemoryCard null

    filecon.dir.MemoryCard.Name null

    Why do I get null for the name of the name of the SD card?

    How to open a file on an SD card on the Simulator is - a. Is there anything else I need to put in place on the Simulator in addition to change SD card.

    .. .where is this result telling me that the way to access the Blackberry directory on the SD card is to use the following:

    file:///BlackBerry/

    that is the SD card has no name... null?

    Thank you

    -Donald

    I solved this myself (at least this part :-)

    OK, for those of you who want to know how to open your media card correctly (at least in the storm).

    First, make a call to System.getProperty ("fileconn.dir.memorycard");

    This returns the string "file:///SDCard/".

    Note that you are not guaranteed that the file system of the media card will always be SD card, so you should always call System.getProperty beforehand.

    Then, if you use the Simulator, you must select the simulate change... SD card menu. This opens a small window allowing you to select different directories (by default is set to None, which means the media card is disconnected). You can click new folder to set the directory that emulates the directory root of the press card. You can enter several directories and it will remember them so you can switch from one to the other. The entry selected (highlighted) is used, so if you select none, it generates an event to remove media card.

    You must also set the it strategy using strategy-simulation game IT... menu.

    Under the tab control application, you must assign to allow local connections and all the other features that you will use. Similarly, the policy of COMPUTER you must select allow local connections and click on him-> the button to add to the list of policies. Also you must click on the set after that to define the it strategy.

    OK, now you can open the connection to the file.

    -Donald

  • Hi, I have windows 7 with explore 11 and system: Windows 64-bit, English, MSIE. My problem is when I click on a new video I get e message telling him that I have to update my Adobe Flash Player, if I click it and it takes me to your site for updates ok.

    Hi, I have windows 7 with explore 11 and system: Windows 64-bit, English, MSIE. My problem is when I click on a new video I get e message telling him that I have to update my Adobe Flash Player, if I click it and it takes me to your site for updates ok. I go through the steps 1 and 2 ok, but when the small screen for the Adobe Flash Player Downloader arrives, he remanins empty and nothing happens. So what to do the next update please.

    Please do not post the same question more than once!

Maybe you are looking for

  • iTunes Store recently added missing purchases

    Since the upgrade to iTunes 12.4.1 my purchases of song/album iTunes Store is no longer appear in the list "recently added". Individual tracks are also not appearing in 'Song' registration and my iTunes game does not synchronize these purchases in an

  • Re: Satellite C660D - cooling system of the fault

    Hello I get a message on my cell, read, defect detected in the cooling system immediately turn off the power and claim a satellite service. It is not the fan I had the I.T. guys at work, take a look. It seems the front of the laptop, where is the car

  • file missing IMM32.dll

    How do I re-coop missing a file IMM32.dll

  • Backup Windows XP does not seem to be clear the attribute archive when you perform a normal backup.

    Backup Windows XP does not seem to be clear the attribute archive when you perform a normal backup. I do a backup of the 'Normal' at the beginning of the month.  Then, at the end of the first week, I do a "Differential" backup (using the same "backup

  • Reserve snapshots

    I have a Dell PS6100 we use for our VM storage. I had one of our technicians under contracts tell me today that, by setting snapshot reserve at 0% (we do not use them), that he has learned in his years of class Dell there that there would be "a drop