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   

Similar Messages

  • 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 Simultaneous Requests

    I want to update the Maximum Number of Simultaneous Requests
    from 4 to 6 or 8. A restart of ColdFusion Application Server is
    required for changes to take effect. Has anyone experienced
    problems with the change not taking effect and/or causing the
    service to not restart.
    This has not happened. Being precautionary. The reason for
    the question is that I made a change previously to the Max Heap
    size from 1023 to 1535 in CF Admin, but when I attempted to restart
    the CF service it would not. Finally had to change the Max Heap in
    jvm.config back to 1023. Unsure why that would not accept it. The
    variable is that the service is running with a non-admin user ID on
    the server. Thoughts?

    The prevailing wisdom from Adobe for simultaneous requests is
    very wrong and inaccurate. First off, editing the simultaneous
    requests in the CFAdmin is safe to do. Editing your JVM settings
    with the CFAdmin is very dangerous on Linux because the CF Admin
    code can mangle the xml file. I'm not sure if this is true on
    Windows.
    Now back to the simultaneous requests issue. If you have high
    traffic and enough server processing power you can greatly increase
    the request number. We currently run our CFMX 7.02 servers set to
    100 simultaneous requests. And yes we've been maxed out at that
    level. We see over 1.5 million page views per day on a single cf
    server with only one instance of CF. As of today we switched to a
    load balanced setup and split the load across two servers. The
    reason we went load balanced is that we're expecting to more than
    double our traffic. Anyways, the number of simultaneous requests
    can be much higher than the 'General Wisdom' at Adobe.
    Oh yeah, I almost forgot. I've seen the new setting for
    simultaneous requests take effect with out having to restart CFMX.
    Cheers,

  • Large number of spool request

    Hi Experts,
    As our daily monitoring procedure, we run the sp01 tcode daily & check the number of elements is less then 20000 or not & also check that no error is there in any spool request.Today it shows the number of spool request element is greater than 20000.The popup box shows "Your selection contains 45443 elements"  .
    Now question is that why the maximum limit is 20000.Now when this maximum limit is exceded should i delete this spool request one by one or is there any other way to delete this report?is there any standard sap job is there to delete this spool request
    thanks

    Thanks all,for your valuable information.
    when  i check in sm36 twhat i found that the standard job sap_reorg_spool is being schedueled on daily basis. This standard job is running successfully in my system daily.Again this job automatically deletes the old spool request,then why i got more than 40000 elements in output controller.
    All suggestions are welcome
    Regards,
    Jitu
    Edited by: Jituda on Aug 12, 2009 1:13 PM

  • 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.

  • 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

  • R12 Restrict Parallel Concurrent Requests Per User to a Limit.

    Hi everyone,
    Is it possible to restrict parallel concurrent requests per user to a limit.
    e.g. UserA sending concurrent requests to submit 15 heavy reports one after another. After 2 minutes he feels free. Now 15 reports running in parallel are heavy enough to take system's performance down. Is there a way to restricting parallal reports by a single user to 5.
    Waitning........
    Regrads,
    M. Farooq Khan.

    Hi,
    Please check the profile optiion
    Concurrent:Active Request Limit
    Thanks,

  • 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 MRAS requests / allocations per user?

    Hello,
    I have a test C++ SIP application that registers to a Lync edge server and is able to perform MRAS requests to it.
    The MRAS responses allow me to create TURN allocations on the TURN component of the edge server. However, I seem to be hitting a limit with the number of simultaneous TURN allocations I can create with a single registration.  I seem to be able to create
    a maximum of 50 TURN allocations for that single registration.
    Is this a configurable option - either per user / per edge server etc - for the maximum number of TURN allocations a single Lync user can simultaneously have?  Or is there anything else I can put in the SIP/TURN signalling to increase this limit?
    Many thanks,
    Simon

    Hi,
    You may need to custom your own Lync server, so you might post the issue on Lync MSDN forum and more developing expert will help to verify the information using Lync SDK. Thank you for your understanding.
    http://social.msdn.microsoft.com/Forums/en-US/communicatorsdk/threads
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • 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

  • Spool request creation user exit

    Hi Experts,
    I need to do some action every time, when spool request is created. Is there any standard user exit or badi, or do I need to modify standard program?
    Best regards,
    Jirka F.

    For checking user exit - SMOD, you need to activate this exit via CMOD
    For Badi - SE18 to check & SE19 to implement
    Take the help of your abaper, give him / her your logic.
    Hope the above answers your query.
    Regards,
    Vivek

  • 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

  • Get average number of duplicate records per user?

    I am currently going through the activity log tables in the database to try and find out how many users make use of the application's batch processing functionality. As part of that, I'm trying to write a query to find out
    the average number of activities each user has performed with each request, where a given request can have 1 (non-batch processing) or more (batch processing) records with an identical user ID and timestamp. Here's a simplified depiction of
    the table in question:
    LogEntryNumber
    UserID
    ActivityTime
    1
    1
    2014-04-17 11:04:45.527
    2
    1
    2014-04-17 11:04:45.527
    3
    1
    2014-04-17 11:04:45.527
    4
    2
    2014-04-30 07:52:39.243
    5
    2
    2014-05-05 08:52:11.543
    6
    1
    2014-05-13 08:41:09.173
    7
    3
    2014-06-12 13:50:19.033
    And here's the results I'd like to see:
    UserID
    AverageNumberOfActivitiesPerRequest
    1
    2
    2
    1
    3
    1
    What would be the SQL query for getting these results?

    One way
    SELECT X.UserID
    , AVG(X.C) AS AverageNumberOfActivitiesPerRequest
    FROM (
    SELECT UserID
    , ActivityTime
    , COUNT(*) AS C
    FROM YourTable
    GROUP BY UserID
    , ActivityTime
    ) X
    GROUP BY X.UserID
    Edit: Actually that is doing an average on an integer so might not give you the results you expect - you can cast the COUNT(*) to NUMERIC/DECIMAL for better accuracy

  • Can't limit the number of simultaneous sessions per user

    Hi,
    I am using Cisco ACS 4.0 as a radius server that authenticate users for Internet access.
    Microsoft ISA 2004 is used as Radius client.
    When users tries to connect to Internet, the ISA Server forwards requests to Radius server (Cisco ACS) for authentication.
    I have constated that some users communicates their passwords to permit acces to Internet for non authorized users.
    Even, I have selected Max Sessions property in Cisco ACS to 1 for every user, I can see clearly on ISA 2004 that the same user/password is used from multiple PCs simultaneously.
    Internet acess on my company is based on a user / password authentication, and IP adresses are provided by DHCP server.
    Can you help by advising me how to limit every user using the internet to only a single session at any time, by using ISA 2004 (proxy) and Cisco ACS 4.0 (Radius Server).
    Thank you.
    Mustapha.

    Limiting every user using the internet to only a single session at a time is not possible with a radius server. You will need to use the proxy server (ISA server) for this task.

  • 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 )

