How can i Create Domain in the Weblogic 7.0

hi !..........
how can i create Domain in weblogic server 7.0 plz send the replay ASAP..
thanks in advance
From
Sree

Go to the directory:
%BEA_HOME%\weblogic700\common\bin
Start the batch or shell named as dmwiz.cmd / dmwiz.sh
This should be able to launch a wizard and take you through the process.
Thanks and regards,
Paz

Similar Messages

  • How can I create cursors within the cursor?

    How can I create cursors within the cursor?
    Table1 2001 - 2007 data
    Account_no
    Account_eff_dt
    No_account_holder
    Num
    Seq_Num
    Value1
    Value2
    Table2_Historical (doesn't have Num as a field) 1990 - 2000 data
    Account_no
    Account_eff_dt
    No_account_holder
    Seq_Num
    Value1
    Value2
    Table3_06
    Account_no
    Account_eff_dt
    No_account_holder
    Num
    My result table should be:
    Table_result_06
    Account_no
    Account_eff_dt
    No_account_holder
    Num
    Value1_min (the minimum value for the minimum of record_sequence)
    Value2_max (the maximum value for the maximum of record_sequence)
    I have to get data from Table1 and Table2_Historical. If one account was open in 1998 and is still effective, the minimum value of that account is in the Table2_Historical.
    Let's say I open a cursor:
    cursor_first is
    select * from table3_06;
    open csr_first
    loop
    fetch cursor_first into
    v_Account_no
    v_Account_eff_dt
    v_No_account_holder
    v_Num
    EXIT WHEN csr_first%NOTFOUND;
    How can I open a second cursor from here that will get the Seq_Num from Table1
    csr_second
    select Seq_Num from Table1 where
    v_Account_no = Account_no
    v_Account_eff_dt <= Account_eff_dt
    v_No_account_holder=No_account_holder
    v_Num = Num
    How does it works???
    Thanks a lot

    Thanks so much for replying back. Here is what I am trying to do.
    I have to create a table for each year 2002, 2003, 2004, 2005, 2006 that has all the account numbers that are active each year plus some other characteristics.
    Let’s say I will create Table_result_06. This table will have the following fields. The account number, account effective date, Number of the account holder and the field Num (The primary key is a combination of all 4 fields), the beginning look of value 1 in 2006, the last look of value 1 in 2006.
    Table_result_06
    Account_no key
    Account_eff_dt key
    No_account_holder key
    Num key
    Value1_min (the minimum value for the minimum of record_sequence)
    Value2_max (the maximum value for the maximum of record_sequence)
    All the active account numbers with the Account_eff_dt, No_account_holder and Num are in the Table3. As such I can build a query that connects Table3 with table Table1 on all 4 fileds, Account_no, Account_eff_dt, No_account_holder, Num and find the Value1_min for the min of req_sequence in 2006 and Value1_max for the max of req_sequence in 2006. Here my problem starts.
    Table 1 doesn’t have a new entry if nothing has changed in the account. So if this account was open in 1993 and nothing has changed I don’t have an entry in 2006 but this doesn’t mean that this account doesn’t exist in 2006. So to find the minimum value I have to go back in 1993 and find the max and min for that year and that will be max and min in 2006 as well.
    As such I have to go to Table_2 historical and search for min and max. But this table doesn’t have the field NUM and if I match only on the Account_no, Account_eff_dt and No_account_holder I don’t get a unique record.
    So how can I connect all three tables, Table 1 for max and min, if it doesn’t find anything will go to table 2 find the two values and populate Table_result_06.
    Thanks so much again for your hep,

  • How can I create arrays through the same recursive process?

    Hello again!
    I want to create some arrays with names like array1, array2, array3 etc
    through the same for loop.
    Do you know how this can be done? Thanks!
    for (int i = 0; i < 32; i++) {
    byte[] array???=new byte[400];
    }

    I want to create some arrays with names like array1,
    array2, array3 etc
    through the same for loop.
    Do you know how this can be done? Thanks!
    for (int i = 0; i < 32; i++) {
    byte[] array???=new byte[400]; You cannot create new names during runtime (array1, array2 are names).
    You can create a map that associates Strings with byte arrays though:Map<String, byte[]>  map= new HashMap<String, byte[]>();
    for (int i= 0; i < 32; i++)
       map.put("array"+i, new byte[400]);
    // get array associated with array26:
    int j= 26;
    byte[] oneOfTheArrays= map.get("array"+j);kind regards,
    Jos

  • How can i create emca form the operating system

    Hi,
    I am new to java, ran the script and i got the following response.......
    emca -config dbcontrol -repos recreate
    java.lang.IllegalArgumentException: -config
    at oracle.sysman.vto.vtoe.repmgr.Arguments.getOperationCode(Arguments.java:424)
    at oracle.sysman.vto.vtoe.repmgr.Arguments.parseOptions(Arguments.java:212)
    at oracle.sysman.vto.vtoe.repmgr.Arguments.parseArguments(Arguments.java:191)
    at oracle.sysman.vto.vtoe.repmgr.Arguments.<init>(Arguments.java:176)
    at oracle.sysman.vto.vtoe.repmgr.Arguments.<init>(Arguments.java:74)
    at oracle.sysman.vte.repmgr.RepositoryMgrApp.main(RepositoryMgrApp.java:103)
    Exception in thread "main" /apps/app/oracle9/product/9.2.0.1.0/bin >
    Thanks.

    Not so fast,  doesn't mean you're running in 64 bit.
    In short, modern versions of OS X are capable of running 32 and 64 bit executables (apps, command line tools, etc). These executables may be distributed as 'fat' executables which contain the executable to run as a 32 or 64 bit process. OS X offers a duality in this regard, where other OSs are more strict about the binaries they run, load, and build.
    In OS X, you can have a Intel processor which is 64 bit compatible. Your kernel could run in 32 or 64 bit, and your programs could run in 32 or 64 bit. It depends on your configuration and how the programs/extensions/libraries have been built.
    Basically, your confusion comes from the difference between hardware capabilities and the mode of the software you are running which you query. Your processor/hardware is capable of running 64 bit executables, but you have queried the state of an active 32 bit process.
    http://superuser.com/questions/453090/mac-osx-32bit-or-64bit
    When I look in System Profiler, I see 64 bit Intel. But I'm running in 32 bit.
    Message was edited by: WZZZ

  • I have a MacBook and created a slideshow on IPhoto. I made copies (discs) of the slideshow and they did not come out well...how can I create discs with the same quality as the original?

    I created an IPhoto slideshow.... the quality was wonderful on my MacBook and through my projector. I was told to export to my desktop and create copies via IDVD. I did that and the copies are terrible quality. 1. How to I make a copy to look exactly like the original and 2. I do I save as a backup should my Mac crash? Please.... this took a long time to create and I really need help. Thanks!

    Why is there no iDVD on my new Mac? How do I get it and how do I install it?
    https://discussions.apple.com/docs/DOC-3673

  • Avery Template 74549 Is Not In Publisher Or Word.  How Can I Create These Without The Names Being Cut Off The Magins & Printable Areas?

    Publisher Dose Not Have Template For Name Badges As It Says It Should.  Template 74549 Wont Show & My Names R Not Properly Fit To The Squares
    ..  Please Help Me Get The Correct Template !!!

    This is a forum for Adobe InDesign questions. Perhaps there's a Publisher forum you can visit.
    Try Googling for it.

  • How can I create something like the "Report Attribute" screen?

    Hi, all,
    I know this is a little bit vague. If we edit a report, we will see the parent level tab on the top, as "application builder, sql workshop, administration". Right below the tab, we have the breadcrumb. Then second level tab "Region definition, "Region attribute" is under the breadcrumb. This is the interface I'd like to have. The application is using theme 12.
    Thanks for inputs.

    Thanks Vikas. I got the zip file.
    Would you please also take a look at this question?
    Whether it is possible through plsql to change parameters of the chart?
    I only want to adjust the min and max of the built-in SVG chart. Now the min of 'Value' axis always starts with zero, which is soooo inconvenient.

  • How can i create a mask of grays?

    Hi
    i did learn how create a saturation mask (a mask that contains the colors)
    how can i create a mask with the grays ?
    can i do it? how can  i create it ?
    the only way i can thing it's use a color selective adjustament layer and set to +100 black every sliders outside grays
    but i don't think it's a mask with all the Grays
    thanks

    If you start out with, say, this image in Lab:
    Then duplicate the layer and set Blend If, in both the a and b channels, to 123 - 133. That layer will then look like this:
    You see you have all the neutrals from black to white, but not the saturated colors. You can load transparency here as a selection the normal way - ctrl+alt+2, or ctrl-click the L channel. Save the selection and you have your mask.
    How much fuzziness you want in the neutrals is determined by where you set the Blend If sliders. You can also split the sliders with the alt key for a softer transition. Here it includes 5 values either side of strict neutral.

  • How can i create 256 colors (8 bits) jpeg ?

    Dear all :
    The jpeg created by JPEGEncoder was in true color (24 bits) , how can i create or convert the jpeg to 256 colors . Because i want to convert the jpeg to gif in further , but the gifencoder i found can only accept the images that with 256 colors only , so any one can give me a help ? Or the ways that convert a jpeg to gif using java ?

    To reduce the number of colors in an image, try:
    http://www.gurge.com/amd/java/quantize/
    This does a very good job of reducing colors without making the image look too different.
    Further, if you want to encode a GIF file, try using:
    http://www.acme.com/java/software/Acme.JPM.Encoders.GifEncoder.html
    There should be some sample code which shows you how to use those packages on their respective websites. Hope this helps!

  • HT2731 if i i dont have cradit card so how can i creat apple id

    if i i dont have cradit card so how can i creat apple id

    Using the search bar at the top of this page:
    Creating an iTunes Store, App Store, iBookstore ... - Support - Apple

  • How can I create a new Security Domain ?

    Hi everyone,
    I would like to know how can I create an Security Domain other than ISD ?(If my card support multi SD and delegated management)
    I read Global Platform v2.1.1 ,but I don't know how can I create new SD practically(how can I write it's code ,how can I install it and how can I associate an applet to it,...).
    if there is any document or link can help me ,please inform me.
    I'll appreciate for any one if explain it to me step by step.
    yours sincerely.
    Orchid.

    You're right, it is not visible looking at your script, but at the APDU log. /card is an internal JCShell script to do the following:
    cm>  /card
    resetCard with timeout: 0 (ms)First the card is reset. This is analogous with /atr
    --Waiting for card...
    ATR=3B FA 13 00 00 81 31 FE 45 4A 43 4F 50 34 31 56    ;.....1.EJCOP41V
        32 33 31 97                                        231.
    ATR: T=1, FI=1/DI=3 (93clk/etu), N=0, IFSC=254, BWI=4/CWI=5, Hist="JCOP41V231"Then an /identify command is issued.
    => 00 A4 04 00 09 A0 00 00 01 67 41 30 00 FF          .........gA0..
    (163429 nsec)
    <= 09 01 01 29 00 00 00 00 50 48 36 35 30 41 00 00    ...)....PH650A..
        6A 82                                              j.
    Status: File not foundNow the Issuer Security Domain (ISD) is selected. You can do the same sending the JCShell 'select' command.
    => 00 A4 04 00 07 A0 00 00 00 03 00 00 00             .............
    (650082 nsec)
    <= 6F 65 84 08 A0 00 00 00 03 00 00 00 A5 59 9F 65    oe...........Y.e
        01 FF 9F 6E 06 40 51 70 92 29 00 73 4A 06 07 2A    ...n.@Qp.).sJ..*
        86 48 86 FC 6B 01 60 0C 06 0A 2A 86 48 86 FC 6B    .H..k.`...*.H..k
        02 02 01 01 63 09 06 07 2A 86 48 86 FC 6B 03 64    ....c...*.H..k.d
        0B 06 09 2A 86 48 86 FC 6B 04 02 15 65 0B 06 09    ...*.H..k...e...
        2B 85 10 86 48 64 02 01 03 66 0C 06 0A 2B 06 01    +...Hd...f...+..
        04 01 2A 02 6E 01 02 90 00                         ..*.n....
    Status: No ErrorThe answer is the File Control Information (FCI) returned by the ISD. The format is also described in GP.

  • How can I edit my website from another computer? and how can I create a new website next to the one, I have already? Can anyone help, please?

    How can I edit my website from another computer? and how can I create a new website next to the one, I already have? Can anyone help, please?

    Move the domain.sites file from one computer to the other.
    The file is located under User/Library/Application Support/iWeb/domain.sites.  Move this file to the same location on the other computer and double click and iWeb will open it.  Remember, it is your User Library that you want and not your System Library, as you will not find iWeb there.
    Just create a new site on the same domain file and it will appear below the other site.  If you want them side by side then duplicate your domain file and have one site per a domain file and they can then be side by side.

  • How can i create proxy service from another proxy on different domain

    i have a demo webservice. it has many operations on proxy service's message flow. How can i create proxy service from demo's wsdl on different domain
    Edited by: fresh man on Jul 1, 2012 11:17 PM

    You can either export the WSDL in a sbconfig.jar and then import this sbconfig.jar in the new domain. Then you can create a new Proxy in new domain based on the WSDL you imported.
    Alternatively, you can open the WSDL in the old domain, copy the text content of WSDL, then open new domain sbconsole and create a new WSDL type resource and paste the content you copied from old domain WSDL here. Then you can create a new Proxy Service based on this WSDL resource you created.
    Although, may I ask why do you need to create this new Proxy Service on a different domain? If you want to create a service similar to existing Proxy Service on different domain, then you can export the existing proxy service along with any dependencies to a sbconfig.jar and them import them in any other domain.
    If you want your new Proxy Service to invoke the existing Proxy on different domain, then you need to create a Business Service in the new domain (calling domain) which can invoke your existing Proxy service in other domain.

  • How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word.

    How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word in the document. I am teacher. So for example when a student came to word he/she did not know, if he/she hovered the cursor over the word, a defintion or other information would appear.  You can do this in Word using bookmarks/hyperlinks but I can't figure this out in Pages. I can link it to another point in my Pages document but I just need the text to pop up - not take the reader to another location.  THANK YOU!!!!!!

    Have you tried Word for Mac?
    You will need to test if links survive export or printing to .pdf
    Peter

  • How can i create multiple accounts but use the same itunes?

    how can i create multiple accounts but use the same itunes?

    Hi iCloud is Making Me Go Crazy,
    You will need to create a new Apple ID for your GameCenter and iCloud services.  You can continue to use the current Apple ID you share with your Mom for access to iTunes Store purchases if you wish. 
    Using your Apple ID for Apple services
    http://support.apple.com/kb/HT4895
    Frequently asked questions about Apple ID
    http://support.apple.com/kb/HT5622
    Cheers,
    - Judy

Maybe you are looking for

  • Dump in include LSKBHF06 of  SAPLSKBH program while creating dynamic internal table.

    Hello Guys, We are facing a issue and expecting a support to resolve it. Brief Info about the issue: We have developed a code which downloads some specific information from database tables from client's system in excel file. For that we have used bel

  • Weblogic AJP

    Hi, Can we use the Apache's mod_jk to forward the requests and headers to Weblogic? or is that only for Tomcat! WLS version : 9.2 Apache: 2.0.X When I tried, I could not connect to the Weblogic server from Apache and Getting '502 Bad gateway' error P

  • Namespace resolution in jsp:useBean

    If I define an object using <jsp:useBean id="name" scope="application"/>, how can I find it using jsp:useBean in another JSP, if possible?

  • WebDynpro ABAP - issue adding scrollbar to table UI element.

    Hi WebDynPro experts,     i have an requirement where in table UI element in one of my VIEW requires SCROLLBAR to appear.  i did try setting in 'Webdynpro Application' under the parameters tab, new parameter 'WDTABLENAVIGATION' from the F4. However t

  • System log full with udisks-daemon messages after systemd switch

    I'm just wondering if this behavior is normal. I'm not seeing any real issues so far but I've been using systemd only for a few hours. messages.log: Nov 10 17:53:20 larch dbus-daemon[394]: dbus[394]: [system] Activating via systemd: service name='org