Beiträge von heuti

    Hallo Paul,


    grundsätzlich kannst du auch auf der AS400 ein "load pupdate" starten, oder kommt dann eine Fehlermeldung ??
    Auf der Trendmicro Seite findest du eine recht gute Knowledgebase. Ansonsten helfen die dir auch via Telefon.
    Kann bisher nur positives von Trendmicro sagen.


    Gruß
    Dirk
    ;)

    Hallo Marc,


    dieser Fehler kann auftreten, wenn du z.B. das Notesdata auf einem entfernten Server liegen hast und dieser für kurze Zeit nicht verfügbar war.
    Notes nimmt einen das übel.


    Ich hoffe der Tipp hilft dir weiter.
    Gruß
    Dirk

    Hallöchen,


    habe mal eine spektakuläre Antwort gefunden.
    Dies sollte dir weiterhelfen.


    Gruß
    Dirk


    :D
    This is due to a limitation the Router process has with group sizes. The total size of an expanded group is limited to 32KB (or 32768 bytes).


    Calculating the group length:


    The length of an expanded group incorporates the following variables:


    the length (in bytes) of the group name
    the length of all of the sub-group names
    for each group, the length of the domain name + 1 (add one to incorporate the use of "@" when the group is stored in memory)
    overhead in bytes, which equals 4 + 2*(total number of groups and subgroups)


    Example 1:


    Group name: TestGroup
    Domain name: TestDomain
    Group members: User1, User2, User3

    The total length of this group = length(TestGroup) + (length(TestDomain) + 1)+ 4 + 2*1
    = 9 + 10 + 1 + 4 + 2
    = 26 bytes


    Example 2:


    Group name: TestGroup2
    Domain name: TestDomain
    Group members: User1, User2, User3, TestGroup3, TestGroup4
    (TestGroup4 contains another group called TestGroup5)


    Total length = length(TestGroup2) + (length(TestDomain) + 1)
    + length(TestGroup3) + (length(TestDomain) + 1)
    + length(TestGroup4) + (length(TestDomain) + 1)
    + length(TestGroup5) + (length(TestDomain) + 1)
    + 4 + 2*4
    Total length = 10 + 11
    + 10 + 11
    + 10 + 11
    + 10 + 11
    + 4 + 8
    = 96 bytes



    Ways to avoid hitting the limitation:


    The best way to avoid hitting this limitation is to keep the length of each group name as short as possible.


    Also, 32K is actually fairly hard to hit unless there are several groups with extremely long names (over 20 characters, for instance). As an example, this scenario would hit the limit:


    Domain name: 10 characters long (which counts for 11 bytes added to each group name)
    Number of groups and subgroups: 1000
    Length of each group (in characters/bytes): 20


    Total group length: (20 + 11) * 1000
    + 4 + 2*1000
    = 33,004 bytes