When we create a queue how many files get created???

Hi All,
          When we create a resource suppose a queue then how many files get created or modified from that action internally??
          Thanks in advance
          Sumeet

In 8.1, one file: "config.xml"; in 9.0 one or two files (your JMS module file, and potentially the config.xml) .

Similar Messages

  • How many files should be used to make 1 website?

    This is a relatively simple begininner question, but my begininner tutorials have lead me astray and confused me a bit.
    (I did katie's cafe tutorial and it has an Embed file, a Master Page file, a Visit Page file, a Widgets file, and a Publish file)
    I was just wondering how many files I should include for my website. It seems like I will only need one.
    Say I have 5 pages on my site, do I need 5 different files? or May I just edit all the pages on 1 adobe-muse file, and when it uploads via FTP it will create the seperate pages for me.
    Thanks
    Ben

    Hello Ben,
    You're correct in thinking that you need only one file for your site with 5 pages, and that you don't need 5 files for 5 pages.
    Hope this helps.
    Cheers
    Parikshit

  • Lion is beautiful, but where is info in window about size, how many files, etc.?

    I love Lion, but the windows, when I open a folder or drive, do not contain the info at the bottom to tell how many files, how much space is left, etc.
    Has this been eliminated from Lion? Is there a setting I need to access to see information like that in the window that way it has been on Macs for the last 32 years?

    Good there a people who know what is going on.
    Sincere thanks to you both.
    Ken

  • How many tables are created in Master data loading ( Including hierchy )

    hi ,
    Please anybody , can you tell us how many tables are created in Master data loading ( Including hierchy )
    thanks
    Phani

    Hi PP,
    Depending upon the definition of an infoobject, the tables are created when the objects are activated.
    /BI<C OR DIGIT>/<TABLE CODE><INFOOBJECT>
    <C or digit>: C = Customer-defined InfoObjects
    digit = SAP-defined InfoObjects
    <table code>: S = SID table
    T = Text table
    P = Time-independent master data attributes
    Q = Time-dependent master data attributes
    M = Union of time-dependent and time-independent master
    data attributes
    X = SID table for time-independent navigational attributes
    Y = SID table for time-dependent navigational attributes
    H = Hierarchy table
    K = Hierarchy SID table
    I = Hierarchy SID structure table
    J = Hierarchy interval table
    Thnaks...
    Shambhu

  • How many String are created?

    public String makinStrings() {
         String s = �Fred�;
         s = s + �47�;
         s = s.substring(2, 5);
         s = s.toUpperCase();
         return s.toString();
    }How many objects are created when this method is called?
    My answer is 5
    1. "Fred"
    2. "47"
    3. "Fred47"
    4. "ed4"
    5. "ED4"
    But my friend is telling it is 3.
    1. "Fred"
    2. "47"
    3. "Fred47"
    I know that any method called on String object creates a brand new String. Please help me with the solution whether it is 3 or 5.

    hi,
    First of all i want to thanks for all of your replies.
    My friend is saying that when we say "How many objects when method is invoked" it means at runtime. String literals are not created at run time.
    String s = �Fred�; // No object is creatd here
    s = s + �47�; // One object created "s"
    s = s.substring(2, 5); //Another object "s"
    s = s.toUpperCase(); //Another object "s"
    return s.toString();
    Hence total 3 objects.
    Now the i have got a doubt. Are String literals created at Complie time itself. Or since String s = "Fred" is a compile time constant field. And String literal "47" is also a compile time constant field.
    Suppose if the code is like this
    String s = new String("Fred")
    String s1 = s; ---------------- Then is this String object created at Run time.
    String s2 = "47" ----------- This object is created at Complie time.
    Please clarify my doubt.

  • How many objects are created?

    I have this question which some one posted to me.
    He asked me how many objects are created when an object of a simple class is created for example
    class A{
    public static void main(String args[])
    A a1 = new A();
    Now how many objects are created? I think only one. Can anyone tell me if any other objects are also created.
    Plz tell me .

    No, the answer is indeed 1. All the other objects
    (including the String[] in the main method
    parameters) are created outside of the A
    class, either by the JVM itself or by some other
    class that calls the A.main() method. You can try
    this out for yourself by adding a constructor such as
    A()
    System.out.println("Creating class A");
    } and see what prints out.Take a closer look at the question:
    how many objects are created when an object of a
    simple class is created for exampleIt doesn't say "how many objects of type A are created".
    I.e. The VM has to load class A before you can create an object from it, and thus an object of type Class is created. There are also a bunch of other objects which needs to be created before you can instantiate A.
    Kaj

  • How do I find out how many files I have, as an earlier version of iTunes told you at the bottom of the screen. Can you please help me.

    How do I find out how many files I have, as an earlier version of iTunes told you at the bottom of the screen.
    Can anyone please help me with this so I know how many music files or video files I have in my collection.

    Have a look here...
    http://osxdaily.com/2012/11/29/5-tips-make-itunes-look-normal/

  • How to find how many sto's Created in One plant

    Dear
    how to find how many sto's Created in One plant
    ex: i have 5 plants now i want to check how many sto's done

    Hi,
    Please check in table EKKO for supplying plant against STO document
    EKPO against Receving plant
    WB2_V_EKKO_EKPO2 - You can pass both supplying plant as well as receving plant.
    Regards,
    Haresh

  • How many dimensions can create in BPC

    Hi friends
    How many Dimension can create in Dimension Library in BPC NW
    Lion

    Hi Surender,
    You have any no. of Dimensions in Dimension library.
    In a BPC Application the mandatory Dimensions are Account, Category, Entity and TIme.
    In an Appset you should have Intercompany Dimesion.
    The other are D - Datasource dimension and User defined Dimensions.
    Regards,
    Raghu

  • How many Objects are created in this?

    Hi,
    How many objects are created in the flwg code:
    String str = new String("Hello");
    String str2 = "Hey there";
    str = str + str2;

    Depends if you're counting objects created at compile time.
    "Hello" is created at compile time. That's 1.
    new String("Hello") creates a new String object at runtime, pointing its backing array at the "Hello" in the constant pool. That's 2.
    "Hey there" is created at compile time. 3.
    str + str2 I might do everything at compile time, or it might do some at runtime. I don't know if str is considered a compile time literal here. I think not, but I'm not sure. You can check by using javap. If I'm correct, then at runtime you'll create a StringBuffer (4) and another String (5).
    So I'd say 5 objects. But if the compiler treats str as a literal and therefore can do the str+str2 at compile time, then it might do so without creating the StringBuffer. Or it might still create it at compile time, use it, and throw it out.

  • How many sessions are created in Server ?

    Hi All developers,
    SCJP back again.........
    Anybody please tell me......
    Is there any way to find out how many sessions are created in server ?
    Thanks in advance ..............

    Only by keeping track of them yourself.
    The various session listeners - SessionListener, SessionBindingListener are usefule here.

  • My younger brother has disabled his i phone and it doesnt say try again in so many minutes it says connect to itunes when i do it never seems to work when i restore and update how do i get past this?

    my younger brother has disabled his i phone and it doesnt say try again in so many minutes it says connect to itunes when i do it never seems to work when i restore and update how do i get past this?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen        
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • Is there a limit to how many files bridge can view at one time?

    Our company works with high volumes of images and we would like to use Bridge to organize, search, and view these images prior to working on them in Adobe Photoshop/Premiere ETC..  Is there a limit to how many files that Bridge can handle at one time?  We have hundreds of thousands of videos and photos.

    Many have found that using more then 5000 files per folder can slow down performance but this depends on system resources (fast processor and much RAM). However Video is not always the strongest point of Bridge as it seems due to some other posts.
    And since you talk about a company, you have to be aware that Bridge is not designed nor official supported for use over a network. A dedicated DAM like Canto Cumulus or Portfolio Server might be more suitable for this tasks but they also come with a price I'm afraid.

  • How many hash partitions create is prefer

    I want to create hash partitions on a large table,but i don't know how many partitions to create?
    create table T_PARTITION_HASH
      ID   NUMBER,
      NAME VARCHAR2(50)
    partition by hash (ID)
      partition T_HASH_P1
        tablespace USERS,
      partition T_HASH_P2
        tablespace USERS,
      partition T_HASH_P3
        tablespace USERS
    );

    Agustin UN wrote:
    What is the table size in rows and Mb?
    What is the grow estimated of table?
    What access is on table?
    . :-) Any help with my english will be welcome :-).the table contain about 1 hundred million rows.
    the table grows 1000000 rows per day.
    the table is use for statistical analysis in data wasehouse.
    Edited by: user7244870 on Nov 5, 2010 2:22 AM

  • How many ways to create servlets

    Hi
    i have some confusion. how many ways to create servlets.
    as of my knowledge 3 ways 1) implementing Servlet 2) extending GenericServlet 3) extending HttpServlets.
    can any one tell me this is correct or not.

    The only correct way (IMHO) to declare a Servlet is to implement Servlet... Extending GenericServlet or HttpServlet has (almost) the same effect it's not self documentingIf it's an HTTP servlet the only correct way is to extend HttpServlet, unless you really want to reinvent the wheel. You can add 'implements Servlet' if you insist but it is entirely redundant. The Javadoc will be the same in either case.
    In other words I don't know what this poster is talking about.

