Creating queue in NW6.5

I cannot create queue with ConsoleOne in new instalation of NW 6.5 SP2.
Anybody knows, what I am doing wrong?
Thanks for any suggestins

> I cannot create queue with ConsoleOne in new instalation of NW 6.5 SP2.
> Anybody knows, what I am doing wrong?
>
What kind of queue? For legacy printing you use NWaadmin. For NDPS you
use NWadmin or iManager
- Anders Gustafsson, Engineer, CNE6, ASE
NSC Volunteer Sysop
Pedago, The Aaland Islands (N60 E20)
Novell does not monitor these forums officially.
Enhancement requests for all Novell products may be made at
http://support.novell.com/enhancement
Using VA 5.51 build 315 on Windows 2000 build 2195

Similar Messages

  • Problems in creating Queue tables

    Hi I'm trying to create a Queue table. For that I'm creating a new Object, and then a table type of the same Object and then a Queue table of the payload type of the created table type, for which I'm getting an error. I'm using the following list of Queries:
    create or replace type CRM_TO_UMS_USR_DATA_TAB as object
    PROVISION_ID varchar2(25)
    PROVISION_DATE date
    ERROR_CODE varchar2(20)
    ERROR_MSG varchar2(50)
    STATUS char
    COMMENTS varchar2(50)
    Result => no Error
    create or replace type CRM_TO_UMS_USR_DATA_TYP as TABLE of CRM_TO_UMS_USR_DATA_TAB
    Result => no Error
    begin
    dbms_aqadm.create_queue_table(queue_table => 'CRM_TO_UMS_DATA_QUE_TAB',queue_payload_type => 'CRM_TO_UMS_USR_DATA_TAB');
    end;
    Result =>
    Error report:
    ORA-00902: invalid datatype
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 2830
    ORA-06512: at "SYS.DBMS_AQADM", line 58
    ORA-06512: at line 2
    00902. 00000 - "invalid datatype"
    I've given the following Grants for my schema user, for the purpose.
    Grant aq_administrator_role to siebel;
    GRANT EXECUTE ON dbms_aq TO siebel;
    GRANT RESOURCE TO siebel;
    GRANT CONNECT TO siebel;
    GRANT EXECUTE ANY PROCEDURE TO siebel;
    GRANT aq_administrator_role TO siebel;
    GRANT aq_user_role TO siebel;
    GRANT EXECUTE ON dbms_aqadm TO siebel;
    GRANT EXECUTE ON dbms_aqin TO siebel;
    Actually I've successfully created Queues with the above set of Queries in my other Development and UAT environments successfully, but when I'm trying to implement it with Prod I'm getting the Error. Anybody please help.
    Thanks & Regards,
    Srivathan, T.

    The type CRM_TO_UMS_USR_DATA_TAB is invalid because the syntax you're using is incorrect:
    SQL> create or replace type CRM_TO_UMS_USR_DATA_TAB as object
      2  (
      3  PROVISION_ID varchar2(25)
      4  PROVISION_DATE date
      5  ERROR_CODE varchar2(20)
      6  ERROR_MSG varchar2(50)
      7  STATUS char
      8  COMMENTS varchar2(50)
      9  );
    10  /
    Warning: Type created with compilation errors.
    SQL> begin
      2  dbms_aqadm.create_queue_table(queue_table => 'CRM_TO_UMS_DATA_QUE_TAB',queue_payload_type => 'CRM_TO_UMS_USR_DATA_TAB');
      3  end;
      4  /
    begin
    ERROR at line 1:
    ORA-00902: invalid datatype
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 2822
    ORA-06512: at "SYS.DBMS_AQADM", line 58
    ORA-06512: at line 2
    SQL> create or replace type CRM_TO_UMS_USR_DATA_TAB as object
      2  (
      3  PROVISION_ID varchar2(25),
      4  PROVISION_DATE date ,
      5  ERROR_CODE varchar2(20),
      6  ERROR_MSG varchar2(50),
      7  STATUS char(1),
      8  COMMENTS varchar2(50)
      9  );
    10  /
    Type created.
    SQL> begin
      2  dbms_aqadm.create_queue_table(queue_table => 'CRM_TO_UMS_DATA_QUE_TAB',queue_payload_type => 'CRM_TO_UMS_USR_DATA_TAB');
      3  end;
      4  /
    PL/SQL procedure successfully completed.Max
    http://oracleitalia.wordpress.com

  • Unable to receive Queue Message Unable to create Queue in MDM 2.0.1

    Hi All,
    I am getting below exception when i am trying to read JMSQueue from weblogic server to MDM 2.0.1
    Steps i configured as below:
    Created XAI JNDI server : XAI JNDI Server(Demo), Provider URL(http://localhost:7001), Initial Connection Factory(weblogic.jndi.WLInitialContextFactory)
    created XAI JMS Connection:XAI JMS Connection(DemoConn), XAI JNDI Server(Demo), JNDI Connection Factory(weblogic.jms.XAConnectionFactory)
    created XAI JMS Queue: XAI Queue Name(DemoQueue), Queue Name(TestQueue), XAI JNDI Server(Demo)
    created XAI Receiver DemoRx mapped with XAI Class JMSRCVR and with above configurations
    MPL is creating intial context factory for jndi server properly and intializing queues properly.
    But getting namenotfound exception at Receiver DemoRx
    [Thu May 26 15:01:46 IST 2011] Receiver DemoRx - Read interval is 10 seconds.
    [Thu May 26 15:01:47 IST 2011] Receiver "DemoRx" initialization failed:Unable to receive Queue MessageUnable to create Queue: javax.naming.NameNotFoundException: Unable to resolve 'TestQueue'. Resolved '' [Root exception is javax.naming.NameNotFoundException: Unable to resolve 'TestQueue'. Resolved '']; remaining name 'TestQueue'
    com.splwg.mpl.receiving.ReceiverInitException: Unable to receive Queue MessageUnable to create Queue: javax.naming.NameNotFoundException: Unable to resolve 'TestQueue'. Resolved '' [Root exception is javax.naming.NameNotFoundException: Unable to resolve 'TestQueue'. Resolved '']; remaining name 'TestQueue'
         at com.splwg.mpl.jms.queue.JMSReceiver.prepareConnection(JMSReceiver.java:394)
         at com.splwg.mpl.jms.queue.JMSReceiver.init(JMSReceiver.java:266)
         at com.splwg.mpl.receiving.AsyncReceiverManager$1.call(AsyncReceiverManager.java:232)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:662)
    Please help me in this regard
    Thanks in advance,
    sukumar

    Hi Suraj,
    I would prefer to discuss the problems in the forum. There are maybe other that have the same problem and they could then participate from the discussion.
    No back to your problem:
    As fare as I know there is no build in function to read directly from file system.
    MPL is no longer supported in this product and this was the only module for reading the file system.
    You have to develop an application to fetch the files form the file system or you must use an Enterprise Service Bus
    like OSB or ServiceMix.
    To enable the system for the IMD import you have to publish a Business Object or Script via XAI Inbound service.
    The recommended way is to use the D1-IMDSeeder BO.
    There is a chapter in the MDM Configuration Guide, explaining how to setup the XAI Inbound service.
    There is also a service script available. The advantage of the service script is, that you can import IMDs for more than on device (D1-IMDEvtUpl and DM-IMDEvtUpl). The DM-IMDEvtUpl is eventually only in the demo database available.
    The disadvantage of the IMDSeeder is, that you have to setup a lot of configurations in the system. There is another thread in the forum explaining the setup.
    My preferred way is to use the D1-InitialLoadIMDScalar or D1-InitialLoadIMDInterval BO but you have to do a lot of things by your own.
    /Markus

  • Problem in creating queue in Oracle9i Enterprise Edition Release 9.0.1.0.0

    Hi,
    I am facing a problem in creating queue using DBMS_AQADM.CREATE_QUEUE_TABLE, in Oracle 9i.
    Have given the following command
    DBMS_AQADM.CREATE_QUEUE_TABLE ( queue_table=>'ORA_TRIG_TOPIC_TAB',
    queue_payload_type=> 'SYS.AQ$_JMS_TEXT_MESSAGE',
    storage_clause=>'',
    sort_list=>'',
    multiple_consumers=>TRUE,
    message_grouping=>DBMS_AQADM.NONE,
    comment=>'',
    auto_commit=>TRUE,
    primary_instance=>0,
    secondary_instance=>0,
    compatible=>'8.1',
    NON_REPUDIATION=>0);
    and getting the following error message
    -600 ORA-00600: internal error code, arguments: [kcbgtcr_4], [38910], [0], [1],
    Pls. let me know whether there is any work around is there for creating queues in 9i, having multiple_consumers property

    No it is not so simple. This "le signe est sur l'avant dernier octet" means that the sign is last character in number.
    The sign "é" and "I" are just in my example and they are somehow calculated but I don't know how?
    If I take my example there is field with format S9(13)V99 and with value 00000000071049é (and with last sign "é") and I think the last sign is somehow calculated from number. And then from this value I get the number.
    00000000071049é
    FFFFFFFFFFFFFFC
    000000000710490 => +0000000007104,90
    S9999999999999V99
    Everything I try, calculating from binary to hex, or anything other, I don't get the result or the last sign and I wonder if there is some function in PL/SQL that I can use to get the result I want?
    Or if you have some idea how to help me to get from "00000000071049é" to "+0000000007104,90" from example above?
    Here are some other examples, just for help:
    000000204592D
    000000183882D
    000000139441C
    000000182979H
    000000083361F
    000000083361F
    000000083361F
    000000059033F
    000000066273E
    000000069011G
    000000102615B
    000000092362F
    000000138215‚
    000000138215‚
    000000138215‚
    000000138215‚
    000000106760C
    000000106760C
    000000106760C
    000000115024A
    000000115024A
    000000115024A
    000000115024A
    000000115024A
    000000088149B
    000000084459I

  • Cant lookup created queue

    I have a problem looking up queues that I'm creating with:
    com.sun.messaging.Queue myDQueue = new com.sun.messaging.Queue();
    as per the documentation. I can see the nwly created queues in my message queue Admin Console but can find them again with :
    Queue myD2Queue = (Queue)ctx.lookup(qName);
    where qName is set as both the imqDestinationName and also used setName on the created q. I get a NameNotFoundException. Any help much appreciated
    many thanks
    John

    The following thread on appserver forum have some related info:
    http://swforum.sun.com/jive/thread.jspa?forumID=114&threadID=15517
    Also:
    Appserver forum: http://swforum.sun.com/jive/forum.jspa?forumID=114
    MQ forum: http://swforum.sun.com/jive/forum.jspa?forumID=24

  • Tmboot: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue

    Hi,
    i am getting "tmboot :internal error:CMDTUX_CAT:1098 error:cant create queue"
    *RESOURCES
    IPCKEY 123456
    #Example:
    #IPCKEY 123456
    DOMAINID simpapp
    MASTER simple
    MAXACCESSERS 10
    MAXSERVERS 5
    MAXSERVICES 10
    MODEL SHM
    LDBAL N
    *MACHINES
    DEFAULT:
    APPDIR="c:\oltp"
    TUXCONFIG="c:\oltp\tuxconfig"
    TUXDIR="c:\bea\tuxedo8.1"
    "USTR-ERL-1692"
    LMID=simple
    *GROUPS
    GROUP1
    LMID=simple GRPNO=1 OPENINFO=NONE
    *SERVERS
    DEFAULT:
    CLOPT="-A"
    simpserv SRVGRP=GROUP1 SRVID=1
    *SERVICES
    TOUPPER
    Help me...

    Then there are two things. First is:
    Using remote Desktop connection:  If so then don't use remote Desktop connection without console switch, if you are using it then run "mstsc /console" (console mode)
    Another way to start app server on physical machine, or use VNC like software.
    And the second thing is:
    You should increase some of your Tuxedo IPC Settings, do this:
    Go to Control Panel - BEA Tuxedo8.1 Administration - IPC Resources tab
    Uncheck Use Default IPC Settings
    Click next to where it says IPC Resources it is a little box. When cursor is over the box it will show, New (Insert)
    Type in the word Custom and hit enter
    Now everything on the right turned from greyed out to white
    Change Maximum Number of Message Queues to 1024
    Maximum Number of Processes Using IPC 512
    Maximum Number of Semaphores to 2048
    Maximum Number of Semaphore Sets 2048
    Maximum Number of Semaphore Undo Structures 2048
    Hit Apply
    NOTE: The Tuxedo IPC Helper Service will then need to be restarted. Make sure you shut down all domains and schedulers that are maintained by Tuxedo before doing this.
    Thanks,
    Neeraj Singh

  • How to create queue !!

    Hi experts!!
    can any one guide me...in cretaing queues in sender side..integration server and in the receiver side...
    I min .. i want to send some messages to legacy system from SAP system...
    so i want to know..how to create queue  in Integration server and in the reciever system.???
    And also i want to know how to cretae multiple queues in the recever side......
    Thanks in advance!!!!!

    Biplab,
    Check this document for creating queues and also if you want to prioritize them:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20bb9649-e86e-2910-7aa9-88ed4972a5f6
    /people/sap.user72/blog/2005/12/12/how-to-prioritize-messages-in-xi
    ---Satish

  • How to create queue table?

    How to createHow to create queue table?
    Give me step wise instruction to create queue table

    solution
    first you have to create type.
    second you have to CREATE_QUEUE_TABLE with procedure syntax.
    and lastly you have to create CREATE_QUEUE with procedure syntax.
    examples
    SQL> create or replace
    2 TYPE "name of type"
    3 (xxxxx VARCHAR2(10),
    4 xxxx NUMBER,
    5 x_xxx VARCHAR2(50),
    6 MAP MEMBER FUNCTION xxxxxx RETURN VARCHAR2
    7 );
    8 /
    Type created.
    SQL> BEGIN
    2 DBMS_AQADM.CREATE_QUEUE_TABLE( Queue_table => 'owner.name of queue table',
    3 Queue_payload_type => 'owner.type name',
    4 storage_clause => 'PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 TABLESPACE COMP_TB',
    5 Sort_list => 'ENQ_TIME', Compatible => '8.1.3');
    6 END;
    7 /
    PL/SQL procedure successfully completed.
    SQL> BEGIN
    2 DBMS_AQADM.CREATE_QUEUE( Queue_name => 'owner.name of queue',
    3 Queue_table => 'owner.name of queue table', Queue_type => 0, Max_retries => 5,
    4 Retry_delay => 0, dependency_tracking => FALSE);
    5 END;
    6 /
    PL/SQL procedure successfully completed.

  • Can't create queue on W2k Advanced Server...

    Hello,
    I've just installed Tuxedo 6.5 on W2k Advanced Server and I'm trying to start
    the BBL with the Simpapp application example. I've compiled the UBBCONFIG file
    with tmloadcf and when I try to start the BBL with tmboot -A, I get the message
    Can't create queue (CMDTUX 1098). In the ULOG file I get the LIBTUX 681 error.
    I've tried with different values of the IPC resources (multiplying all values
    by 10) and I get the same error.
    If someone knows why I get these errors please send me an email
    Thanks in advance
    Pedro M.
    [email protected]

    There can be a problem if there are more than 100 Windows Services defined
    prior to the Tuxedo Helper. This has been seen on W2k AS.
    If this is the case the Rolling Patch is your only way out.
    "Pedro Martín" <[email protected]> wrote in message
    news:3c7257ff$[email protected]..
    >
    Hello,
    I've just installed Tuxedo 6.5 on W2k Advanced Server and I'm trying tostart
    the BBL with the Simpapp application example. I've compiled the UBBCONFIGfile
    with tmloadcf and when I try to start the BBL with tmboot -A, I get themessage
    Can't create queue (CMDTUX 1098). In the ULOG file I get the LIBTUX 681error.
    I've tried with different values of the IPC resources (multiplying allvalues
    by 10) and I get the same error.
    If someone knows why I get these errors please send me an email
    Thanks in advance
    Pedro M.
    [email protected]

  • CMDTUX_CAT:1098: ERROR: Can't create queue

    I have Tuxedo 8.1 installed on win 2003 32 bit box.
    Whenever I am trying tmboot -y getting the error message as below:--
    CMDTUX_CAT:1098: ERROR: Can't create queue
    In wslog file it shows as :
    LIBWSC_CAT:1037: ERROR: Network message receive failure
    LIBWSC_CAT:1059: ERROR: WSL returns error on connection request
    LIBWSC_CAT:1055: ERROR: Unable to establish WSL connection
    LIBWSC_CAT:1027: ERROR: Unable to connect to WSH
    LIBWSC_CAT:1020: ERROR: Unable to obtain authentication level
    I know some wrong information in my ubbconfig file, but not able to find.
    My ubbconfig file is :
    *RESOURCES
    IPCKEY 66490
    UID 0
    GID 0
    PERM 0666
    MAXACCESSERS 50
    MAXSERVERS 50
    MAXSERVICES 50
    MASTER "USTR-VM-0928"
    SCANUNIT 10
    BBLQUERY 180
    BLOCKTIME 30
    SANITYSCAN 30
    MODEL SHM
    LDBAL Y
    NOTIFY SIGNAL
    USIGNAL SIGUSR1
    TAGENT "TAGENT"
    *MACHINES
    "USTR-VM-0928" LMID= "USTR-VM-0928"
    TYPE="i386NT"
    MAXWSCLIENTS=10
    TUXDIR="c:\bea\tuxedo8.1"
    APPDIR="c:\oltp"
    ENVFILE="c:\oltp\envfile"
    TLOGDEVICE="c:\oltp\tlog"
    TLOGNAME=tlog
    TUXCONFIG="c:\oltp\tuxconfig"
    ULOGPFX="c:\oltp\ulog"
    *GROUPS
    K_GROUP1 GRPNO=1 LMID="USTR-VM-0928"
    K_GROUP2 GRPNO=2 LMID="USTR-VM-0928"
    K_GROUP3 GRPNO=3 LMID="USTR-VM-0928"
    *SERVERS
    DEFAULT: RESTART=Y MAXGEN=5 REPLYQ=Y
    WSL SRVGRP=K_GROUP3 SRVID=3 CLOPT= "-A -- -n //192.63.222.176:3050"
    #"-A -- -n0x00021e45c03fdeb0 -w C:\bea\tuxedo8.1\bin\WSH -m 1 "
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=1 CONV=Y
    CLOPT="-- -sA -ljdoe,7,jdoe,tpscon"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=2
    CLOPT="-- -sA -ljdoe,7,jdoe,unsolmsg"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=3
    CLOPT="-- -sA -ljdoe,7,jdoe,bromsg"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=11 CLOPT=
    "-s MPR_TBL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,1"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=12 CLOPT=
    "-s MPR_COL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,2"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=13 CLOPT=
    "-s MPR_SQL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,3"
    *SERVICES
    DEFAULT: PRIO=50 LOAD=50 AUTOTRAN=N
    map_server
    WSH
    Service: TListen8.1 (3050) is running.
    Please help me regarding this.
    Rajeev

    ULOG contains the following:--
    024412.USTR-VM-0928!tmboot.4000.2672.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    024412.USTR-VM-0928!tmboot.4000.2672.-2: LIBTUX_CAT:681: ERROR: Failure to create message queue
    024412.USTR-VM-0928!tmboot.4000.2672.-2: FATAL: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue
    024529.USTR-VM-0928!tmloadcf.1248.3360.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    024529.USTR-VM-0928!tmloadcf.1248.3360.-2: CMDTUX_CAT:879: INFO: A new file system has been created. (size = 880 512-byte blocks)
    024530.USTR-VM-0928!tmloadcf.1248.3360.-2: CMDTUX_CAT:871: INFO: TUXCONFIG file c:\oltp\tuxconfig has been created
    024548.USTR-VM-0928!tmboot.3584.2572.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    024548.USTR-VM-0928!tmboot.3584.2572.-2: LIBTUX_CAT:681: ERROR: Failure to create message queue
    024548.USTR-VM-0928!tmboot.3584.2572.-2: FATAL: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue
    071016.USTR-VM-0928!tmloadcf.132.3896.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    071016.USTR-VM-0928!tmloadcf.132.3896.-2: CMDTUX_CAT:879: INFO: A new file system has been created. (size = 880 512-byte blocks)
    071016.USTR-VM-0928!tmloadcf.132.3896.-2: CMDTUX_CAT:871: INFO: TUXCONFIG file c:\oltp\tuxconfig has been created
    071023.USTR-VM-0928!tmboot.3596.3920.-2: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    071023.USTR-VM-0928!tmboot.3596.3920.-2: LIBTUX_CAT:681: ERROR: Failure to create message queue
    071023.USTR-VM-0928!tmboot.3596.3920.-2: FATAL: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue
    When I executed tmloadcf -y ubbconfig, one folder with name .adm and one configuration file with name tuxconfig are created.
    Then I did tmboot -y, it returns error as :
    Booting all admin and server processes in c:\oltp\tuxconfig
    tmboot: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue
    I checked wslog file for more information:--
    022711.USTR-VM-0928!?proc.3452.3688.0: 02-17-2011: Tuxedo Version 8.1 32-bit Windows.
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1037: ERROR: Network message receive failure
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1059: ERROR: WSL returns error on connection request
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1055: ERROR: Unable to establish WSL connection
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1027: ERROR: Unable to connect to WSH
    022711.USTR-VM-0928!?proc.3452.3688.0: LIBWSC_CAT:1020: ERROR: Unable to obtain authentication level
    My ubbconfig file contains the following:--
    *RESOURCES
    IPCKEY 68990
    UID 0
    GID 0
    PERM 0666
    MAXACCESSERS 50
    MAXSERVERS 50
    MAXSERVICES 50
    MASTER "USTR-VM-0928"
    SCANUNIT 10
    BBLQUERY 180
    BLOCKTIME 30
    SANITYSCAN 30
    MODEL SHM
    LDBAL Y
    NOTIFY SIGNAL
    USIGNAL SIGUSR1
    TAGENT "TAGENT"
    *MACHINES
    "USTR-VM-0928" LMID= "USTR-VM-0928"
    TYPE="i386NT"
    MAXWSCLIENTS=10
    TUXDIR="c:\bea\tuxedo8.1"
    APPDIR="c:\oltp"
    ENVFILE="c:\oltp\envfile"
    TLOGDEVICE="c:\oltp\tlog"
    TLOGNAME=tlog
    TUXCONFIG="c:\oltp\tuxconfig"
    ULOGPFX="c:\oltp\ulog"
    *GROUPS
    K_GROUP1 GRPNO=1 LMID="USTR-VM-0928"
    K_GROUP2 GRPNO=2 LMID="USTR-VM-0928"
    K_GROUP3 GRPNO=3 LMID="USTR-VM-0928"
    *SERVERS
    DEFAULT: RESTART=Y MAXGEN=5 REPLYQ=Y
    WSL SRVGRP=K_GROUP3 SRVID=3 CLOPT=
    "-A -- -n0x00020beac03dfc14 -w C:\oltp\wsenvfile\WSH -m 1"
    #### WSL SRVGRP=K_GROUP3 SRVID=3 CLOPT= "-A -- -n //192.61.252.20:279 -m 2 -M 5 -x 5f"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=1 CONV=Y
    CLOPT="-- -sA -ljdoe,7,jdoe,tpscon"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=2
    CLOPT="-- -sA -ljdoe,7,jdoe,unsolmsg"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=3
    CLOPT="-- -sA -ljdoe,7,jdoe,bromsg"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=11 CLOPT=
    "-s MPR_TBL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,1"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=12 CLOPT=
    "-s MPR_COL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,2"
    "c:\BIS$1\tpmapper" SRVGRP=K_GROUP1 SRVID=13 CLOPT=
    "-s MPR_SQL:map_server -- -sA -ljdoe,7,jdoe,mapsvr,3"
    *SERVICES
    DEFAULT: PRIO=50 LOAD=50 AUTOTRAN=N
    map_server
    WSH
    I tried many other option within Server section for WSL, but always getting the same error.
    Please help me regarding this.
    Thanks
    Rajeev

  • The following failures occurred: -- Targets of UDD overlap error while creating queue

    Hi,
    While creating queue on weblogic admin console, the follwoing error occurred. Can somebody help me on this.
    The following failures occurred: -- Targets of UDD overlap
    Thanks,

    Hi,
    Can you provide the details about how you are targeting the UDD?
    Is there any sub-deployment configured? If so what is the target of the sub-deployment ?
    Make sure you target only the JMS Servers for the sub-deployment.
    Regards
    Rosario

  • ORA-39080: failed to create queues "" and "" for Data Pump job

    When I am running datapump expdp I receive the following error:
    +++Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Produc+++
    +++tion+++
    +++With the Partitioning, OLAP and Data Mining options+++
    +++ORA-31626: job does not exist+++
    +++ORA-31637: cannot create job SYS_EXPORT_SCHEMA_01 for user CHESHIRE_POLICE_LOCAL+++
    +++ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95+++
    +++ORA-06512: at "SYS.KUPV$FT_INT", line 600+++
    +++ORA-39080: failed to create queues "" and "" for Data Pump job+++
    +++ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95+++
    +++ORA-06512: at "SYS.KUPC$QUE_INT", line 1555+++
    +++ORA-01403: no data found+++
    Sys has the following two objects as invalid at present after running catproc.sql and utlrp.sql and manual compilation:
    OBJECT_NAME OBJECT_TYPE
    AQ$_KUPC$DATAPUMP_QUETAB_E QUEUE
    SCHEDULER$_JOBQ QUEUE
    While I run catdpb.sql the datapump queue table does not create:
    BEGIN
    dbms_aqadm.create_queue_table(queue_table => 'SYS.KUPC$DATAPUMP_QUETAB', multiple_consumers => TRUE, queue_payload_type =>'SYS.KUPC$_MESSAGE', comment => 'DataPump Queue Table', compatible=>'8.1.3');
    EXCEPTION
    WHEN OTHERS THEN
    IF SQLCODE = -24001 THEN NULL;
    ELSE RAISE;
    END IF;
    END;
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at line 7

    Snehashish Ghosh wrote:
    When I am running datapump expdp I receive the following error:
    +++Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Produc+++
    +++tion+++
    +++With the Partitioning, OLAP and Data Mining options+++
    +++ORA-31626: job does not exist+++
    +++ORA-31637: cannot create job SYS_EXPORT_SCHEMA_01 for user CHESHIRE_POLICE_LOCAL+++
    +++ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95+++
    +++ORA-06512: at "SYS.KUPV$FT_INT", line 600+++
    +++ORA-39080: failed to create queues "" and "" for Data Pump job+++
    +++ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95+++
    +++ORA-06512: at "SYS.KUPC$QUE_INT", line 1555+++
    +++ORA-01403: no data found+++
    Sys has the following two objects as invalid at present after running catproc.sql and utlrp.sql and manual compilation:
    OBJECT_NAME OBJECT_TYPE
    AQ$_KUPC$DATAPUMP_QUETAB_E QUEUE
    SCHEDULER$_JOBQ QUEUE
    While I run catdpb.sql the datapump queue table does not create:
    BEGIN
    dbms_aqadm.create_queue_table(queue_table => 'SYS.KUPC$DATAPUMP_QUETAB', multiple_consumers => TRUE, queue_payload_type =>'SYS.KUPC$_MESSAGE', comment => 'DataPump Queue Table', compatible=>'8.1.3');does it work better when specifying an Oracle version that is from this Century; newer than V8.1?

  • Create Queue Dinamically

    My applicationt needs to create a queue at runtime, dinamically. In the source code to create the code I use the method createQueue(queueName) and after I do the bind in the context. This is the code:
    queue=queueSession.createQueue(queueName);
    try
    jndiContext.rebind(queueName,queue);
    System.out.println("Bind fatto");
    queue=(Queue)jndiContext.lookup(queueName);
    System.out.println("Presa coda");
    }catch(NamingException namEx)
    System.out.println("Problemi con la binda");
    namEx.printStackTrace();
    System.out.println("La coda � "+queue.getQueueName());
    queueReceiver = queueSession.createReceiver(queue);
    The queue is created in correctly way and also the bind in the context is done in correctly way. When the application
    creates the receiver opn the queue thereis an exception .
    The exception is:
    javax.jms.InvalidDestinationException: No Destination found
    for name: ProvaQueue2
    Can I resolve this problem?Can I create and use a dinamically queue?
    Thanks for the help.

    A queue is an administered object that should be created prior to the application running. The purpose of the
    method createQueue(queueName) is to create a Queue object - that is the description of the queue - not the Queue itself. The 1.0.2b Javadoc for this method says
    Creates a queue identity given a Queue name.
    This facility is provided for the rare cases where clients need to dynamically manipulate queue identity. It allows the creation of a queue identity with a provider-specific name. Clients that depend on this ability are not portable.
    Note that this method is not for creating the physical queue. The physical creation of queues is an administrative task and is not to be initiated by the JMS API. The one exception is the creation of temporary queues, which is accomplished with the createTemporaryQueue method."
    You should not be creating a queue dynamically. If you are working with the JMS Reference Implementation, you can use the JMS Administration tool (j2eeadmin) to create a queue. If you are using another implementation, consult the documentation for how to create queues.
    My applicationt needs to create a queue at runtime,
    dinamically. In the source code to create the code I
    use the method createQueue(queueName) and after I do
    the bind in the context. This is the code:
    queue=queueSession.createQueue(queueName);
    try
    jndiContext.rebind(queueName,queue);
    System.out.println("Bind fatto");
    queue=(Queue)jndiContext.lookup(queueName);
    System.out.println("Presa coda");
    }catch(NamingException namEx)
    System.out.println("Problemi con la binda");
    namEx.printStackTrace();
    System.out.println("La coda �
    "+queue.getQueueName());
    queueReceiver =
    eReceiver = queueSession.createReceiver(queue);
    The queue is created in correctly way and also the
    bind in the context is done in correctly way. When the
    application
    creates the receiver opn the queue thereis an
    exception .
    The exception is:
    javax.jms.InvalidDestinationException: No Destination
    found
    for name: ProvaQueue2
    Can I resolve this problem?Can I create and use a
    dinamically queue?
    Thanks for the help.

  • Best practice using clusters to create queue/notifier/bundles ?

    I have in a block diagram a queue, notifier and several instances of bundle cluster
    that all use the same data structure.   There is a cluster typedef for the data structure.
    Of course, each of these objects (define queue, define notifier, bundle)
    need to know how the cluster is defined.
    What is considered best practice?
    1) create a dummy instance of the cluster everywhere the data structure
        definition is needed (and hide them all on the FP)
    2) create only one instance and wire it to all the places it is needed
       But there is no data flow on this wire -- it's only the cluster *definition*
       that is being used, so this would seem to clutter up the BD unnecessarily.
    3) Create only one control instance of the cluster and use local variables
        everywhere else the cluster definition is needed.  It's _value_ is never
        assigned or read so there's no issue with race conditions.
    4) Some other way?
    If you had to clean up someone else's code, how would you hope to
    see this handled?
    It occurred to me in the course of writing this that where I have
    "unbundle... code ... bundle" I could wire the original bundle to 
    both "unbundle" and "bundle" -- but would this be too confusing
    and clutter the BD with unnecessary wire ?
    Thanks and Best Regards,
    -- J.
    Message Edited by JeffBuckles on 11-06-2008 03:17 PM
    Solved!
    Go to Solution.

    Discovered a rather unpleasant side-effect of using the typedef constant cluster this way. Since I'm using the typedef cluster constant only to communicate the definition of the cluster--not for dataflow--I resize it to the same size and shape as a control terminal.  This is shown in the first image, clean_cluster.jpg.   I was also careful to set "Autosizing->None" on all instances of the constant.   However, when I updated the typedef, all instances of the constant resized!  That's dozens of instances across many different VIs.   Why was "Autosizing->None" not respected?  Is there a better way to do this so that my BD doesn't get messed up if I have to update a typedef such as this one?
    Thanks and Best Regards,
    J. 
    Attachments:
    clean_cluster.png ‏2 KB
    Cluster_Updated.png ‏3 KB

  • Problem in creating Queue Table of 'VARCHAR2'  Payload.

    Hello guys!!
    I am having a problem creating a Queue Table of payload type 'VARCHAR2'. I want to create a queue for simple varchar2
    type of messages. I am using following command:
    dbms_aqadm.create_queue_table(queue_table => 'sh_varchar_queue_table',
    queue_payload_type => 'VARCHAR2');
    I am getting the following error:
    ORA-24000: invalid value VARCHAR2, QUEUE_PAYLOAD_TYPE should be of the form
    [SCHEMA.]NAME
    Please help!!!
    Thanks!!!
    Shalu

    Thanks Brajesh!!
    Actually I have tried with Object Type n that is working fine. But i didn't know that 'VARCHAR2' can't be a payload type. It
    is mentioned in Rel 8.1.5 that it can be a 'VARCHAR2' n I started trying that. didn't know that it's not possible in 9i.
    Anyways, thanx so much!!!
    N Brajesh, few days back on the discussion forum itself, I mentioned my e-mailed to you. I wanted to get in touch with u
    bcoz i need ur help for so many other problems. I have tight deadlines n i am new to all this stuff.
    Once again, can u pls e-mail me at [email protected] Shall look forward to ur e-mail.
    Thanks so much!!
    Shalu

