Maximum number of users for TIme Cap

Does anyone know the maximum number of uses that can back up data on the same TC?

Welcome to the discussions!
+Does anyone know the maximum number of uses that can back up data on the same TC?+
Apple does not seem to publish any kind of documentation on this. The TC will handle up to 50 wireless connections.
But, if you assume that a typical incremental backup takes 3-4 minutes on average, the maximum practical number of computers backing up would probably be limited to 10-12. But, if every computer is backing up a lot of data on each backup, then that number will probably drop to 6-8.
This assumes that each computer has already made a one time separate master backup to the TC.
Message was edited by: Bob Timmons

Similar Messages

  • Maximum number of users for server SEQ module exceeded

    Hi ,
    I am getting the below error for optimizer SEQ in SCM 7.0 EHP3 system.
    "Maximum number of user for server SEQ module exceeded"
    But the RFC connection works fine and all are green in /sapapo/opt03.
    Should I increase the user in /sapapo/opt03? for SEQ..and on which column...Maximum slot?
    Thanks in advance

    Can you check this thread:
    maximum number of users for server module SNP exceeded
    Divyanshu

  • Is the maximum number of users for Airport Extreme per device, i.e. 2 AEBS = 100 users, one AEBS extending the other on the same wireless network?

    Is the maximum number of users for Airport Extreme per device, i.e. 2 AEBS = 100 users, one AEBS extending the other on the same wireless network?

    50 users per device, assuming that the "main" router is setup to deliver an adequate number of network IP addresses for all devices.
    2 AEBS = 100 users, but that is really more of a theoretical max. 
    If you really need 100 connections, it would be much better to use 3 AEBS to spread things out.

  • Maximum number of users for server module SNP exceeded

    Dear,
    Anyone knows the details about this error? This error occurs while starting the Optimizer run interactively.
    Cheers.

       1. Open Transaction Sm59
            Open TCP/IP connections
            and search for RFC connection for SNP optimizer.
            Copy value of RFC connection name ( Eg.OPTSERVER_SNP01).
        2.  Open Transaction SPRO
             Advanced Planning And Optimization ->Basic Settings ->Optimization ->
             Basic Functions ->Maintain Master Data for Optimization Server
             Put Communication Connection value RFC connection name
             ( Eg.OPTSERVER_SNP01).

  • How to find maximum number of users we can assign for Hyperion Planning.

    HI,
    How to find maximum number of users we can assign for Hyperion Planning.i.e., how to find license limit in hyperion planning 11.1.2.1.
    In Essbase propreties, the system is showing maximum planning users could be 65535.
    what would be the number for concurrent scenario?
    Thanks
    Giri
    Edited by: Giriprasad on Jun 18, 2012 2:18 AM

    The number of users would be based on your license agreement with Oracle, the system is not aware of your license agreement so it is up to you to stick to it.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Reset SAP GUI passwords for number of users one time

    Dear,
    i need your help in how to Reset SAP GUI passwords for number of users one time, as we have non-SAP users, only ESS users that they are currently using Portal ESS, but we need to reset thier GUI passwords so that they will not be accessing the GUI.
    we need to do it one shot, one time for more than 600 users.
    is there any way?
    thank you

    You can also create an ABAP program which can be used to do a mass user password change.
    Here are the functions that will do what you need
    SUSR_GENERATE_PASSWORD - Generates a Password. Use this function only if you want to do random passwords. Otherwise you can upload your own password.
    BAPI_USER_CHANGE - You can use this BAPI to change just the password of a user
    Here is an example of some abap code. There may be some syntax errors and possible other issues. I just typed this out and didnt check it. You upload a comma delimited file which is the username,password. If the password field is blank the program will generate its own. Hope this helps
    constants: con_comma TYPE c VALUE ','.
    data: it_tab TYPE filetable,
    gd_subrc TYPE i,
    v_filename_string TYPE string,
    p_npass like XU400-NEWCODE.
    DATA: BEGIN OF itab OCCURS 0,
    dLine(40) type c,
    END OF itab.
    DATA: begin of it_Users occurs 0,
    UserID like BAPIBNAME-BAPIBNAME,
    Password Like XUBCODE,
    end of it_Users.
    parameters: p_file like rlgrap-filename default 'c:\users.txt' LOWER CASE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    *& FILE_OPEN_DIALOG METHOD *
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
    EXPORTING
    window_title = 'Select File'
    default_filename = '*.txt'
    multiselection = ' '
    CHANGING
    file_table = it_tab
    rc = gd_subrc.
    LOOP AT it_tab INTO p_file.
    ENDLOOP.
    v_filename_string = p_file.
    START-OF-SELECTION.
    *& GUI_UPLOAD function *
    Upload file to internal table
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    FILENAME = v_filename_string
    FILETYPE = 'ASC'
    HAS_FIELD_SEPARATOR = 'X'
    TABLES
    DATA_TAB = ITAB
    EXCEPTIONS
    FILE_OPEN_ERROR = 1
    FILE_READ_ERROR = 2
    NO_BATCH = 3
    GUI_REFUSE_FILETRANSFER = 4
    INVALID_TYPE = 5
    NO_AUTHORITY = 6
    UNKNOWN_ERROR = 7
    BAD_DATA_FORMAT = 8
    HEADER_NOT_ALLOWED = 9
    SEPARATOR_NOT_ALLOWED = 10
    HEADER_TOO_LONG = 11
    UNKNOWN_DP_ERROR = 12
    ACCESS_DENIED = 13
    DP_OUT_OF_MEMORY = 14
    DISK_FULL = 15
    DP_TIMEOUT = 16
    OTHERS = 17.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Loop through internal table and split the comma delimited file
    LOOP AT ITAB.
    SPLIT ITAB-dLINE AT con_comma INTO it_Users-UserID
    it_Users-Password.
    APPEND it_Users.
    ENDLOOP.
    LOOP AT it_Users.
    if it_users-Password is initial.
    CALL FUNCTION 'SUSR_GENERATE_PASSWORD'
    IMPORTING
    PASSWORD = p_npass
    else.
    p_npass = it_users-Password.
    endif.
    CALL FUNCTION 'BAPI_USER_CHANGE'
    EXPORTING
    USERNAME = it_users-userid
    PASSWORD = p_npass
    PASSWORDX = 'X'
    TABLES
    RETURN = it_ret2.
    Loop at it_ret2.
    if it_ret2-number = 039.
    write: / 'password changed'.
    else.
    write: / it_ret2-message.
    endif.
    endloop.
    Write: / ''.
    refresh it_ret2.
    ENDLOOP.

  • Aironet Maximum Number of Users

    What is the maximum number of users that one Aironet would allow without the disruption of service?

    Lightweight APs have a default limit of 12 clients per AP, but this can be changed. Cisco recommends no more than 25 clients per AP, but it can easily handle more. How many more simply depends on your conditions.
    Keep a few things in mind:
    1. Your actual data rate is generally a little less than half your advertised rate (22Mbps on a 54Mbps link, for example)
    2. You're sharing the ACTUAL data rate with every other client on the AP. So if 20 users are sharing a 54Mbps connection, they'll all get barely over 1Mbps
    3. Any slow clients, 802.11b or otherwise, take more time to communicate with the AP and thus slow all other clients down
    4. RF space is a shared medium, and congestion avoidance mechanisms in 802.11 start creating a LOT of overhead as you increase client count significantly. This starts dropping your actual data rate, so you might start getting only ~15Mbps on a 54Mbps connection.
    All that said, I doubt you'll start seeing disconnects until you hit client numbers in the 30s. But again, take all the above into consideration as you evaluate your environment, your application delay tolerance, and your bandwidth requirements per user.
    Jeff

  • Maximum number os users in a group

    What is the maximum number of users that can be in a group on OS X server 10.4? IN 10.3 I think it was 10,000
    I ask, because I am integrating with an AD server, where the group we are trying to manage preferences on is 28,000>

    As far as i know there is no problem for the os.

  • Maximum number of User defined dimensions in Planning v11.1.2

    Hi guys,
    I am new to Hyperion Planning version 11.1.2, just wanted to clarify what is the maximum number of User defined dimensions that can be added in a planning application.
    I've also learnt that the number of Alias tables is more than the previous versions. What is the maximum number of Alias tables in Planning version 11.1.2 ?
    Regards.

    Maximum number of alias tables is 10 including the default alias table
    As for custom dimensions then I wouldn't expect you to hit a maximum unless you want to design a planning application destined to fail.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Maximum Number of Characters for Password??

    Hello, and thank you for reading my post.   I recently modified my Apple ID Password to a very strong password containing 32 characters.  When I try to log into this discussions group with that particular Apple ID, I can't because the website won't accept the password?  Wouldn't all of Apple's sites accept the same password?
    Is there a maximum number of characters for a password in this discussion group?
    Thanks

    What makes you believe that 32 characters is remotely necessary?  As Ralph indicates, a shorter password is equally secure, in realistic terms.  Keep in mind that even if some hacker set up a script to repeatedly try random passwords on your account, they're never going to get in because there are limits on the number of times one can enter an incorrect password before being blocked on any decent system.  You can have a much shorter password, and as long as a human can't guess it from what is publicly known about you, it's secure.

  • Maximum Number of Version for a DIR

    Hi,
    Can anyone tell me the maximum number of versions for a DIR?  The field is 2-char alpha/numberic.  I assume after it reaches 99 it will start using alpha characters.  I am looking for the pattern it will use after 99 and also the total number of versions allowed.
    Thank you
    Bob Schaefer

    Hi Bob,
    This depends on the version increment defined in your document type. Version increment "1" is 00 to 99. It will not use alpha after 99... I presume it may give an error or start again from 00 if ver 00 does not exist anymore, but I haven't really tested this out. There several other version increments you can choose from and the number of versions allowed will depend on that. For example version increment "3" is defined as A0 to Z9, therefore this will give you 26x10 = 260 versions.
    Extract from the SAP help pasted below will give you a pretty good idea of the possibilities.
    Value Description
    0 No version numbers
    1 Numeric version numbers   00 .. 99
    2 Numeric version numbers   01 .. 99
    3 Alphanumeric numbers   A0 .. Z9
    4 Alphanumeric numbers   A1 .. Z9
    5 Alphanumeric numbers   AA .. ZZ
    6 AA .. AZ,A0 .. A9;BA .. Z9
    7 as 6, but without 0
    8 _A  .. Z ; AA .. Z9
    9 as 5, but 00 allowed
    A as 6, but 00 allowed
    for USER-EXIT
    Hope this helps.
    Cheers,
    Lashan

  • Maximum number of users

    Hi everyone,
    It's possible to establish the maximum number of users that are using an application?, for example if we put that the max number is 1000, when the user 1001 treats to use the application, we want to send him a message, that he needs to wait
    Regards

    There is no inbuildt mechanism available. But you should write an external service (servlet or EJB) which maintains the count of users . And in your WebDynpro application use the life cycle methods to control the access.
    Like in wdInit() you can check the current count of users and if its more than 1000 then you can display message otherwise show the view and increment count. In the same way in wdExit() call the service to decrease the count.
    Regards
    Abhilash

  • I have bought used I phone 4s. I cloud fails to accept my apple ID, which is accepted by I tunes. In fact it says that I have used maximum number of user accounts. Kindly help me in this matter.

    I have bought used I phone 4s. I cloud fails to accept my apple ID, which is accepted by apple store and I tuned.
    It says that I have already used maximum number of user accounts. Kindly help to resolve this problem.

    Hello Renvin29,
    It sounds like you need to disable your iPhone remotely. I'm sorry to hear about your phone! The only way to do this with is Apple services is if you had Find my iPhone enabled. You have 2 options:
    You can use this article to put the phone into Lost Mode and preserve your data on it, but prevent access to it:
    iCloud: Use Lost Mode
    http://support.apple.com/kb/PH2700
    Or you can just erase it remotely outright:
    iCloud: Erase your device
    http://support.apple.com/kb/PH2701
    You should also take a look at this article for additional info on what to do about this situation:
    If your iPhone, iPad, or iPod touch is lost or stolen
    http://support.apple.com/kb/HT5668
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Maximum number of users hit....

    hai...
    how can we verify that the maximum number of users has not been hit in the databse?
    please let me know..
    thank u...
    v.s.srinivas potnuru

    hai..
    thanks for u reply..
    we have one oltp application.we are suffering with some performance problem.to solve that problem i have heard that we have to verify that the maximum number of users has not beet hit.(may be it might be one root cause).
    if we have 1000 users in the databse, can we control only 500 or 600 users to do their transactions concurrently?
    thank u...

  • Maximum number of items for an FI document ('999') has been exceded

    Hi,
    I have try to move some materials from one storage location to another using  MB1B transaction. And i receive following error:
    Maximum number of items for an FI document ('999') has been exceded.
    Please someone help me.
    Thank you.

    Dear Dan
    As you would be aware one FI document can have line items upto a maximum of 999 and it seems, you are trying to input more than that and hence the error.
    Try to minimise the number of line items and retry.
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • Will HP eprint 110d work with an Asis Transforme​r 310

    Since this tablet doesnt use android, mac,Linux, or Windows, there is no way to check off my operating system. Thanks.

  • ITunes 11.04 is preventing Windows 7 from sleeping

    I just did a fresh installation on a reformatted hard drive of Windows 7 SP1 x64 Ultimate and iTunes 11.04. When iTunes is running, the computer will not go to sleep (aka standby). I've enabled many of the networking features of iTunes (Remote, Home

  • Interface mappings

    Hi, I need some help.I am using XI as a middleware between two SAP systems. So there is an outbound interface to the first system and an inbound interface to the second system and there is an interface mapping defined between these two systems(Which

  • Cannot cancel print job on network B9180

    I have a B9180 network connected printer with an IP number. A print job is registered and cannot be printed or cancelled from the computer that created the job. I have cancelled the job on the printer using the X button because it would not cancel fr

  • How to display configuration items as a dropdown list

    Hi, When delivering a repository manager, we need provide a configuration archive (cc.xml and co.xml). For an attribute cc.xml, can we display it as a dropdown list and let user choose the value? For example, in cc.xml: <attribute name="Protocol" typ