Queue manager diagnostic -13

Hi All ,
I am trying to enque a message of length 4000 to a queue , am getting the below error
Q_CAT:1459: ERROR: Enqueue - out of queue space
based on the description of QCAT:1459 , i created a QUEUE with more pages .
here is the output of
qsplQueue space name: TMQUEUE
IPC key: 3457
Error queue: ERRQUE
Initialization: y
Blocking factor: 32
Extents: 1
Extent 0: 100 blocks
Shared memory usage:
Additional actions: 0 0 bytes
Additional owners: 0 0 bytes
Maximum cursors: 0 0 bytes
Maximum handles: 0 0 bytes
Maximum messages: 100 13600 bytes
Maximum processes: 25 1800 bytes
Maximum queues: 3 1392 bytes
Maximum temporary queues: 0 0 bytes
Maximum transactions: 25 4200 bytes
Filter memory: 0 bytes
Non-persistent message memory: 0 bytes
Overflow memory: 0 bytes
System reserved memory: 282069 bytes
Total shared memory usage: 303061 bytes
still am getting the same error .
Q_CAT:1459: ERROR: Enqueue - out of queue space
Failure to enqueue service: TPEDIAGNOSTIC - function failed - check diagnostic value Queue manager diagnostic -13
One more thing , if I remove the below code from my server , the tpenque is working fine
/* set flag in control structure indicating a reply queue */
qctl.flags = TPQREPLYQ;
/* provide name of reply queue in control structure */
(void) strcpy(qctl.replyqueue, "REPLYQ");
#ifdef TPQDELIVERYQOS
/* Tuxedo 7.1 or later */
qctl.flags |= TPQDELIVERYQOS;/* specify delivery quality of service */
/* non-persistent */
qctl.delivery_qos = TPQQOSNONPERSISTENT;
#endif
can anyone pls help me .
Nadeer.

when you created your queue space at that time did you specify -n option to create non persistent queue .
if you did not then that might be the reason.
The program does not prompt you to specify the size of the area to reserve in shared memory for storing non-persistent messages for all queues in the queue space. When you require non-persistent (memory-based) messages, you must specify the size of the memory area on the qspacecreate command line with the -n option.