Maybe you are looking for

  • Problem with creation of a jar file from inside a java program

    Hi, I am trying to create a jar file at runtime from within a java program. I am able to create a jar file just fine using: String[] jarArgs = new String[3]; jarArgs[0] = "cvf"; jarArgs[1] = "C:\temp\myjar.jar"; jarArgs[2] = "C:\temp\this"; sun.tools

  • Wide black vertical band in display.

    My computer (MA590LL-late 2006) has just started displaying a 2.5" wide sold black vertical band just left of center. Otherwise it seems to be working just fine. I want to find out if this is an expensive repair before I take it to Apple because, giv

  • Connecting to epson wireless printers

    "upgraded" from linksys-n broadband router to the wrt1900ac, now despite my various attempts, unable to connect my epson workforce545 and workforce 845, these wireless  printers  connected to N w/o any trouble. any ideas towards resolving this issue.

  • Planning Login issue And EPM windows services error

    Hi All, I require help from you guys. I have couple of issues while installing Hyperion 9.3.1 on a sandbox. (which is a win2003 SP2) Issue1: I have Installed all the applications as mentioned in the Hyperion Documentation. In windows services I can't

  • I cannot get my downloaded apps on my iphone to open at all

    When I click on say my Facebook app it opens then immediatly closes out. Its only doing it on the apps I have downloaded from the apps store not the apps that came on the phone when I bought it. Its very frustrating!! If anyone can help I would great