Using Switch Excequtive with NI TestStand

Hello
I am beginner in NI teststand & NI switch excequtive.
I have NI SCXI-1001 Chassis with NI SCXI-1130 switching slots.
I need a quick help on how to use switching in NI TestStand. What  I am going to do is: generating a signal by a RIGOL Function Generator and switch this signal to excite some piezoelectric sensors and reading the response signals by a Tektronix oscilloscope.
I have read these documents:
NI TestStand 4.0 Quick Start Guide
Getting Started with TestStand
GETTING STARTED GUIDE NI Switch Executive
and so on
But still, I can not switch the signals with my hardware.
Is there any Tutorial to help me in doing my work?
Is there any VI code,  NI TestStand Sequence or Example which can help me?
Please help me asap
Thanks in advance,
Mohammad

Hi Mohammad,
The following are a few documents that outline various ways (including with the Switch Executive) to incorporate switches into your TestStand sequence:
http://zone.ni.com/reference/en-XX/help/370404G-01/nise/teststand/
http://www.ni.com/white-paper/10092/en/
Let us know if those are helpful and keep us updated on your progress!
Regards,
David R
Applications Engineer
National Instruments

Similar Messages

  • How to Use Switch Statement with Exclusion Group (radio buttons)?

    Wouldn't you know, just when I though I'd really be making progress, I've come across another problem I can't solve. In a homeowners insurance application I am building, there is an exclusion group that needs to set the value of several variables
    I have setup in the form properties/variables. These variables take on different values depending on the users choice.  For the exclusion group, in the object pallet, I have set the binding to normal, and have checked the "Specify Item Values" check box. Also the values for the choices have been assigned 1,2,3,4,5.
    Here is my code for the change event fir the exclusion group (This is exactly what I have tried). For now, the values for the variables to take on in the different cases, are completely arbitrary.
    switch (this.change.rawValue)              // I have tried so many things here
        case "1":                                        // I have tried the caption, single quotes in all combinations
            addLivingExp = "1";
            damageOthersProperty = "2";
            liabilityIncl = "3";
            maxCoverage = "4";
            minCoverage = "5";
            persProperty = "6";
            relatedPrivateStruct = "7";
            break;
        case "2":    
            addLivingExp = "10";
            damageOthersProperty = "20";
            liabilityIncl = "30";
            maxCoverage = "40";
            minCoverage = "50";
            persProperty = "60"
            relatedPrivateStruct = "70";
            break;
        case "3":    
            addLivingExp = "100";
            damageOthersProperty = "200";
            liabilityIncl = "300";
            maxCoverage = "400";
            minCoverage = "500";
            persProperty = "600"
            relatedPrivateStruct = "700";
            break;
        case "4":    
            addLivingExp = "1000";
            damageOthersProperty = "2000";
            liabilityIncl = "3000";
            maxCoverage = "4000";
            minCoverage = "5000";
            persProperty = "6000"
            relatedPrivateStruct = "7000";
            break;   
        case "5":    
            addLivingExp = "10000";
            damageOthersProperty = "20000";
            liabilityIncl = "30000";
            maxCoverage = "40000";
            minCoverage = "50000";
            persProperty = "60000"
            relatedPrivateStruct = "70000";
            break;   
        default:   
            minCoverage= 5;   
            break;
    There must be something obvious I am missing? Eternally grateful for advice on this.
    Stephen

    There are two issues in this script:
    1. You are not using the accessor 'value' to set form variables
    2. You are not correctly getting the value of the radio button list in the switch clause
    Please see the working script below.
    Ben Walsh
    www.avoka.com
    switch (this.rawValue) 
        case "1":                                       
            addLivingExp.value                  = "1";
            damageOthersProperty.value   = "2";
            liabilityIncl.value                      = "3";
            maxCoverage.value                 = "4";
            minCoverage.value                  = "5";
            persProperty.value                  = "6";
            relatedPrivateStruct.value        = "7";
            break;
        case "2":   
            addLivingExp.value                  = "10";
            damageOthersProperty.value   = "20";
            liabilityIncl.value                     = "30";
            maxCoverage.value                 = "40";
            minCoverage.value                  = "50";
            persProperty.value                  = "60"
            relatedPrivateStruct.value        = "70";
            break;
        case "3":   
            addLivingExp.value                 = "100";
            damageOthersProperty.value   = "200";
            liabilityIncl.value                     = "300";
            maxCoverage.value                 = "400";
            minCoverage.value                  = "500";
            persProperty.value                  = "600"
            relatedPrivateStruct.value        = "700";
            break;
        case "4":   
            addLivingExp.value                  = "1000";
            damageOthersProperty.value   = "2000";
            liabilityIncl.value                      = "3000";
            maxCoverage.value                 = "4000";
            minCoverage.value                  = "5000";
            persProperty.value                  = "6000"
            relatedPrivateStruct.value        = "7000";
            break; 
        case "5":   
            addLivingExp.value                  = "10000";
            damageOthersProperty.value   = "20000";
            liabilityIncl.value                      = "30000";
            maxCoverage.value                 = "40000";
            minCoverage.value                  = "50000";
            persProperty.value                  = "60000"
            relatedPrivateStruct.value        = "70000";
            break; 
        default:  
            minCoverage.value                 = 5;  
            break;

  • Problems in using Labview DLL with TestStand!

    Hi,
    I tried to put the VI's to create a TCP/IP Connection, read/write Data to it and close it inside a LabVIEW DLL and use these functions with TestStand.
    The problem is to get access to the ConnectionID generated as TCP Network Refnum in LabVIEW.
    I don't know how to specify the prototype entry for this Refnum in LabVIEW and how to read it with TestStand.
    Another try to pass an ActiveXReference of SequenceContext and use the SetValIDispatch method to set a local variable (Type: ActiveXReference) to the returned ConnectionID of the TCPOpen.VI wasn't successful too.
    It seems to me that the connectionID isn't a normal ActiveXReference.
    Regards,
    Sunny

    Hi Sunny -
    You should treat this parameter as a pointer to an int when calling the DLL from TestStand (or any language like C or C++). Note that you can't do anything with the value outside of LabVIEW since it only has meaning inside of LabVIEW. You can only pass it around for use in other VIs you call from TestStand.
    Hope this helps....
    Kyle G.
    National Instruments
    Kyle Gupton
    LabVIEW R&D
    National Instruments

  • Who is anybody using a WISM with FWSM on a CAT 6500 Switch?

    Hi
    Who is anybody using a WISM with FWSM on CAT 6500 switch ?
    Are there any problem,if use?
    And How can I set them to connecting each other ?
    I have founded a document relate it on the cisco website that name is Integrating Cisco WiSM and Firewall Service Module.
    I have a question concern it.
    Why do I have make a VRF to communication each other ?
    Please let me know.

    As far as the FWSM is concerned you can have each of the wireless vlans come in to the same context of the FWSM and then just add those vlans to the FWSM as separate vlans.

  • Using Switch With Double(Need Help)

    Hello,
    I want to write a program which says grades from numbers.For example;
    When i write 87,it has to say that 87=BB
    Grade system;
    AA =94 - 100
    BA =89 - 93
    BB =84 - 88
    CB =79 - 83
    CC =74 - 78
    FF =0-73
    and i wrote this;
    import javax.swing.JOptionPane;
              public class GradeCalculate {
                 public static void main(String[] args) {
              double value = Double.parseDouble(JOptionPane.showInputDialog ("Enter value\n"));
                        switch (value/10.0) {
                        case 10.0:  System.out.println("AA"); break;
                     case 9.9:  System.out.println("AA"); break;
                     case 9.8:  System.out.println("AA"); break;
                     //it is going like that 9.7, 9.6, 9.5... etc               
    }But i cant compile it.Where am i making mistake?How can i use double command with this program?I have to do this with using double and switch commands.
    Thanks for helping.
    Edited by: SuMMerMaN on Mar 10, 2010 12:14 PM
    Edited by: SuMMerMaN on Mar 10, 2010 12:14 PM

    SuMMerMaN wrote:
    Well,it says;
    possible loss of precision
    found:double
    required:int
    switch (value/10.0)
    ^but i couldn't solve my problem,i have to use double command and it says "required:int"This is telling you that what goes inside the parentheses in switch(...) must be an int. So you need to either supply an int value, or cast the value that you do supply.

  • Apple iPAD 2.  Needs password to unlock iPAD; however there is a permanent keyboard displayed on the screen that does not respond to touch. iPAD switches on with button but does not turn off using it at moment.  Can you help please?

    Apple iPAD 2.  Needs password to unlock iPAD; however there is a permanent keyboard displayed on the screen that does not respond to touch. iPAD switches on with button but does not turn off using it at moment.  Can you help please?

    Try a reboot by holding both the power and home buttons until the apple logo appears, ignore the red slider if that appears.  See if that clears the glitch.

  • I have The last version of the MAC GT 4 desktop, don't intend to buy a new on just so I can upgrade to Firefox 4 so what alternative do I have - keep using Firefox3.6 with no support or switch to

    I have The last version of the MAC GT 4 desktop, don't intend to buy a new one just so I can upgrade to Firefox 4 - so what alternative do I have - keep using Firefox3.6 with no support or switch to another Browser?

    Firefox 4 requires at least OS X 10.5 and an Intel Mac. There is a third party version of Firefox 4 that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox
    If you prefer, you can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html
    Firefox 3.6 is still being supported.

  • I am trying to switch laptops with my mom, and successfully wiped mine and restored it, but now her password won't allow her into my computer, even though it says it's her account. Is there any way to bypass the password screen?

    I am trying to switch laptops with my mom, and successfully wiped mine and restored it, but now the password that she used on her computer isn't working on this computer. Is there any logical reason why the two passwords would be different, if I restored her information from a Time Machine backup? Aditionally, Is there a way to bypass the password page on startup to make a password that my mom knows?

    If Disk Warrior does not work you can try the following steps (but they may not work if the disk has a hardware error).
    Get the disk (DVD or CD) that came with the system (since you have it listed as 10.6.8).  If it is 10.7 or 10.8 use the Recovery partition to boot from or the USB installer if you have that option.
    Insert the disk then power down
    HOLDING the C key, power up to boot from the disc.
    Get to Disk Utility
    If Disk Utility will now show your hard drive, use DU to REPAIR the disk.
    When it completes the Repair process successfully as indicated in DU, do a shut down.  If Repair is not successful then an different course of action is indicated below.
    Then HOLDING THE APPLE (or Command key depending on your keyboard) KEY AND THE OPTION KEY AND THE LETTER P AND R KEYS, continue hiolding them until you hear the chime tone for the THIRD time then release all four keys.
    If REPAIR is not successful, use the Install disc as a boot and REINSTALL THE OS X OPERATING SYSTEM  DO NOT ERASE THE DISK OR VOLUME FIRST.  REPEAT DO NOT erase the disk or volume before trying to reinstall the OS X operating system.  After re-installing the OS do a software update.  Note that ERASING the disk is NOT required to do an OS re-install.  This allows your existing data and application files to remain.
    If that fails then you are down to the "bitter end" of erasing the volume and reinstalling the OS and then all the other software.
    If erasing the Volume fails then your last hope is to completely erase the entire hard drive, repartion the disk  and try a re-install.
    If that fasils then you may have a defective hard disk.

  • Using TIME MACHINE with a TIME CAPSULE

    There's often a bit of confusion about this terminology: +*Time Machine+* vs. +*Time Capsule:+*
    _*Time Machine*_ is Apple software that performs backups, to an external HD, a Time Capsule, etc.; and also allows you to browse and restore from them. It comes with Leopard and Snow Leopard, but cannot run on any previous versions of OSX.
    A _*Time Capsule*_ is a piece of Apple hardware that combines a wireless router and hard drive, that can be used for Time Machine backups and/or other data.
    Most Time Machine questions & problems are not unique to Time Capsules. For those, or if you don't find what you need here, try one of these:
    Time Machine - Frequently Asked Questions
    Time Machine - Troubleshooting
    They can also be found in the *User Contributed Tips* section of both +Time Machine+ forums:
    Mac OS X v10.5 Leopard > Time Machine
    Mac OS X v10.6 Snow Leopard > Time Machine
    Contents
    |
    QUESTIONS
    *Q1. How do I set up Time Machine to back up to my Time Capsule?*
    *Q2. How do I set up Time Machine to back up to a USB drive connected to my Time Capsule?*
    *Q3. Can I use my Time Capsule for Time Machine backups AND other data?*
    *Q4. My Time Capsule is too small to back-up my Mac(s). Now what?*
    *Q5. Should I delete backups? If so, how?*
    *Q6. How do I back-up my Time Capsule and/or USB drive(s) connected to it?*
    If you don't see your question here, try the Frequently Asked Questions *User Tip,* also at the top of the +Time Machine+ forum.
    |
    PROBLEMS
    *P1. The Backup disk image could not be created.*
    *P2. Time Machine could not complete the backup . . sparsebundle could not be accessed. (Error 109).*
    If you don't see your problem here, try the Time Machine - Troubleshooting *User Tip,* also at the top of the +Time Machine+ forum.
    QUESTIONS
    |
    _*Q1. How do I set up Time Machine to back up to my Time Capsule?*_
    |
    First, set up your Time Capsule via +Airport Utility.+ Keep the name you assign to it, your Computer, and your network short (under 25 characters), and avoid embedded spaces, special characters, and punctuation (see item #P1 below for details). Make sure your Mac can connect via an Ethernet cable, if at all possible, as well as wirelessly.
    The setup and first backup (of your entire system) will be much faster if you connect via Ethernet.
    |
    a. If the +Time Machine+ icon isn't already in your Dock, drag it there from your Applications folder. See below for more about it's use.
    b. Right-click it and select +Open Time Machine Preferences,+ click the +Show Time Machine status in the menu bar+ box (see below), then click +Select Disk+ (on Leopard, this button will be either +Choose Backup Disk+ or +Change Disk).+
    c. A list of possible destinations will appear. It should include your Time Capsule (with the name you gave it via Airport Utility), and may show other internal or external drives as well. Select your Time Capsule and click the +Use for Backup+ button.
    d. A prompt for your name and password will appear. In some cases there won't be a Name field, but if there is, enter your short user name. Also enter the password you set up for the Time Capsule via Airport Utility, then click the Connect button.
    e. A 120-second countdown to the start of your first backup will appear in the +Next Backup+ area of the TM Preference panel.
    |
    Note that this first backup will copy the entire contents of your system, except for a few things that are skipped automatically, such as system work files, most caches, your logs, trash, etc., and anything else you may have excluded (see #10 and #11 in the Frequently Asked Questions *User Tip,* also at the top of the +Time Machine+ forum). So it will be rather lengthy, depending on how much data is on your system, whether you're connected via Ethernet or WIFI, and if WIFI, how good the signal is.
    You can continue to use your Mac while TM is backing-up, and you can even cancel a backup if necessary, but to make this first full backup as fast as possible, try not to overload your Mac or cancel the backup.
    |
    _*The Time Machine Icons in your Menubar and/or Dock*_
    |
    In the steps above, you dragged the TM Application's icon into your Dock, and clicked the +Show Time Machine status in the menu bar+ box.
    For detailed info about them, see question #24 in the Frequently Asked Questions *User Tip,* also at the top of the +Time Machine+ forum.
    +Go to Top+
    _*Q2. How do I set up Time Machine to back up to a USB drive connected to my Time Capsule?*_
    |
    Mostly the way you set it up to use the Time Capsule's internal HD.
    But first, attach the drive directly to your Mac, and erase and format it per the instructions in #5 of the Frequently Asked Questions *User Tip,* also at the top of the +Time Machine+ forum. Note, however, that it doesn't matter whether you use the +Mac OS Extended (Journaled)+ or +Mac OS Extended (Case-sensitive, journaled)+ Format, since Time Machine will put your backups in a sparse bundle that's case-sensitive. You cannot change that.
    Unlike the Time Capsule's disk, you can partition the USB drive. That's highly recommended if you're going to be putting other data there, so the backups don't completely fill the disk (but be aware that Time Machine cannot back that "other" data up. See question #Q6 below).
    If you're backing-up multiple Macs to the same drive, you can make one partition for each, but it's not as helpful on a network drive, because each Mac's backups will be in a separate sparse bundle. So you can let them share the disk or a partition.
    Also note that if you've been doing backups to an external disk connected directly to your Mac, you cannot continue the same set of backups when you connect it to your Time Capsule. They are stored differently, and Time Machine will put them in a sparse bundle, alongside but *completely separate from* the backups made locally, and the first backup will be a full backup of your entire system.
    Once the USB disk is set up the way you want it, use the setup procedure in question #Q1 above, but in step (c), select the USB drive/partition, not the Time Capsule's internal HD.
    *RAID Sets connected to a Time Capsule:*
    |
    Time Machine will back up to a +Hardware Mirrored RAID set,+ also called +RAID 1,+ (sold that way, with multiple drives in the same enclosure). However, if you partition the +Hardware Mirrored RAID set,+ once you start using it with TIme Machine, you cannot change the sizes later and continue to back up to the same set of backups.
    While you can connect multiple USB drives to a Time Capsule via a USB hub (a powered one is best), Time Machine +*will not+* back up to a +software Mirrored RAID+ set (where you combine the drives into a single volume via Disk Utility).
    +Go to Top+
    _*Q3. Can I use my Time Capsule for Time Machine backups and other data?*_
    |
    You can put other data on your Time Capsule's internal HD, but there are three major considerations:
    Especially for things like photos and videos, access may be too slow for convenient viewing, and worse for editing. So test this a bit before you decide what to put there.
    Time Machine cannot back-up that other data, so you'll need some other method. See question #Q6 below.
    Time Machine will, by design, fill up all the space available to it, so there may be a conflict between the sparse bundle it puts your backups in, and the other data. There is a workaround, to "reserve" some space there, by creating a disk image of the desired size and storing your data there, but it's a bit cumbersome, and two Macs can't share it at the same time.
    An alternative is to connect a USB drive to your Time Capsule. Then you can back up to the TC's disk and use the USB drive for other data, or vice-versa. But note that Time Machine cannot back-up the USB drive while it's connected to the TC (see question #Q6 below).
    If you want to reserve space on the TC's internal disk, here's how:
    |
    a. Start the +Disk Utility+ app (in your Applications/Utilities folder). Click the +New Image+ icon in the toolbar (or select +File > New > Blank Disk Image+ from the menubar). If the little arrow to the right of the "Save As" box points down, click it so it points up.
    b. Give it a name in the "Save as" box. This name will appear on the TC's disk, with ".dmg" appended. (Similar to the way the sparse bundle containing your Time Machine backups appears, with ".sparsebundle" appended).
    c. Click your TC in the sidebar. It may take a few moments for Disk Utility to recognize it, and show it in the center pane.
    d. In that center pane, select the blue Share folder for your +Time Capsule+ (you may need to scroll down, or enlarge the window, to see it). Once selected, you'll see any existing disk images in the right pane.
    e. Give the Image a name. This name will appear on your desktop and/or Finder sidebar when you mount the .dmg by double-clicking it, if you have the +External Disks+ box checked in +Finder > Preferences > General+ or +Finder > Preferences > Sidebar.+
    f. Select the Size for the amount of space you want to reserve, either one of the pre-sets or Custom which allows any size. Avoid taking all the remaining space for the disk image, as Time Machine needs a bit of room to operate. Also note that if very little space is left, it will begin deleting old backups very soon, to make room for new ones.
    g. Select the desired Format, probably the default of +Mac OS Extended (Journaled).+
    h. If you want it encrypted, select the desired type.
    i. Select single partition, either GUID or +Apple Partition Map.+
    j. Select +Read/Write disk image+ for Image Format.
    k. Click the Create button. The larger the image size, the longer this will take.
    |
    When complete, the new disk image will be automatically mounted on your Mac's desktop, ready to receive the files you want to move into it. (When you first open a disk image, there may not be a sidebar and/or toolbar; if so, select +View > Show Toolbar+ from the Finder menubar.)
    To access this disk image from another computer, you must first eject it from this one, since only one can mount it at a time. Otherwise, the other one will see a message that the disk image is "Temporarily unavailable."
    Note that you may be able to change the size of the disk image later, via +Images > Resize+ from the Disk Utility menubar (while the disk image is not mounted or selected in Disk Utility's sidebar).
    +Go to Top+
    _*Q4. My Time Capsule is too small to back-up my Mac(s). Now what?*_
    |
    You can attach a USB drive to your Time Capsule. Then you can back up to the USB drive instead of the Time Capsule's internal HD. If you have multiple Macs, you can back some up to the TC's internal drive, and others to the USB drive.
    If you need even more space, you can connect multiple USB drives via a hub (a powered one is usually best), and back up different Macs to each. What you cannot do, however, is have one Mac's backups continue from the Time Capsule's internal HD to a USB drive connected to it, or have the backups for any one Mac "span" two drives.
    The exception is, you can connect two (or more) drives that are in a +concatenated RAID+ set (sometimes called +RAID 0).+ In that configuration, all the drives in the set are treated as a single volume (see +Concatenated RAID+ in the Help for Disk Utility for details). This configuration may cause some other difficulties; once they're in a RAID set, you cannot connect any drive to your Mac separately -- it's all or none. And if one drive fails, you risk losing everything on all the drives in the set.
    See question #Q2 above for setup instructions for backing-up to the USB drive.
    +Go to Top+
    _*Q5. Should I delete backups? If so, how?*_
    |
    It depends on exactly what you want to do, and why.
    Under normal circumstances, you shouldn't have to delete anything. TM automatically "thins" (deletes) backups every time it does a new backup, on the following schedule:
    "Hourly" backups after 24 hours (except the first of the day, which is a "Daily" backup).
    "Daily" backups after a month (except the first of each week, which is a "Weekly" backup.)
    "Weekly" backups are kept until TM needs the space for new backups; then one or more of the oldest weeklies will be deleted.
    However, TM will never delete the backup copy of anything that was on the disk being backed-up at the time of any remaining backup. So all that's actually deleted are copies of items whose originals were changed or deleted before the next remaining backup.
    But if you do need to delete backups, here's how:
    To delete individual backups, or all backups of selected item(s), see #12 in the Frequently Asked Questions *User Tip,* also at the top of the +Time Machine+ forum.
    To delete everything on the Time Capsule's internal HD, use +*Airport Utility.+* Select +*Base Station > Manual Set-Up+* from the Menubar, then Disks in the tool Bar, then Erase.
    To delete everything on a connected USB drive/partition, you can delete via the Finder, but that may take a very long time. It may be faster to disconnect it from your Time Capsule, connect it directly to your Mac, and use Disk Utility (in your Applications/Utilities folder) to erase the disk/partition.
    To delete all the backups for one Mac, without disturbing anything else on the Time Capsule's internal disk, open the TC via the Finder and delete the sparse bundle associated with that Mac.
    To delete all the backups for one Mac, without disturbing anything else on a connected USB drive, either open the USB drive via the Finder and delete the sparse bundle associated with that Mac, or disconnect the drive from the TC, connect it directly to your Mac, and delete the sparse bundle from there.
    +Go to Top+
    _*Q6. How do I back-up my Time Capsule and/or attached USB drive(s)?*_
    |
    That depends to some extent on what you want to back up, and where it is.
    It's generally not a good idea to try to back-up your Time Machine backups. If there's a problem with them, it will be copied to (and perhaps magnified on) the copy.
    A better solution is probably to use either Time Machine or a different application to make separate, independent backups of your Mac, to a different destination. A portable external hard drive is great for this; you can periodically connect it to your Mac, make a backup, then take it to a secure off-site location, so you're protected against fire, flood, theft, direct lightning strike on your power lines, etc. If you use Time Machine for this, you'll have to use the disk selection process each time you want to switch, via +Time Machine Preferences.+
    Many folks use the CarbonCopyCloner or SuperDuper! apps to make "bootable clones" of their internal HD to an external HD. While these usually don't have "archived" copies of previous versions of things you've changed or deleted, you can boot and run your Mac from them if your internal HD fails. Your Mac may run a bit slower, but it will be usable. Both are easily found via Google.
    Since Time Machine cannot back up your Time Capsule's internal hard drive, or a USB drive connected to it, if you have other data there, you'll need a different method to back up that other data.
    In a pinch, you can disconnect a USB drive from your Time Capsule, attach it to your Mac, and copy or back it up that way.
    |
    There is a procedure that will let you "archive" the TC's internal disk to a USB drive connected to it.
    But it's not quick, since since the data must be read from the TC's internal disk to your Mac, then sent *back through the Time Capsule* to the connected USB drive. And it's "all or nothing" -- you can only use this procedure to copy the entire contents.
    All users will be disconnected from both the internal HD and the connected USB disk (but the network will remain usable).
    Attach a USB drive with at least as much free space as the total amount of data on the TC's internal HD (see #5 in the Frequently Asked Questions *User Tip,* also at the top of the +Time Machine+ forum, for formatting instructions).
    Turn Time Machine "Off" via +Time Machine Preferences.+ Stop all processes that may be accessing the Time Capsule's disk. If possible, connect your Mac to the Time Capsule with an Ethernet cable -- it will still be slow, but faster than WIFI.
    Then follow this Apple procedure: Using AirPort Utility 5.3.1 or later to make a copy of the Time Capsule disk.
    +Go to Top+
    PROBLEMS
    |
    _*P1. The Backup disk image could not be created.*_
    |
    Oddly enough, Time Machine can be rather picky about the way certain things are named.
    Check your +*Computer Name*+ at the top of the System Preferences > Sharing panel.
    It must not be blank; it should not be more than 25 characters long; and you should avoid punctuation, spaces, and special characters.
    After changing it, click the Edit button and make the corresponding change to the +*Local Hostname.+*
    If that doesn't help, apply the same rules to the name of your Time Capsule and Network, via +Airport Utility.+
    +Go to Top+
    _*P2. Time Machine could not complete the backup .. sparsebundle could not be accessed. (Error 109).*_
    |
    The sparsebundle containing your backups is corrupted.
    Try Repairing it, per #A5 in the Time Machine - Troubleshooting *User Tip,* also at the top of the +Time Machine+ forum.
    If the sparsebundle is on your Time Capsule's internal HD, and Disk Utility can't fix it, your only option is to delete it (or erase the TC's disk), and let Time Machine start over. You may be able to prevent this from happening again by changing the names per problem #P1 above.
    If the sparsebundle is on a USB drive connected to your Time Capsule, and Disk Utility can't fix it, it's possible a heavy-duty 3rd-party +Disk Repair+ application, such as +Disk Warrior+ can. (You'll have to connect the drive directly to your Mac.) These are not cheap, and there's no guarantee they can fix it. Be certain whatever you use is compatible with your OS. For Disk Warrior, you need at least version 4.1.1 for Leopard, 4.2 for Snow Leopard.
    +Go to Top+

    This tip is ready for consideration.
    It is an update to the current Tip at: http://discussions.apple.com/thread.jspa?threadID=2296894
    Changes:
    Q1: replaced info about the TM icons with a link to the TM FAQ tip.
    Q2: added info about RAID sets attached to a TC
    Q6: reworded a bit and replaced last paragraph with a link to the Apple article.

  • Using stored procedures with a timestamp parameter with Delphi  and ADO

    Dear Oracle experts,
    I have a problem concerning using a stored procedure with Delphi.
    I try to use a stored procedure which hast two input parameters ( a integer and a timestamp).
    The timestamp parameter is my problem since I would like to use the "to_timestamp"
    Oracle-function to create the timestamp parameter to be inserted into my procedure.
    If I insert the to_timestamp statement as a adodatetime I have to perform the conversion to the oracle timestamp in my application.
    If I want to use the to_timestamp statement I have to use the ftstring datatype but in that case I get an error because I use a string as input for my procedure were it awaits a timestamp.
    So the problem seems to be that the function call "to_timestamp" is not interpreted if it is transferred through my ADO component.
    Do you know how to use a procedure with Delphi (ADO) with a function as input parameter ?
    Best regards,
    Daniel Wetzler
    P.S. :
    This is the Delphi code to use my Procedure.
    FactsTempDS:=TADODataset.Create(nil);
    Sproc1 := TAdoStoredProc.Create(nil);
    Sproc1.Connection := TDBConnection(strlistConnectionstrings.objects[iConnectionIndex]).Connection;
    Sproc1.ProcedureName := 'ECSPACKAGE.PROCFINDINITIALSWITCHSTATE';
    Sproc1.Parameters.CreateParameter ('SwitchID',ftInteger,pdinput,0,0);
    //Sproc1.Parameters.CreateParameter ('StartTime',ftdatetime,pdinput,50,0);
    Sproc1.Parameters.CreateParameter ('StartTime',ftString,pdinput,50,0);
    Sproc1.Parameters.Findparam('SwitchID').value:=SwitchID;
    Sproc1.Parameters.FindParam('StartTime').Value:= 'to_timestamp(''2005/12/30 19:36:21'', ''YYYY/MM/DD HH:MI:SS'')';
    Sproc1.CursorType := ctKeyset;
    Sproc1.ExecuteOptions:=[];
    Sproc1.Open;
    Sproc1.Connection := nil;
    FactsTempDS.Recordset:= sproc1.Recordset;
    if FactsTempDS.RecordCount=0
    then raise Exception.Create('No line switch variable found for switch '+IntToStr(SwitchID)+' before starttime. Check BDE dump filter.')

    I have my entity manager setup in a singleton.
    I'm finding it's costly to generate the emf, but if I don't close the em (enitity manager) and emf (entity manager factory) my open cursor count climbs until I exceed the max number of open cursors on the database (11g RAC)
    I'm committing the connection, and uow, and closing the em at the end of each call.
    But until I close the emf, the open cursors aren't released.
    TransactionhistoryPkg tranPkg = new TransactionhistoryPkg(conn); //Class created over database package via JPublisher
    tranPkg.transactionhistoryInsSp(insertTrans.getCardId()); // executes db package
    tranPkg.closeConnection();
    conn.commit();
    uow.commit();
    uow.getAccessor().decrementCallCount();
    em.close();
    Am I missing something really obvious here??
    btw - I found this link helpful in troubleshooting the max cursors issue: https://support.bea.com/application_content/product_portlets/support_patterns/wls/InvestigatingORA-1000MaximumOpenCursorsExceededPattern.html

  • How to use Time Machine with an external drive?

    Hi…I’m new to this, I hope someone can help me=)
    I’m trying to back up my Macbook Pro 10.6.8 using Time Machine with an external drive Seagate Backplus Slim. I’ve tried several solutions that I’ve found through different forums but still wouldn’t work.
    Every time I opened Time Machine, it has this appearance:
    Then when I click “Select backup Disk”, it goes on like this:
    And after I click “Set Up Time Capsule”, it has this:
    It keeps saying that it couldn’t find AirPort wireless, even though I have good WIFI connection.
    Anyone know what I should do? Please help….Thanks everyone

    Ayuphie ~ In your Time Machine Preferences panel, slide the OFF-ON switch to the ON position:

  • After several years of use very satisfied with Firefox, recently loaded version (4.0.1) severely slows my browsing, and even my system, especially when there are pictures or videos. I said that this was not the case before and my system is Windows XP SP3.

    After several years of use very satisfied with Firefox, recently loaded version (4.0.1) severely slows my browsing, and even my system, especially when there are pictures or videos. I said that this was not the case before and my system is Windows XP SP3.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • I am unable to get sound using apogee jam with my guitar. I can see input levels but no sound. What step am I missing?

    I am unable to get any sound using apogee jam with my guitar in logic pro 9. I am using Macbook pro.

    status...      
    DWdrummerBeam  
            Jun 4, 2012 3:24 PM    
    I think I have done something wrong. I used my Apogee Jam on a guitar project with several audio tracks in Logic Pro 9. And while the Apogee Jam still was connected, I switched to another project with only instrument tracks (synths). I forgot to change the "Built In Input". After I did this, my guitar sounds like crap when I try to use Apogee Jam in the same guitar project, or also if I create a new project. I use Guitar Rig 5 (Native Instruments) as my guitar plug-in. But the guitar sounds strange even if I don´t assign Guitar Rig.
    Can somebody help me?

  • How to load configuration files with to TestStand

    Hello,
    I need an expert advise on setting up Teststand environment. I am developing a generic tester that will eventually support multiple product lines. The PXI equipment is common but the Pin assignment will change from product to another. So, I was thinking to have a configuration file (xml, excel, .csv...etc) that defines each product line. The configuration file will contain all the pin routing, like which pin is connected to which NI Card channel and fault insertion unit. My thought was to load this configuration file to the Teststand environment before starting a series of tests. I had in mind using XML files and use a labview parser to extract the data and write it to Teststand variables. My question is:
    Is this the best practice for this approach ? Is there a better method ? Can I load data into Teststand first and hold the data in Teststand while testing a bunch of UUTs. I do not want load this file at the beginning of every Test, just once when opening Teststand.
    I appreciate any advise on this.
    Thanks,
    Ayman

    I'm using .ini file with configuration information and a startup sequence what read this file, configure the system and then run selected tests. Selected tests list is in the .ini file as well. Configuration info is passed to subsequences as a parameter or "propagate local".
    I disagree with the idea of creating a separate sequence for each product, this solution is not scalable.
    Message Edited by skof on 12-24-2009 09:37 PM
    Sergey Kolbunov
    CLA, CTD

  • I can't use my iPad2 with CANON EOS 350D

    I can't use my iPad2 with CANON EOS 350D

    Hi! You seem to be good at this. today I purchased the Camera Connection Kit but it doesn't work with my old Canon EOS 350d. I've switched to 'PTP' but it doesn't work. When I go in to "pictures" and "Camera" I can't see any pictures. Do you have any idea why? Can it have somehing to do with that I don't have the newest IOS 5? ( I have iPad 2nd gen). Don't know if you need to know anything more, but I would really appreciate if you could try to help me!

Maybe you are looking for

  • New Mac Pro vs firewire iSight

    I have a mid 2010 Mac pro dual quad, I just got my hands on a new never used firewire iSight. Problem 1 the new mac's have changed the firewire configuration, luckily I had an adapter I bought when I purchased my 2010 macbook pro. problem 2 the camer

  • Need Help to query Lync Database for User Information

    Need Help to Query the lync database to retrieve below user information. 1. SIP Address of the registered user         2. Phone Number configured to the particular account.         3. IP Address        4. Last Logged in time. I am trying to pull the

  • How to control the content of a new tab

    When I open a new tab it starts on a page that I do not want. So how do I change the initial web location of a new tab?

  • Version Control Questions

    Hi everyone, Can somebody please tell me how to create a copy of a project that can be opened, edited, etc. without affecting the project we have in Visual SourceSafe? We are trying to create printed documentation from our CHM files, and rather than

  • Re-installing iTunes to install DVD/CD burning software

    When I load iTunes, a message come up saying that there is no component to allow DVD/CD burning....could be cause by installing other DVD/CD burning software and to re-stall iTunes. I have re-installed twice and re-booted and still get the same error