Maybe you are looking for

  • How can i tell if something was shared using airdrop

    I found a picture on my camera roll that I do not remember taking.  Is there a way to tell if this was shared with someone using AirDrop on my iPhone 5s?  Someone else had access to my phone and I want to see if it was shared with anyone.

  • Multiple CFFORMs in a page w/ binding CFSELECTS

    Howdy all. I have a page that has two CFFORMs, each uniquely named (form1 & form2 for example). Each form is essentially the same - each one has a cfselect with States pulled from a common query and also has a bound cfselect that shows the Area Codes

  • APP-PER-74450 The mobile number is invalid.  It's length must be between 10

    Hi, We have upgraded 12.0.4 to 12.1.3. After upgrade during HR testing, Contact Number for employee does not allow for special characters like '+' . Showing error message "APP-PER-74450 The mobile number is invalid. It's length must be between 10". T

  • MM_validateForm errors in Firefox

    Hi, I have a website that uses the MM_validateForm script from Dreamweaver. It would seem that it is working fine to validate all the fields, except for the email input field. In IE it ignore it completely (you can submit the form without filling in

  • Update sky go for windows 10 and for microsoft edge

    Hi please use a different software for the video in sky go web since silverlight was discontinued and wont be avalible in microsoft edge i carnt even use silverlight now. please change to html 5 like netflix did. and resolve issue when microsoft keep