Maybe you are looking for

  • HOW TO GET THE VALUE OF A NODE IN XMLDOC?

    i have an xml doc like this: <FUSIONHUB> <INFO> <COMPANY_ID>A001</COMPANY_ID> </INFO> </FUSIONHUB> HOW TO RETRIEVE THE VALUE A001? I HAVE USED NODE.getNodevalue() method but it returned null instead of A001. can anybody please answer ? waitng for rep

  • HT4623 Wi-Fi issues on IOS7

    I recently upgraded my iPod Touch to IOS7. I am having problems where some apps complain that I am not connected to wi-fi when indeed I can browse various web sites in Safari. I can purchase media via iTunes store. My stock symbols update just fine. 

  • Prevent creation of PO  and not PR

    Hi, Requirement is to prevent PO creation for a material type for a particular status and not Purchase requisition. By making Purchasing message u201CBu201D for a particular material status, it gives error message while creation of PO and purchase re

  • Storage location not getting copied in process order for components

    Dear PP Gurus, While making a production /process order the storage location of component materials is not getting copied from material master into the process order, it is showing any default storage location. What couls be the reason for it.. For a

  • How do I make a music link that plays on the open page?

    I want to display a image of a violin and have a on-off and slider bar underneath that shows playing progress for a short violin tune. As it is, I have a link to the mp3 file which, when clicked, opens another page and shows the slider bar and start/