Similar Messages

  • Tuxedo Q-Tpenque-Queue manager diagnostic -1

    Dear all ,
    I am not able to enque a message using tpenque,
    We are usings VIEWS.
    MY qspace is QSPACE
    my Q name is TUXABT
    Using TMQFORWARD to call the service TUXABT
    Here is the code
    struct tux_sock_in *input_view    = NULL;
    struct tux_sock_out *output_view   = NULL;
    struct tux_sock_in *queue_in     = NULL;
    input_view = (struct tux_sock_in*)rqst->data;
    if ((queue_in = (struct tux_sock_in*)tpalloc("VIEW32", "tux_sock_in",sizeof(struct tux_sock_in))) == NULL)
    userlog("QUEERR: tpalloc(\"tux_sock_out\") failed, %s",tpstrerror(tperrno));
    tpreturn(TPFAIL, 0, NULL, 0L, 0L); /* NB: sets tpurcode to 0 */
    return;
    memset(queue_in, '\0', sizeof(struct tux_sock_in));
    len= strlen((char*) input_view);
    memcpy(queue_in->data, input_view, sizeof(struct tux_sock_in));
    queue_in->length=len;
    /* len =sizeof(struct tux_sock_in);
    userlog("The Data length is %ld",len);
    userlog("Line 234 The Data Populated is %s",queue_in->data);
    if (tpenqueue("QSPACE","TUXABT",(TPQCTL *)&qctl, (char *)queue_in,len,0)==-1)
    userlog("Failure to enqueue service: %s\n",tpstrerror(tperrno));
    if (tperrno == TPEDIAGNOSTIC)
    userlog("Queue manager diagnostic %ld\n",qctl.diagnostic);
    When am tring to do the tpenqueue , am getting the error
    163838.mwaredrc!socksendserv.177970.1.0: Failure to enqueue service: TPEDIAGNOSTIC - function failed - check diagnostic value
    163838.mwaredrc!socksendserv.177970.1.0: Queue manager diagnostic -1
    Could you please help me resolve this issue .

    Roopesh ,
    Thank u soo much yaar , Am really stucked up with this queing issue .
    As u asked , here is the details
    Yes , I have error que and reply que . The retry interval is 3.
    output of qinfo
    Queue TUXABT: 0 Persistent Messages using 0 pages.
    0 Nonpersistent Messages using 0 bytes.
    0 Messages in total using 0 bytes.
    Queue REPLYQ: 0 Persistent Messages using 0 pages.
    0 Nonpersistent Messages using 0 bytes.
    0 Messages in total using 0 bytes.
    Queue ERRQUE: 2 Persistent Messages using 4 pages.
    0 Nonpersistent Messages using 0 bytes.
    2 Messages in total using 16384 bytes.
    qsplQueue space name: TMQUEUE
    IPC key: 3456
    Error queue: ERRQUE
    Initialization: y
    Blocking factor: 32
    Extents: 1
    Extent 0: 1500 blocks
    Shared memory usage:
    Additional actions: 0 0 bytes
    Additional owners: 0 0 bytes
    Maximum cursors: 0 0 bytes
    Maximum handles: 0 0 bytes
    Maximum messages: 100 13600 bytes
    Maximum processes: 8 576 bytes
    Maximum queues: 3 1392 bytes
    Maximum temporary queues: 0 0 bytes
    Maximum transactions: 5 840 bytes
    Filter memory: 0 bytes
    Non-persistent message memory: 0 bytes
    Overflow memory: 0 bytes
    System reserved memory: 92081 bytes
    Total shared memory usage: 108489 bytes
    ipcsQueue space name: TMQUEUE
    semaphore key : 3456
    semaphore id : 5111845
    : semaphore values : 1
    shared memory id : 16384010
    : shared memory key : 3456
    : # attached processes : 5
    : segment size : 108489
    lidlUniversal device index 0:
    name: /tuxhome/tuxadmin/runtime/quedir/QUE1
    start: 0
    size: 2500
    free space map: 1 entry used 47 available
    Here is the entry in the config file
    TMQUEUEGRP1 LMID=nftprod GRPNO=13 TMSNAME=TMS_QM TMSCOUNT=2
    OPENINFO="TUXEDO/QM:/tuxhome/tuxadmin/runtime/quedir/QUE1:TMQUEUE"
    *SERVERS
    #### FOR QUEING#########################################################
    TMQUEUE
    SRVGRP = TMQUEUEGRP1 SRVID = 1
    GRACE = 0 RESTART = Y CONV = N MAXGEN=10
    CLOPT = "-s TMQUEUE:TMQUEUE -- "
    TMQFORWARD
    SRVGRP=TMQUEUEGRP1 SRVID= 5 GRACE=0 RESTART=Y CONV=N MAXGEN=10
    CLOPT="-- -q TUXABT -i 60 " REPLYQ=N
    output of psr command(tmadmin)
    psr Prog Name === Queue Name === Grp Name === ID === RqDone === LoadDone === Current Service
    BBL === 122057 === nftprod === 0 === 10 === 500 === ( IDLE )
    TMS_QM === TMQUEUEGRP+ === TMQUEUE+ === 30002 === 1347 === 67350 === === ( IDLE )
    TMQFORWARD === 00013.00005 === TMQUEUE+ === 5 === 0 === 0 === ( IDLE )
    When am enquing the message is found in the message QUEUE. , from the ULOG , i can see the service is called , but no message ,
    Thanks in advance to help me
    Nadeer.

  • Reports Queue Manager - Status Information

    Hi there,
    I would like to know if you can get status information from the reports queue manager.
    For your information: We are still using Forms/Reports 6i but looking forward to use 10g via web frontend.
    1.) In detail I would like to control the 'number of jobs'. Our frontend (RWRQM60.EXE) only shows the first 990 (up to 1.000) entries, via 'queue => properties' I can see the total number of jobs.
    Is there a way to get the number of jobs via SQL or by another programmatically way (we prefer .NET)?
    2.) The reason why I need this information is because of a limit of 9999 reports in queue manager. After this amount of reports the report server raises a 'REP-0177: Error while running in remote server' and the 10.000 job will NOT be send to the queue!
    Is there a way to expand the number from 9.999 jobs to more .. for example 30.000 jobs?
    Thanks for your help ..
    Michael

    Currently no, not easily. we intend to fix this for Reports 7.0.
    Regards
    The Oracle Reports Team http://technet.oracle.com

  • Print Queue Management via Server Admin not working

    We have Xserves (10.5.8) running the Print Service for queue management to our printers. Clients print through the server just fine.
    When the printer jams or is otherwise paused, print jobs pile up in the queue as expected. The queue can be seen and managed by logging into the server, going to Server Preferences/Print & Fax and selecting the print queue.
    However, when the queue for the paused printer is viewed within Server Admin/Print, the queue shows as empty and therefore can't be managed. We want to use Server Admin for this function because:
    1) Server Admin can be run remotely on a workstation, so no login to the server required.
    2) We can assign Print Service management rights to select non-admins so they can manage the queues.
    Any ideas on why Server Admin fails to show spooled jobs? Is it working for anyone else?
    I am using Server Admin version 10.5.3 which are the latest available that comes with Server Admin Tools 10.5.7. We had been running 10.5.7 on the Xserve and it didn't work then either.

    Here's a bit more information about our setup and our experiences with Apple's CUPS implementation:
    On the server, all printer queues are set up with only lpr and ipp sharing enabled with the PPD setting for each printer set to Generic Postscript. We found that setting the PPD to the printer specific one on the server caused problems when clients tried to use printer specific options, like paper tray selection, etc.. The selection would be undone, apparently because the driver on the server would override the previous settings. Using Generic Postscript allows the client PPD settings to go through unmodified. Our printers are general a mix of HP LaserJets and some Sharp Copiers.
    All clients use lpd to the server queues with the printers' actual PPDs configured. Using ipp is superior in that printer feedback (jams, out of toner, etc) makes it back to the clients, but ipp only works when the client, the server, and the printer are on the same network. If the ipp client is not on the same network, the client spooler immediately goes into a paused state and the print job is stuck on the client.
    Using lpd to the server queues works reliably, but there is no feedback to the client. Jobs disappear from the client queue and go to the server, appearing to the user as a successful print. If the printer is down, there's nothing they can see or do about it.

  • Problem in Sending email from Reports Queue Manager

    Hi
    I am getting problem in sending email from reports queue manager.
    It says that error in logging to mail server.
    If any body knows the sol then pl help me out.
    thanks

    Hi
    I am getting problem in sending email from reports queue manager.
    It says that error in logging to mail server.
    If any body knows the sol then pl help me out.
    thanks

  • Java Print Queue Manager

    I am new to Java. I recently ran into a need to have a Java print queue manager to handle network printers. Is something like this already available or are there companies who can provide this?
    Please email me with any comments ([email protected]).
    Thank you in advance for any help.
    Regards,
    JS

    Have a look at javax.print API. I'll warn you, it's limited, but it can dynamically discover networked printers.

  • Reports 6i development for Queue Manager

    I'm trying to write reports to run from the Queue Manager and am having a truly horrible time. I am able to write complete reports and run them from my desk top, but when I try to run them on the Manager, they have problems at least 8 times out of ten - and then everytime it is back to the drawing board to redesign the report. The error messaging is also not up to scratch - please tell me what 'REP 1212 - Object 'Margin' is not fully enclosed by it's enclosing object 'dept_name' ' means. I understand the message, but it is just plain rubbish - I have built reports the same way many times without problems. The real answer I am looking for is 'Is there a standards document on designing for Queue Manager' ?
    Please help
    I'm going nuts
    Marc

    Marc,
    There shouldn't be a difference running the report from the queue manager vs. from the command line as long as all of your parameters are the same. The rep-1212 error you are getting sounds like a report that was designed for bitmap being run with mode=character. You would see this difference between the command line and queue manager if from the command line you are running the report with mode=bitmap (or default if your report already has mode as default or bitmap) and run with mode=character in the queue manager. It seems to me that there is probably a difference in how the reports are being run rather than how you've designed them. I'd discuss the issue with Support so they can go into more detail with you.
    Hope that helps,
    Toby

  • Configuring Soution Manager Diagnostic

    Hi All,
    We have Sol Man 4.0 with ECC 6.0....can anyone guide on configuring Solution Manager Diagnostic in our landscape? Please give info in details.
    with regards,
    Amit

    Hi,
    Have a look at this document https://websmp104.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002909272006E i gues this will help
    Lando

  • Fail over when queue manager is down

    Hi,
    I am implementing the MessageListener interface to receive messages from MQ. How will the JMS notify if the queue manager goes down for some reason. I need to capture the exception so that I can fail over to the secondary queue manager.
    Please reply back if you have any pointers. Your help would be much appreciated.
    Regards,
    Sunil

    If you register an ExceptionListener, you will be notified when connection to the JMS server is lost by a call to the onException() method.
    http://java.sun.com/j2ee/1.4/docs/api/javax/jms/ExceptionListener.html
    I've used this previously to attempt reconnection on a time interval for a specified number of retries.
    -Scott
    http://www.swiftradius.com

  • Read Queue Manager details from MQMD headers for synchronous communication?

    I have a requirement for synchronous messages between MQ and Proxy. MQ being at sender side.
    The response need to go to a queue which is a clustered queue. the Queue manager name present in the MQMD header of request. PI need to read the MQMD value from request and use it to decide the queue manager at runtime for sending the response back.
    Is it possible in PI? We have some settings for correlation id which only tells how to incoming set the correlation id & how to send it back with response.
    Thanks  for all help in advance
    Thanks,
    Sandeep

    Hi Raj,
    My requirement as below-
    The sender application specifies the response queue and queue manager in MQMD header when it send the request to PI. The response queue is same in all the cases but the response queue manager is different every time.
    PI need to read the response Queue manager details from MQMD header of request and use these details while sending the response back to sender application.
    I went through JMS adapter properties and not found helpful for above solution.
    Thanks,
    Sandeep

  • What kind of red entries we see in general in SCM Queue Manager?

    Hi Experts,
    When does SCM Queue Manager comes into picture? What kind of red entries we see in general in SCM Queue Manager? Explain with atleast 2 examples.
    Thanks in Advance.
    Suvecha

    Hi,
    You are taking a planning run in APO. System has created orders. These orders need to flow to R3.
    This you need to carryout in /SAPAPO/CCR. If these orders are not moving to R3 , system will throw error message.
    This error message you can find in /SAPAPO/CQ or SMQ1 or SMQ2 depending upon queue type.
    This error you need to rectify. Then only orders will flow to R3.
    This is applicable both from R3 to APO and APO to R3.
    You can further info in details in CIF help library.
    Thanks,
    nandha

  • Portlet to access the reports queue manager

    Is there a pre-built portlet that comes with Oracle9i AS Portal that will let me view the report job statuses in the report queue. I want to be able to view the report queue via a web browser, rather that thru the Oracle Reports Queue Manager.

    In case you are still looking for information on this -- search
    through here or metalink for information on the RW_SERVER_QUEUE
    table. It does a fairly decent job of mirroring what's going on
    in the report queue. Completed and scheduled jobs it handles
    well, but (at least in Portal 3.0.8) the report server doesn't
    seem to update this table frequently for jobs currently being
    run. I'm debating right now whether to write a Java servlet to
    monitor the real RWCGI60 output (which always seems accurate) to
    get a better handle on what's really happening on the reports
    server. (btw: Anybody else tried doing this yet?)
    - Bill

  • MQSeries 5.2 Queue Manager Creation Problems.

    Hi,
    I have installed MQSeries 5.2 and i need to Configure it to work with VAJ3.5(VisualAge for JAVA). Also when i try to create a new Queue Manager, MQSeries gives me an Error :
    "AMQ7128: No license installed for this copy of MQSeries."
    If i can get help on Creating Queue Manager and VAJ 3.5(Visual Age For Java) local Queue Setup, it would be of great help.
    Have a Good Day!!!
    Thanks and Regards,
    Ganesh Bhat,

    Your problem does not come from VisualAge, I guess.
    Probably, you didn't run mqlicense.sh, to tell MQ Series you have the license.
    If you run on Linux, maybe you can find help on my website, on the page concerning MQ Series.
    Regards.
    Pierre-Yves Fourmond
    Axway Messaging System
    R&D Department
    http://pyfourmond.free.fr

  • Report Queue Manager 9.04.2

    Dev Suit = 9.0.4.2
    Win XP SP2
    Start a report server with <home>/bin/rwserver server=local
    Open the Report Queue Manager, and queue=local.
    Click job, then new, then set options.
    Enter needed information, click ok then run.
    RQM responds with "can not run report: Cannot connect to the report server. Network tns names ..."

    Do you think it would be also a solution for me?
    Ref: [REPORTS SERVER] Can't connect with Reports Queue Manager
    Daniel
    Message was edited by:
    DanielB
    Message was edited by:
    DanielB

  • How to install the Report Queue Manager alone without the Developer suite

    is it possible to install the Report Queue Manager alone without the Developer suite...
    i want to install it in the clients machine... please if you have any idea...
    thanks for the help...

    I use a product called No Machine. http://www.nomachine.com/download.php which is a client which allows you to connect via a graphical interface remotely. Lots of people also use VNC, if you do this you may need to install the VNC server option on the HPUX box, then connect via the VNC client. You should really talk to your unix administrator how they want to do it.
    If you have access to the HP machine do you know if it is started in graphical mode? If so you should be fine. It will require this mode.
    Also as the root user us will need to execute the command
    xhost +this allows user to remote connect to the UNIX box in graphical mode.
    When this starts up you can start a terminal session.
    you will need to set the display for the user that will start the install.
    DISPLAY=:0.0make sure that the command
    echo $DISPLAYreturns
    *:0.0*everything should go from there.
    Failing this you can do the silent install, refer to the installation guide for the options there.
    cheers
    James

Maybe you are looking for

  • Image Processing in Bridge lost PSD originals HELP!

    I am somewhat new to using Adobe Bridge CS4 super frequently, I have been processing batches of images mostly using the 'Image Process' function under tools>photoshop>image processing. I was using it to watermark my photos and size them down. It work

  • Error 1921 when installing iTunes 8

    Just got my first iPod - the Nano. Trying to install iTunes 8 and I get this msg: error 1921 Service iPod service (Pod Service) could not be stopped. Verify that you have sufficient privileges to stop system privileges. ?????? HELP!! Also -- how do I

  • I'm having trouble with seeing all that is shown on pages and on my email page

    I have trouble seeing all the photos and on my e-mail home page and e-mail compose page I can't see evrything

  • BB Curve/Mac OS 10.4.11 User - Need help!

    Hi I have many questions. First - Pocket Mac What do I need to DL and install from the BB site?  I have the Blackberry Curve but due to lack of know how I am underutilizing it's abilities.. I need help with this!  There are a lot of choices and I thi

  • 64-bit Editions for Windows XP

    Yeah I see a lot of post and questions about 64 bit edition for Windows Vista... but is there a 64 bit edition for Windows XP of iTunes or does the vista version work with the 64 bit edition of Windows XP? Cause everytime I try to download the iTunes