Maximum number of live tiles per size?

Is there a maximum of live tiles per tile size or overall?

You'll have to be clearer about exactly what you're trying to do. Are you trying to set up a notification queue so a single tile will flip through several variations? Or are you trying to pin multiple secondary tiles?
Can you share a minimal sample demonstrating your code, repro steps, and an explanation of how the actual behavour differs from the expected behaviour?
Either way, a single tile update should include all of the sizes in its package. You would have separate updates for different tiles (whether those be different tile updates queued onto the same tile or onto separately pinned tiles).
See
Creating tiles and badges for overviews and quickstarts.
There are currently four tile sizes for Windows and three for Windows Phone (see
Tile and toast visual assets )

Similar Messages

  • ORA-20001: Maximum number of email messages per workspace exceeded

    Greetings. We are running APEX 4.1.1. I have an application where we have to send out email messages to a list of emails. Currently there are 2469 email addresses. Originally we put the email addresses in the BCC but we received an error that we had exceeded the size limit of the BCC. So we modified our procedure to send one email at a time, in a loop.
    Now we are receiving the following error message:
    "ORA-20001: You have exceeded the maximum number of email messages per workspace"
    Has anyone else run into this issue? What is maximum number or email messages per workspace? Is it a limit per day, per session?
    We have not added emails to this table since last year, so the maximum number of email messages allowed may have changed recently?
    I did find this Forum post that addressed the issue but no one responded:
    How many mails i can send at a time per day using APEX mail system?
    Thanks,
    John

    Hi jfosteroracle,
    You are getting the error may be the following reason,
    Check the following,
    Login as ADMIN and Goto -->Manage Instance-->Instance Settings--> Mail-->Maximum Emails per workspace
    Actually this number denotes the Number of mails can be sent per 24 hour for the workspace,It may exceeded.
    It may be the reason.
    Thank you.     
    Regards,
    Gurujothi
    Edited by: Gurujothi on Jun 27, 2012 5:54 AM

  • Maximum number of email addresses per user

    I have a need to create a single mailbox with a large number of alias email addresses. I cannot find documentation on the maximum number of SMTP addresses that can be associated with a single user. Can someone point me in the right direction. Many thanks
    in advance!
    David

    Hi David,
    I've never heard of any restrictions about this, however, base on my search, I find a similar thread mentioned this question for your reference:
    https://social.technet.microsoft.com/Forums/office/en-US/2c167213-731d-439f-855e-2dcb1ffd1d31/maximum-number-of-email-addresses-per-user-exchange-2010-sp1?forum=exchangesvradminlegacy
    One member said:
    I could see one account with 1203 SMTP addresses. I cannot add more addresses, I get an error message when I try to add more. Maybe it is the limit. I´m still researching to be sure if it is a limit or not.The exchange is 2007.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Niko Cheng
    TechNet Community Support

  • Maximum number of partitions allowed per table.

    Interesting findings with interval partitioning:
    SQL> SELECT  *
      2    FROM  v$version
      3  /
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for 64-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    SQL> DROP TABLE tbl PURGE
      2  /
    Table dropped.
    SQL> CREATE TABLE tbl(
      2                   id number(6),
      3                   dt date
      4                  )
      5    PARTITION BY RANGE(dt)
      6      INTERVAL (INTERVAL '1' DAY)
      7      (
      8       PARTITION p1 VALUES LESS THAN (date '-857-12-31')
      9      )
    10  /
    Table created.
    SQL> select  partition_name,
      2          high_value
      3    from  user_tab_partitions
      4    where table_name = 'TBL'
      5  /
    PARTITION_NAME HIGH_VALUE
    P1             TO_DATE('-0857-12-31 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'N
                   LS_CALENDAR=GREGORIAN')
    SQL> INSERT
      2    INTO tbl
      3    VALUES(
      4           1,
      5           sysdate
      6          )
      7  /
    1 row created.
    SQL> DROP TABLE tbl PURGE
      2  /
    Table dropped.
    SQL> CREATE TABLE tbl(
      2                   id number(6),
      3                   dt date
      4                  )
      5    PARTITION BY RANGE(dt)
      6      INTERVAL (INTERVAL '1' DAY)
      7      (
      8       PARTITION p1 VALUES LESS THAN (date '-858-01-01')
      9      )
    10  /
    Table created.
    SQL> select  partition_name,
      2          high_value
      3    from  user_tab_partitions
      4    where table_name = 'TBL'
      5  /
    PARTITION_NAME HIGH_VALUE
    P1             TO_DATE('-0858-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'N
                   LS_CALENDAR=GREGORIAN')
    SQL> INSERT
      2    INTO tbl
      3    VALUES(
      4           1,
      5           sysdate
      6          )
      7  /
      INTO tbl
    ERROR at line 2:
    ORA-14300: partitioning key maps to a partition outside maximum permitted number of partitions
    SQL> From Logical Database Limits:
    Maximum number of partitions allowed per table or index: 1024K - 1
    I always thought limit implies to number of actual, not potential partitions, however it looks like I was wrong, although it makes not much sense to limit potential and not actual partitions:
    SQL> select  trunc(sysdate) - date '-858-01-01',
      2          1024 * 1024 - 1
      3    from  dual
      4  /
    TRUNC(SYSDATE)-DATE'-858-01-01' 1024*1024-1
                            1048661     1048575
    SQL> select  to_char(DATE'-858-01-01' + 1048575,'MM/DD/YYYY')
      2    from  dual
      3  /
    TO_CHAR(DA
    11/17/2012
    SQL> So tomorrow "magic" date should increase by one day. I'll test it. But more interesting if tomorrow I will be able to insert a row that forms a new partition into table TBL.
    SY.

    rp0428 wrote:
    The other argument is that Oracle has to be able to automatically create any partition required and it can only create 1024k - 1. So if you create yours with sysdate how could it create all of the others?Not sure I follow. What is the purpose of counting potential partitions? Partition part# iin sys.tabpart$ is not assigned based on potential partition position. If I issue a DDL to create new partition regardless of interval/non-interval partitioning Oracle has to check how many partitions table has so far or po and raise same/similar exception if partition I am asking to create is over the limit. And, in any case, knowing we can create all potential partitions at table create time doesn't mean I will not try to insert data outside the range. So there is absolutely no guarantee Oracle can automatically create any partition requested. Again, I don't understand why creating non-interval partitioned table with a single initial partition has partition count of 1:
    SQL> DROP TABLE tbl1 PURGE
      2  /
    Table dropped.
    SQL> CREATE TABLE tbl1(
      2                    id number(6),
      3                    dt date
      4                   )
      5    PARTITION BY RANGE(dt)
      6      (
      7       PARTITION p1 VALUES LESS THAN (date '-857-12-31')
      8      )
      9  /
    Table created.
    SQL> SELECT  partition_count
      2    FROM  user_part_tables
      3    WHERE table_name = 'TBL1'
      4  /
    PARTITION_COUNT
                  1
    SQL>And interval partitioned table with same single initial partition has partition count of 1048575:
    SQL> CREATE TABLE tbl1(
      2                    id number(6),
      3                    dt date
      4                   )
      5    PARTITION BY RANGE(dt)
      6      INTERVAL (INTERVAL '1' DAY)
      7      (
      8       PARTITION p1 VALUES LESS THAN (date '-857-12-31')
      9      )
    10  /
    Table created.
    SQL> SELECT  partition_count
      2    FROM  user_part_tables
      3    WHERE table_name = 'TBL1'
      4  /
    PARTITION_COUNT
            1048575
    SQL> Would be interesting to find out what forces Oracle to go into potential partition mode for interval partitioning.
    SY.

  • Stream analytics - Exceeded the maximum number of allowed receivers per partition in a consumer group which is 5

    Hi,
      I have configure stream analytics to read messages from eventhub and I am getting this error message:Correlation ID:
    e185534f-9e82-4efc-8050-5294796fb275
    Error:
    Exceeded the maximum number of allowed receivers per partition in a consumer group which is 5 TrackingId:4569eca8-cb70-4c50-96cd-5868bfbc3e37_B45,TimeStamp:1/7/2015 11:40:37 PM TrackingId:f408292e-0dab-40cc-8ae9-2730313c3241_B45, Reference:8fca3c6a-b0d1-41cf-a835-f7c74a2ea8c3,
    Timestamp:1/7/2015 11:40:37 PM
    Message:
    Exceeded the maximum number of allowed receivers per partition in a consumer group which is 5
    Message Time:
    2015-01-07 23:40:38Z
    Microsoft.Resources/EventNameV2:
    sharedNode92F920DE-290E-4B4C-861A-F85A4EC01D82.naveenevents_0_c76f7247_25b7_4ca6_a3b6_c7bf192ba44a#0.output
    Microsoft.Resources/Operation:
    Receive Events
    Microsoft.Resources/ResourceUri:
    /subscriptions/f122f431-ddc7-4e21-ae3a-f6a9e1273bcb/resourceGroups/StreamAnalytics-Default-Central-US/providers/Microsoft.StreamAnalytics/streamingjobs/Naveenstreamanalytics
    Type:
    EventHubInputAdapterEventHubFailure
    Any help on the same is appreciated.
    Thanks
    Naveen

    Hi Naveen,
    Thanks for reporting this issue. We are taking a look at this issue.
    Questions:
    Do you have multiple readers reading from this EventHub, or have you setup multiple Stream Analystics jobs reading from this event hub. You are hitting a limitation of how many readers are allowed per EH consumer group.
    What is the serialization format of your input (JSON/CSV)? Could you please verify the serialization format setup in the streaming job and if it matches your data?
    Thanks
    Zafar Abbas

  • Maximum number of computers used per month

    I need to report the maximum number of computers in use at one time per month, by collection

    Concur with Garth. You need to explicitly define what a "computer in use is" in technical terms.
    I doubt you'll be able to get this from ConfigMgr though as it doesn't track computer "usage" and neither does Windows really. You may be able to base it on login and logout times, but does that meet your definition? Even if it does, this wouldn't
    be a trivial report to write given raw data like these times.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Maximum number of spool requests per user

    Hello,
    I realise this question is a bit off-topic....
    We are experiencing problems with users that are creating 5000+ output requests in one time. As you can imagine, this is causing a lot of problems. Is there a possibility to limit the number of output requests per user?
    Pascal Ottens

    send them an email with a CC to their superiors   

  • Maximum Number of Pages and File Size for PDFs

    Assuming that your computer has ample CPU, memory,and storage, how many pages and what file size does Adobe recommend that you limit a single PDF to using Acrobat Pro XI in order to avoid any issues.

    I don't know whether there's a limit on number of pictures you can add to a book
    as long as they are contained in 100 pages, which is the maximum photo pages on a book.

  • Maximum number of sales order per condition

    Hi experts.
    How can i increase the number of sales order in..vk11--+*Additional data tab-*-+-limits for pricingmax number of orders-(the option which enables for cummulative function)
    the discount has to be restricted to say 100 number of sales order,but the system restricts it to 3 only.Is there any possibility to increase the same ,so that i can include the same in the field -ANZAUF.
    Thanks in advance,
    regards,
    Anshuman

    Hi,
    In standard you can set maximum 3 orders as limit.
    If you want to increase the limit to more than 3 orders then it is possible through User Exit.
    Talk to your ABAPer for an user exit in program SAPMV13A if I am not wrong. Table to be used is KONP and field is ANZAUF.
    Regards
    Pradyumna

  • Maximum number of NIO DatagramChannels per instance

    Hi all
    im coding an application which requires to create over 1000 DatagramChannels per instance of the application.
    My environment is Solaris 8 & JDK 1.4.2._05.
    Im able to create only 508 channels, if i try to create 509th channel it throws the following exception:
    java.net.SocketException: Too many open files
    at sun.nio.ch.Net.socket0(Native Method)
    at sun.nio.ch.Net.socket(Net.java:96)
    at sun.nio.ch.DatagramChannelImpl.<init>(DatagramChannelImpl.java:83)
    at sun.nio.ch.SelectorProviderImpl.openDatagramChannel(SelectorProviderImpl.java:23)
    at java.nio.channels.DatagramChannel.open(DatagramChannel.java:82)
    Please note my solaris environment states the ulimit to be "unlimited"
    Can anybody throw some light on this??
    Thanks,

    I can open 3968 on Windows XP with this:
    import java.net.*;
    import java.util.*;
    import java.nio.channels.*;
    public class DatagramChannelCount
         public static void     main(String[] args) throws Exception
              int     count = 0;
              List<DatagramChannel>     list = new LinkedList<DatagramChannel>();
              try
                   for (;;)
                        DatagramChannel     dsch = DatagramChannel.open();
                        dsch.socket().bind(new InetSocketAddress(0));
                        list.add(dsch);
                        count++;
                        if ((count % 10) == 0)
                             System.out.println(count+" channels open.");
              catch (Exception exc)
                   exc.printStackTrace();
              System.out.println("Created "+count+" datagram channels.");
    }

  • How to change the maximum number of process per user in BW ?

    Hi,
    Do you know how to change the maximum number of process allowed per user ?
    With RSRT we can customize the number of process per query but I don't know where we can customize the maximum number of process per user.
    In fact, my production environment reach always the max number of process available in SM50...
    Thanks a lot

    Hi,
    A user is not have the No. of processor but a work process can handle N No. of users. If a user hit any transaction v acn say from  a list of N worl proceesor which has been taken the work.
    Correct if I am wrong.
    Regards
    Syed.

  • Maximum Number in LGMST

    Dear All,
    what's the maximum number of wage types that can be represented in LGMST.
    Athyasannanaya Oru Rogi

    Dear Oru,
    Normally every consultant will use only 20 (Maximum) & also we will use for one employee i think so mostly 10 to 12 wage type's so we can give here maximum 20 as per info type 0008.
    LGMST Use:
    The planned payment specification in table T539A for adding basic pay
    records (infotype 0008) can be defined in conjunction with these control
    features: company code, personnel area, personnel subarea, employee
    group, employee subgroup and the subtype of the record.
    The return code matrix has the following structure: XX/YYYYYYYY, which
    has the following meaning:
    XX     maximum number of wage types per record
    YYYYYYYY     name of the wage type model from T539A.
    Ur's Mohan

  • Maximum number of open files..

    I'm looking for some help...probably a consultant to give us a call.
    I need to know the following:
    For 2.6 and 7, number of open files per process default and maximum setting.
    Procedure to change the default setting to the maximum
    Amont of RAM required to handle the max setting.
    Risks inherent in setting this parameter to the max.
    Any info on test environments where max setting has been utilized (e.g. datase TPC benchmarks, etc..)
    Feel free to call 408.861.1103 - happy to pay for the advice.

    Hi!
    The maximum number of file descriptors per process is set by two parameters:
    rlim_fd_cur (soft limit, defaults to 64)
    rlim_fd_max (hard limit, defaults to 1024)
    Processes may raise their soft limit up to the hard limit using setrlimit(2).
    Setting rlim_fd_cur high is not a problem as the file desciptors are allocated in chunks of 24 as required, and so not all in one go. They don't actually require that much memory either.
    As administrator you may set the limits by adding an entry to /etc/system, eg:
    set rlim_fd_max=600
    and rebooting.
    Note however on 32 bit solaris, the significant limitation is that the stdio library FILE structure limits your process to 256 fds. This is increased to 65536 for 64bit programs on solaris 7.
    Select(3c) can use up to 65536 fds (#define FD_SETSIZE 65536 in your code for 32bit solaris 7).
    Hope that helps.
    Ralph
    SUN DTS

  • ORA-00020: maximum number of processes (500) exceeded

    Problem Details:
    In our Database we are getting huge number of open connection from remote system.
    Let say, our application A and remote application name is B.
    Some common users of application A are USER0, USER1, USER2.
    Remote Application B uses USER0 to create views on application A's table through Database Link.
    Those views (nearly 100) are accessed in application B at several places from the Java code.
    Since those views are getting called almost all the times from the application B's code, DB link is in use almost all the time - holding many number of connections (check the first row of the query output).
    Many times the open connections remaining high and any other application, users trying to connect to application A,
    getting the ORA-00020 error.
    Note :
    1. Application B is very old application and does not use open DB link or close DB link.
    2. Application B tried with "alter session close Database link xxx", it decrease the number of open connection but its degrading the performance of application B at large scale.
    3. To cope up with this problem Application A recently incraesed the parameter process=500, but not sure if this limit can also be broken through Application B
    Questions/Doubts:
    1) What is best approach to handle this problem??
    'alter session close database link xxx' is the only option from application B's point ??
    What other approach can be taken??
    2) We are not sure the risk associated with increasing the process parameter value ??
    Appreciate your suggestion !!
    SQL>conn / as sysdba
    SQL> select substr(username,1,8),
           substr(machine,1,11),
           substr(module,1,40),
           substr(osuser,1,7),
           status,
           count(1)
      from v$session
      group by username, machine, module, osuser, status;
    USERNAME MACHINE     STATUS                        OSUSER     COUNT(1)
    USER0    remotedb9      INACTIVE                              oracle        450
    USER1    app_dev        INACTIVE                              beaadmin        1
    USER0    svr01test      ACTIVE                                bdgp_dev        1
    USER1    app_test       INACTIVE                              bbk09           2
    USER0    app_dev        ACTIVE                                dj0494          1
    USER1    app_test       INACTIVE                              pd0269          2
    USER2    app_test       INACTIVE                              oracle         12
    USER0    app_dev        ACTIVE                                oracle          2
    USER2    app_test       INACTIVE                              www             8
    USER2    dbr9db01       ACTIVE                                oracle          2
    USER2    svr01dv        INACTIVE                              bdgp_dev        1
    USER0    app_dev        INACTIVE                              scott           3
    USER2    app_test       INACTIVE                              clerk           2
    USER2    moose          ACTIVE                                john            2
    USER2    titan.homer    INACTIVE                              voipdu          1
    NEWUSER  floradbdv1     INACTIVE                              oracle          8
    SYS      app_test       ACTIVE                                oracle          1
    20 rows selected.
    SQL>conn USER0@csmip_st
    Enter password:
    ERROR:
    ORA-00020: maximum number of processes (500) exceeded
    Warning: You are no longer connected to ORACLE.

    semmsl in Linux tells what the max number of processes are. You have to make sure this is equal to the process parameter of all instances plus 10.
    It is usually in /etc/sysctl.conf
    kernel.sem = 250 32000 100 128
    SEMMSL
    The SEMMSL kernel parameter is used to control the maximum number of semaphores per semaphore set.
    Oracle recommends setting SEMMSL to the largest PROCESS instance parameter setting in the init.ora file for all databases hosted on the Linux system plus 10. Also, Oracle recommends setting the SEMMSL to a value of no less than 100.
    SEMMNI
    The SEMMNI kernel parameter is used to control the maximum number of semaphore sets on the entire Linux system.
    Oracle recommends setting the SEMMNI to a value of no less than 100.
    SEMMNS
    The SEMMNS kernel parameter is used to control the maximum number of semaphores (not semaphore sets) on the entire Linux system.
    Oracle recommends setting the SEMMNS to the sum of the PROCESSES instance parameter setting for each database on the system, adding the largest PROCESSES twice, and then finally adding 10 for each Oracle database on the system. To summarize:
    SEMMNS = sum of PROCESSES setting for each database on the system
    + ( 2 * [largest PROCESSES setting])
    + (10 * [number of databases on system]
    To determine the maximum number of semaphores that can be allocated on a Linux system, use the following calculation. It will be the lesser of:
    SEMMNS -or- (SEMMSL * SEMMNI)
    SEMOPM
    The SEMOPM kernel parameter is used to control the number of semaphore operations that can be performed per semop system call.
    The semop system call (function) provides the ability to do operations for multiple semaphores with one semop system call. A semaphore set can have the maximum number of SEMMSL semaphores per semaphore set and is therefore recommended to set SEMOPM equal to SEMMSL.
    Oracle recommends setting the SEMOPM to a value of no less than 100.
    App B could try using connection pooling or something to reduce the number of connections to the DB.

  • Maximum number of RecordStores per Midlet

    Does anybody know if there is a maximum number of recordStores per midlet suite?
    If you have any info about this on any specific phone or any series, pls let me know. I'd just like an overview of most.
    Please, no info on the maximum size per RMS. Just the number of RMS's per Midlet/midlet suit.
    Thanks alot!

    Yes I know it's phone dependent. I just want to know if anyone has any information about any models etc... so i can come up with some average idea. It will be far from accurate... but it's the best i have.

Maybe you are looking for

  • How to use html codes in epub files?

    In Ipad ibook application can i use html codes in that books.. Most of the html codes are working except the text box.  any one can help me to fix this ?

  • No sound from iPod 5th gen

    my 5th gen ipod won't play. i've charged it and followed troubleshooting tips...all looks right but no sound...tried other ear phones and even restored it but nothing...any ideas?

  • SELECT LIST versus POPUP LOV

    I have a form that currently has several fields defined as SELECT LIST, which works great when the list of items to be selected is small. However, one of the fields is a list of employees, which will be > 300, and I was thinking of using the POPUP LO

  • RMI Cache coordination on Glassfish 2.x and Eclipselink 1.2

    We are trying to get eclipseLink shared cache working on Glassfish. As of Eclipselink 1.2 this can be done in the persistence.xml and we have added the following properties. where $host is the ip addesss of the server. We have no authentication setup

  • Manual bank statement(FF67)

    Hi all CAn any one let me know is it possible to enter tax code  while processing manual bank statement (t.code FF67) Thanks & Regards Phaneendra