Timing while needing more thn 2 clocks inboard

I am using BNC-2120 to do the timing things, first I generate a anolog pulse whose falling edge is going to trigger another pulse which is digital to be genrated, and then the third pulse will be generated at the second pulse' falling edge. I found there was some sub-second delay when I get the second pulse, it's very serious because all the actins should be finished at microsecond level. Is there any solution to do the timing not using the computers' clock since there are only two internal clock on the BNC-2120, but I need one more?

Hello;
The only way to have a accurate timing DAQ task is by using the internal Timebase of the device to clock the tasks. In case you use any Software timed operation, your accuracy will rely on the OS, being therefore system dependent.
For your specific application, the best way to go about that is to use the analog output pulse triggering one of the counters, and to have the output of that counter triggering the second counter.
Both counters should be configured as retriggerable pulse generation.
Hope this helps.
Filipe A.
Applications Engineer
National Instruments

Similar Messages

  • I bought a song on itunes a while ago and I couldn't back up my ipod because I needed more storage. Once my ipod was updated, ALL of my memory was deleted (since it wasn't backed up) and I couldn't get my song back without paying for it again. Is there a

    I bought a song on itunes a while ago and I couldn’t back up my ipod because I needed more storage. Once my ipod was updated, ALL of my memory was deleted (since it wasn’t backed up) and I couldn't get my song back without paying for it again. Is there a way to retrieve it without paying for the second time?

    Just follow these instructions:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Ere are the specs on the Mac I need more power on.  Mac Tower Processor  2 x 2.26 GHz Quad-Core Intel Xeon Memory  6 GB 1066 MHz DDR3 ECC Graphics  NVIDIA GeForce GT 120 512 MB Serial Number  H00354XF20G Software  OS X 10.8.5 (12F45)  Harddive 640 GB SATA

    ere are the specs on the Mac I need more power on.
    Mac Tower
    Processor  2 x 2.26 GHz Quad-Core Intel Xeon
    Memory  6 GB 1066 MHz DDR3 ECC
    Graphics  NVIDIA GeForce GT 120 512 MB
    Serial Number  H00354XF20G
    Software  OS X 10.8.5 (12F45)
    Harddive 640 GB
    SATA Disk
    (2) Harddrives 1 TB
    SATA Disk
    RAM 6 slots total  -- 6 are filled with 1GB
    (3) UAD Quad cards installed
    I use this computer stictly for audio recording. 
    Pro Tools 10.3.7
    Interface Apollo 16
    Pro Tools is curretnly not compatible with Maverick.   Also, I believe that Pro Tools 10 only allows 4GB ram to be utilized (not sure ) 
    I know Pro Tools 11 allows more, but not sure how much more.  Also not sure if the upgrade to Pro Tools 11 I will have to purchase all new plug ins or if my existing ones will continue to work in it.
    The platform changes from 32 bit to 64 with the upgrade to 11
    If it is as simple as adding more ram, what mode-part #l would you recomeend.  Can the processor be upgraded also ?
    The new tube like Macs are non compatible with UAD Cards.  Those cards a must my sessions

    You can use Activity Monitor to check if apps run as 32 or 64 bit - simply look at the "Kind" column (you may need to select it under View -> Columns) and see if the app in question is listed as "Intel" i.e. 32 bit or as "Intel (64 bit)".
    While in Activity Monitor you can also check if Pro Tools is close to the 3-4 GB limit of a 32 bit app - if you aren't you will probably not benefit from more RAM.
    Your MacPro (it appears to be a Early 2009 model) should have come with a small booklet showing how to install RAM and what kind of RAM that you need. Any RAM that fulfills the requirements should work but your safest choice is probably to buy from a retailer/online store that supports Macs as they will usually know what kind of RAM you need for your mac model.
    Upgrading the CPUs should be possible, but I haven't seen Apple document how to do this, so you will probably have to google around a bit to find instructions and CPU part numbers.
    Your choice of CPUs will also be limited by the motherboard and CPU socket so you may be limited to faster version of your current CPU chip and some slightly newer versions.
    Going from your current CPU to the fastest version included in the 2009 MacPros would be going from 2.26 GHz to 2.93 GHz. This would only give a modest 30% speed boost. Using newer and highly clocked CPUs might boost this somewhat more maybe to 50% ?

  • Using cDAQ timers to repeat a hardware-timed finite-sample pulse train clock

    Hi all,
    As part of a complex project, I must implement an acquisition hardware interface for a linear motion sensor using the Synchronous Serial Interface (SSI) output common in industrial motion control. (I have a fair bit of experience in digital electronics, but I'm new to hardware timer-synchronized digital I/O in LabVIEW.)
    To do this, I need to create a hardware-timed bursted pulse train TTL clock signal. Each burst consists of 25 high-low transitions with a full-cycle period of 2.67 microseconds (375kHz). The output must then be held high until the next burst, which occur at 1ms intervals.
    Using cDAQ timers and a NI 9401 (based on the example at http://www.ni.com/example/30256/en/), I've been able to create the pulse train burst as described (see attached VI image). Next I need to configure another timer to trigger this burst to repeat at 1ms intervals.
    Does anyone have any pointers about the best way to accomplish the hardware timing for repetition of the pulse train?
    Any suggestions of alternative strategies or observations as to the ways my noobish code is stupid or inefficient are welcome as well!
    Thanks!
    Solved!
    Go to Solution.
    Attachments:
    Hardware Timed Pulse Train Clock.jpg ‏102 KB

    Hey Ryan, 
    A picture of the behavior you are seeing would be helpful. The NI 9411 should only be reading 50 bits every 1 ms.  
    It may not be possible to read 25 bits (do you mean 50 bits? 25 high 25 low) and push it to a queue without encountering an overflow error. If you take a look at the above code the digital input will receive 50 sample clocks every 1 ms. This is equivalent to acquiring 50 points every 1 ms which is an acquisition speed of 50 samples/1 ms=50 kHz. The read loop must keep up with the 50 kHz rate otherwise the buffer will overflow. In the above example I’ve set the read to pull 5000 samples (x) with the assumption that the loop will take less than or equal to .1 seconds (y). This yields a software acquisition speed of 50 kHz (5000 samples/100 ms). If the loop speed is faster than 100ms then the 10 seconds timeout on the DAQmx read will allow for the read to block so the FIFO may be filled.
    The options available for question 2 are below. They may be used separately or in conjunction.
    Move the DAQmx Read for the NI 9411 to its own independent while loop, set the DAQmx Read to acquire 50 samples, do not graph the data, and pass the data to a Queue for processing in a consumer loop. This will increase the loop speed which may allow you to keep up with the 50 kHz acquisition speed. This may not work because the loop speed will need to be 1 ms or less.
    Increase the value of the Samples per Channel control that goes into the DAQmx Timing VI. This will increase the DAQmx Software Buffer size. This buys time until you receive an overflow error because the DAQmx Software Buffer is being filled faster than samples are removed.
    Read in 5000 sample chunks (producer loop), push this to the queue, and perform the analysis in 50 bit chunks (consumer loop). The additional queue created should allow for the acquisition loop to keep up.
    Regards,
    Izzy O.
    Product Support Engineer
    ni.com/support

  • How large of a hard drive can I install on dual G5, and do I need more RAM?

    I recently had a situation in which my dual-processor 2.0 G5 was completely refurbished by Apple repair-new logic board, both processors, video card, thermistor, all new. Finally it has been working well after a month of trips back and forth from the Apple store. I have two internal hard drives installed on my G5, both 300GB, one for OS applications, and one for audio. I am running out of space on my main hard drive, and so I recently purchased a Maxtor 1TB hard drive, now manufactured by Seagate, from Fry's. After having my G5 refurbished, I was having an issue with my Samsung 930B monitor going into sleep mode when I boot-up from a CD, but other than that G5 was working fine. I removed the main 300GB hard drive from slot #1 and put it into slot #2, from which I had removed my audio hard drive. I installed the Maxtor drive in slot #1 and reformatted it for Mac using my laptop with ATA/USB cables previously purchased for data transfer. This took about 14 hours as I used the "zeros" option. After that I hooked up the internal cables to both drives and tried to boot up from Leopard in order to install it on the Maxtor drive, but again my monitor went into to sleep mode. We went to the Apple store to try to see if there was an issue with the computer, but everything worked fine with their monitors and CD's, as well as my CD. So there is some kind of issue with my monitor, probably software as it works fine when booting up from the main hard drive, and also was fine when I did its self-test function. While at the Apple store, they installed Leopard from their hard drive which took about 30 minutes.
    My problem is this: When I arrived home, I turned on my G5, which had been set to boot from my new Maxtor drive and complete the Leopard setup process, which we had decided to do at home as it would have taken another 20 minutes in the Apple store. The G5 turned on, chimed, I got the Apple screen with the wheel, but then after that my monitor goes into sleep mode. I can hear Leopard's setup intro playing through the speakers, but the screen is in sleep mode. So I reboot holding down the option key so I can boot up from my old (300GB) main hard drive, now in slot #2. This works and the monitor screen does not go to sleep. However, as I am browsing on the web to check for issues concerning this monitor, the G5 freezes, and I get a screen with black bars with writing in them and various technical language across the screen. This happened several times after rebooting. Finally I shut the computer down. I am going to try removing the new hard drive and putting both old ones back in and see if the G5 stops crashing. I think the monitor issue is a separate issue, and I am more concerned with the crashing, as previous to the new hard drive installation the G5 was working fine, monitor fine, other than the issue when booting up from a CD. Do I need more memory? Is the 1TB hard drive too large for my dual-processor 2.0 G5 and overloading it? Would I be better off with a 500GB drive? Would appreciate advice from persons with experience in this area. Thank you.

    I have replaced my 5 year old G5 with a Mac Pro, as the G5 just had too many issues, even after replacing all major components (logic board, both processors, video card, etc.) Once I took out the 1 TB hard drive from my old G5, it stopped having the kernel panic issue. Nonetheless I had been through a lengthy repair process previous to this issue, so I didn't care to trust an older machine any longer, especially since being told by an Apple tech that the "new" parts were really just older parts stockpiled from a central location. Could be new, could be refurbished. Apple was kind enough to credit the money we had spent on the G5 repairs towards the purchase of my Mac Pro.

  • Table with fields containig more thn 300 characters

    Hello Friends,
    i want to create one ZTABLE and intht i want a field tht can store more thn 300 characters.
    i have used string data type for the same but while activating the table its giving me error saying :
    " Table contains more than 3 long string fields"
    Pls suggest...
    Sunny

    hi 
    sunny  ,
                You can create table with field more than 300 characters   but there should be one more field
    which has to be primary key .
    such as
    create table ztest
    in that create field MANDT  type clnt size 3  primary key
    name type String  .
    then change technical settings according to requirement .
    Delivery maintenance 
    delivery class and  Data Browser/Table View M
    according to requirement  .
    Before activating table save technical setting  and then activate .
    Regards
    deepak

  • Opinions - time for a new computer?  need more RAM, Time Machine back up full - get new computer?

    I am in a quandary.  My early 2008 iMac needs more Ram.  I could upgrade from 2gb to 4gb for around $60.  My 1T external hard drive for Time Machine is full and I do not relish the idea of it erasing old data if I continue to use it this way, but then I am shelling out more money for a new hard drive.  Can get new 3T hd for about $200.  Is it worth it to shore up my computer?  I have recently upgraded OS to ML and it is really starting to act sluggish.  I hate the idea of having to transfer everything over to a new Mac and therefore new OS.   I need a working computer every day for business for my husband, so it would be impossible to go without a computer while things are being transferred over - and how long would it take for me to do that.  Plus, will files and photos be transferred over exactly as I have organized them?  I have spent a lot of time organizing bookmark folders in Safari, mailboxes in Mail and albums and folders in iPhoto.  Don't want to start from scratch again.   Also don't like the idea that the new iMacs don't have a slot for dvds and cds, playing and burning.  I do a lot of this kind of thing.  So then I would need to buy a separate thing for doing this as well as the computer itself.  Have wondered how many things have changed from ML to Maverick.  Another big learning curve???
    Would really appreciate any thoughts and opinions.  I am a senior citizen and don't know how to sort through this.  One thing I think about is that I don't know how much longer I will be living and able to do computer work. I know everything is a risk, but would like some advice even if it is only an opinion.

    It's probably time for a new machine. You won't have to start from scratch. Migration Assistant will bring over all of your data and apps (some may need to be re-activated using product keys). Depending on how much you actually have, a few hours should be all it takes over Ethernet.
    Time Machine should continually erase the oldest backups when it needs space for new ones.
    You might want to do both. Upgrade the RAM in the old machine to the max it will take, and buy a new machine as well. If your husband really needs a machine available all the time for business, having a 'spare' is a good thing.
    Check out what's available in the refurb store. They are virtually indistinguishable from new retail stock and come with a full warranty. You can save hundreds.
    http://store.apple.com/us/browse/home/specialdeals/mac

  • Need more basic information

    I have the opportunity to teach a bunch of students at my school Flash.  I am NOT a Flash programmer.  I am/was a C/Unix and VB programmer.  So, I have 4-5 months to LEARN everything I need to learn (of course, I will continue to learn while I am teaching but I will have more time now) by then.  So, I started with the trial products.
    I then looked at http://www.adobe.com/devnet/flex/testdrive/articles/1_build_a_flex_app.html
    and it seems they are "assuming" a certain setup and knowledge.
    1) They talked about a MYSQL database.  So, does that mean I have to install MYSQL on my computer?
    2) Then they talked about a webserver.  Does that mean I need that installed too?
    3) They talked about
    I just think they should put "prerequisites" at the beginning of it.
    I really need more information about EACH project that is related to FLASH.  What basic information do I need, what do I really need to learn this stuff quickly and easily?
    NOTE: I posted this in Flex, but I really need information about EACH product related to FLASH, since that is what I will be teaching.  I will be teaching both the programming/designing part of Flash.
    Thank you all for any help you can give me!!!

    See past threads about how to learn about Flex.
    Try asking on Flash community forums.  I think there is a FlashCoders yahoo
    group.

  • Need more speed

    Hello!
    My setup:
    - I'm using Aperture 2.1.4 on an iMac 3.06 GHz with 4GB 800 MHz DDR2 SDRAM, 1 TB harddrive and Mac OS X 10.5.8.
    - Right now I have 8 Projects with 3.250 photos. The Aperture-Library - 3.62GB - is on the internal harddrive.
    - The originals are all RAW-files (from my Canon EOS 450D) and are stored on an external FireWire 800 iomega 2 TB drive. The folder containing the 8 sub-folders (coresponding to the projects) is 67.4GB.
    - I have about 820GB free on the internal harddrive and 1.82TB free on the external harddrive.
    My problem: I need more speed while editing! Highlights recovering, levels adjusting, changing the saturation or contrast - only to name a few - are realy slow!
    I've renounced to generate any previews, but I'm not very sure I see any diference in speed. I even close ALL my other apps while editing in Aperture!
    What can I do to accelerate working with Aperture?
    Do you think holding only the current photos in the Aperture-Library (managed while editing and referenced after this) will bring an increase in speed?
    Thank you for any advice!
    Regards,
    Vlad

    It's hard to visualize without some sample data and the table definitions, but there's a chance this will work.  I'm assuming this isn't dynamic SQL, but multiple reports, each report with a version of this SQL?
    USE MyDB
    SELECT * FROM MyTable WHERE 1 = 1 AND Factor = '1' AND varVE = 'XYZ'
    AND varS + varL + CONVERT(VARCHAR(100), aDate) IN
    (SELECT varS + varL + CONVERT(VARCHAR(100), aDate, 121) AS SLA FROM MyTable WHERE varD = 'val1' AND varE = 'val2' AND varC > 'val3'
    UNION ALL SELECT varS + varL + CONVERT(VARCHAR(100), aDate, 121) AS SLA FROM MyTable WHERE varD = 'val4' AND varE = 'val5' AND varC < 'val6'
    UNION ALL SELECT varS + varL + CONVERT(VARCHAR(100), aDate, 121) AS SLA FROM MyTable WHERE varD = 'val7' AND varE = 'val8' AND varC = 'val9'
    UNION ALL SELECT varS + varL + CONVERT(VARCHAR(100), aDate, 121) AS SLA FROM MyTable WHERE varD = 'val10' AND varE = 'val11' AND varC LIKE '%val12%')
    This should be somewhat faster, unless it's the last "LIKE '%VAL12%'" that's really the root cause of all the performance problems. 
    Provide some sample data and a little additional info, perhaps we can help more?
    EDIT: Also, although I use it myself during the authoring/development phase of a query from time to time (where I have to make lots of changes to the WHERE clause on the fly), the "Where 1 = 1" should go away for real life production use.  (Even
    though interestingly enough, the optimizer rarely seems to complain too much about it from a performance perspective, it's the SQL equivalent of forgetting to take the price tag off of a gift.. ;-)

  • SMS Privacy - need more?

    First of all, Love the iPhone! When sending sms txt messages it would be nice to have the following:
    1)Need a way to control the number of sms messages viewed in message for any contact history. Can this me done already, if so how?
    2) ABSOLUTELY need a way to prevent messages from popping up while user is NOT in sms interface. This is a big problem if there is sensitive data that flashes up when other eyes may be on phone. Also be able to control font size, colors, etc
    3) Encrypted SMS : any takers?
    thanks,
    Moku

    Pancho25 wrote:
    Need more range re. WRT150N wireless home router. Am using this with a WPC54GS ver2 PCMCIA Linksys notebook adapter. I am trying to reach my garage, and I only get 6 more feet of range with this N router, before loss of signal, over my old WRT54G Ver.5 wireless router. I need about another 30 feet with a good signal. Solutions ? PS. Don't need advice ie. "relocate router".
    make sure no interference in between , such as Cordless , Oven etc.
    If u First , can access the routers set up web user interface , then try scrolling the channels . means changing and trying ur network again.
    secondly , Decrease the beacon interval to 75 , Fragmentation and RTS threshold - decrease them by 42 points.
    Note: youll find these settings , under advance wireless settings Tab. 
    Power cycle.
    observe the connection.
    if stilll no luck ! then
    Go for WAP4400N , its A wireless access point for N series Router.
    pe@c3
    ~~~Nobudy's Perfect , i try To Be So ! Each n every moment of maH LYF , AND I THINK dat wats make Me "Different" From others....~~~

  • Firefox is the only browser that need more than 700 ms accesstime, when others need only 10! Why is that???

    I have tested Google Chrome, Firefox and Internet Explorer. Firefox is using between 500-1100 ms accesstime, using Bredbandskollen.se, while the other two only uses around 10 ms!

    First of all, thank you for your response.
    Below you can find the answers to your questions:
    1) YES, I am using version 4, build 0024.00. Forgot to mention that I use Windows 7 64-bit and Firefox 11 (I don't use Chrome or IE)
    2) I cannot confirm that, because the problem doesn't appear every time. For example, today EVERYTHING works OK! I haven't change anything or done something different, but since I boot my T410s, every site log in with ONLY one swipe (today even Yahoo for the first time). As I said, SOMETIMES PWM asks for one swipe, other for 2 and rarely for 3 swipes. But I think that when the problem appears, PWM need more than one fingerprint swipe every time I go to the website.
    3) The setting for "before logging me into a Web site or application..." is "Every time". As I said, I need this setting to be "Every time", as my notebook sometimes is being used by other persons.
    It is really a stange problem and when it appears it is very annoying. Have you any other ideas about what it's going on?

  • I need more disk space how do I do this?

    need more disk space how do I do this?

    First, empty the Trash if you haven't already done so. Then reboot. That will temporarily free up some space.
    Use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Proceed further only if the problem hasn't been solved.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    After installing ODS in the Applications folder, drag or copy — do not type — the following line into the Terminal window, then press return:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up.
    I don't recommend that you make a habit of this. Don't delete anything while running ODS as root. When you're done with it, quit it and also quit Terminal.

  • Help!!! I need more RAM.

    Hello fellow Mac enthusiasts. I'm running OSX 10.3.9 with a 1.25 Ghz PowerPC G4. I recently tried to open Final Cut Pro (which has never been a problem before) and I get a window that says "Configuration Error: This software requires certain hardware or software which is missing: 384 MB of RAM." I searched my computer but wasn't able to find RAM information or control anywhere. So I'm wondering how I can increase my RAM? Can I simply free up space on my harddrive (there's about 9GB available now), somehow adjust my amount of RAM, or do I have to buy more? Any help is greatly appreciated! thank you!

    BenMears,
    Welcome to the Apple Discussions!
    Computer RAM memory is separate from the hard drive space. You can check how much RAM is in your eMac by selecting "About This Mac" from under the Apple menu; click the More Info button to launch System Profiler and check Memory in the Hardware section to see how that RAM is split between the two DIMM slots in the Mac.
    If you've run FCP without problem before, odds are that some concurrently running process had pinned enough RAM that FCP couldn't find it's minimum contiguous free space. Quitting other programs and if necessary restarting the computer will fix that issue. (I use MenuMeters to track RAM and CPU usage; while menu bar haxies are in general not recommended, I've found that program to be well behaved from early versions of 10.2 through the current 10.4.8)
    If you need more physical RAM, you can use the RAM configuration tool on the Crucial website, and install using the instructions at eMac - Do-It-Yourself.

  • Need More Info on Server 2012 R2 Essentials

    I'm currently running Server 2008 R2 Foundation for my wife's (1 person) online business, and have been looking at 2012 R2 Foundation vs Essentials.  The latter sounds like a better fit, since in my absence, my wife has limited IT knowledge/experience, but
    I need more information:
    1) Can Essentials be run in a WORKGROUP instead of a domain?  I currently have my server that way, and it serves our needs very well.
    2) I read in some of the forums that while essentials allows 25 users, only two can be logged in concurrently.  Is that true, or am I missing something?
    3) Server 2012 R2 Foundation DOES NOT require CALs for local LAN users, is this also true with 2012 R2 Essentials?  Also, how much are the CALS for RDP users?
    Capt. Dinosaur

    Hi again, Grey, and thank you for your response.  I do appreciate your detail, and I'll answer them each in turn.
    "1) http://technet.microsoft.com/en-us/library/dn281793.aspxMust be the domain controller at the root of the forest and
    domain, and must hold all the FSMO roles."
    Well I guess if it must it must, although I don't understand why the (first) response above states emphatically that a workgroup can be used.  I prefer a workgroup because I understand it much better than a domain setup, and I don't understand Active
    Directory etc.  When I bought my server in 2011 I hired someone to set up the os for me.  I also purchased Mark Minasi's book on 2008 R2, but so much of it was over my head.  Fifty five years in the computer business, and today I feel as though
    I've never seen one before (hence the name Capt. Dinosaur).  I am, however, signed up for a course in Managing Windows Server 2012 which starts in January.  I hope that helps get through my aging grey matter.  All these initials and acronyms
    are total confusion to me, along with my case of chronic CRS (Can't Remember Squat).
    "2) If you say you have 3 different users logged into Foundation with RDP I
    am not going to argue.  I know the license only allows for 2
    administrative connections. http://technet.microsoft.com/en-us/library/cc770759.aspx 
    The default connection (RDP-Tcp) only allows a maximum of two simultaneous
    remote connections."
    I currently have two licenses for 2008 R2 Foundation, and Ithe users who log in to those remotely are
    NOT administrator accounts.   I don't know if that makes a difference, but I've had both users logged in from Florida and I was logged in (as an administrator) from a local workstation.  I had to test that early on to make sure
    that my two users could log in concurrently, and that I could be logged in to manage the system.
    "As a rule we do not suggest you use your server as a workstation. ..."
    Maybe I misled you with something I said, but I/we do not use the server as a workstation.  Sometimes, though infrequently, I have to log in to the server directly (as Administrator) to do or fix something, but do not stay on it for
    normal work.  When we're home my (Dell Precision Mobile) Workstation is connected to my LAN.  I also do software development on that workstation.  I have a development environment on an external eSATA drive attached to my workstation,
    and both a beta and a live environment on the server; I use my workstation to operate all three.
    "... And I really have no clue what would happen if you
    restored your dell box to something else.  It may fail activation. 
    Guess you need to try that sometime. ..."
    I have tried it, albeit to another - but completely different Dell box, which is normally the only brand I use;  that's a holdover from my mainframe/minicomputer days when having a mixed shop was seriously avoided - with a clean bare HDD, and it
    worked.  When the restoration was executed, True Image asked only that you provide the drivers for the new computer, and they do the rest.
    " ... The advantage to the Essentials client backup is it will backup a whole lot of PC's to the server and use data dedupe to keep the backup database small.  So it would backup your wife's PC at
    work and the 3 you have on the road."
    I should explain that my wife's office is in our basement at home, in a separate room from my computer room.  My wife has a second business making gourmet wine infused jams, and we built a FDA certified canning kitchen
    in the basement, and her workstation is there so that she can work at both businesses.  Her workstation, my server and my workstation are backed up weekly to hard drives in a docking station, and stored in a fire resistant safe.  The
    computers we have on the road are my mobile workstation and her laptop.  When my daughter comes along, she also brings her laptop.  Since no company information is stored on any of the workstations, only the server data are mission critical. 
    "But in any case if what
    you have is doing what you want.  You don't seem to want what essentials
    offers, Active Directory, Remote Access, or Client backup, so why change?"<o:p></o:p>
    I guess I'm something like the man who bought a tuxedo and so now he has to start looking for formal dances to attend.  I should explain that we live in a very rural area - our town has a population of 1,000, 60% of the country is National
    Forest, and my home is literally in in it, bordered by it on two sides - and have only a very small technical college here.  I need to learn all about the server OS and how to administer it so that I don't
    have to hire someone when something needs to be done, and 2012 R2 is the only course available within 100 miles - up until this year they were only offering 2003, and even that was at a different campus 60 miles away (and over a 2,000' mountain). 
    Since the course I'll be taking is for '12,  I'm simply looking to upgrade so that what I have is what the course covers.  All my other computers are running Windows 7 (Pro and/or Ultimate) 
    "More on #1 Active Directory gives you group policy and more  control over file permissions than workgroup.  Say you had a folder shared and it had your bank.xls  You could give your wife permission to see it but not your daughter. 
    Group Policy is probably not a big deal for one client PC.  The advantage is you can make one setting and it can be applied to hundreds of PC's"
    Actually I have remote access now in '08 R2 Foundation, and I'm not sure what Active Directory will buy me, but that could, of course, change when I get into the course.  Not having Group Policies has been a small problem,
    on one or two rare occasions, so that could be a game changer for me, but with what I have now, I've been able to set up my political campaign system such that
    no one from one campaign can see or access any data for any other campaign.  Also I was able to set up the user accounts so that a remote user logging in
    can not see nor execute anything except the campaign system.  Any attempt to do otherwise automatically logs them out.
    In summation, you may just have convinced me that using a domain instead of a workgroup, with all it advantages might just be the way for me to go, since hopefully I'll learn all about that when I take that course.  The limitation of only two concurrent
    RDS users, however, is still worrying me, and I'm not sure that I'm accurately communicating.  If the
    two concurrent RDS user limitation ONLY refers to
    Administrator accounts then there's no problem, because any user accounts other than those for my wife and myself,
    would not be Administrator accounts.  I can't remember whether 2008 R2 foundation supports
    "Power User" accounts, but if so, that would be the highest level any other users would have, and possibly not even that high.
    Capt. Dinosaur

  • HT201302 I need more space on my iPhone to update to iOS 7.0.6. I was able to import and then delete my Camera Roll but not my Photo Library. How do I do that?

    I need more space on my iPhone to update to iOS 7.0.6. I was able to import and then delete my Camera Roll but not my Photo Library. How do I do that?

    To delete your photo library you need to connect to iTunes, then remove the selection for the images, then sync the device.
    While you are connected to iTunes do the update through iTunes. It takes much less memory as the update is loaded onto your computer, unpacked, then sent to the device.

Maybe you are looking for

  • Reply works, but address book entry doesn't

    I have an odd problem that's making me a litttle batty. I have an friend I e-mail regularly and--since recently switching to Mail from Eudora--I've been finding that some of my messages are not getting through. I'm not 100% certain, but it seems that

  • How to print "- ve" sign infront of a number during calculation

    Hi all right now i am getting the values in the output like this 1.95 - but i have to get that as - 1.95 instead, how do we get that. my calculation is  *wa_menge * - 1*  in the code

  • Context.xml configuration for database connetion in struts

    here is the content of context.xml <Context antiJARLocking="true" path="/WebApplication5">     <!-- Specify a JDBC datasource -->     <Resource name="jdbc/aaa"               auth="Container"               type="javax.sql.DataSource"               use

  • Go URL in Siebel Analytics 7.7

    I need to know where should I write my go url script in Siebel Analytics. I will appreciate your prompt response. Thank you.

  • Looking for information about AS3 sound classes in "audio" wrong places?

    I'm looking for in depth information about ActionScript 3.0 sound classes. No matter where I search I continually encounter the same sort of kindergarten level descriptions, which never teach more than what we can readily glean from Adobe's documenta