How to know the OS block size ?

Hi all
I want to know how to get the OS block size of my server ?
For example if my server is Windows 2000 Professionnal , how can I get the size of my OS block size ?
Thank you

One way to find is to right click the drive in Windows Explorer and click Format (Not actually formatting it).
In the popup window, you would see the "Allocation unit size" for the selected drive. Click "Close" to exit when done.

Similar Messages

  • How to know the "minimum panel size" property

    I want to know the "Minimum Panel Size" specified in the "VI properties" by programming. It's very important to get this information, because my panel size changes over the execution and I need the minimum panel size available. I can’t use the panel bound property because it return me the actual size of the panel.
    Any idea?
    Thanks for your help.
    Solved!
    Go to Solution.

    There is no property to directly return the minimum panel size that you set.
    You can however trick it into giving it to you. Since you can't use the "Panel Bounds" property to make a window smaller than it's set minimum, You can try to set it to 0,0 size, then read the size and subtract the left from right and top from bottom to get the size. The panel will actually resize to the minimum, but will return an error if you try to go below that.
    The attached VI shows this working. I only tried this 7.1, so if you have an earlier version, let me know and I'll save it back.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.
    Attachments:
    Get minimum panel size setting.vi ‏40 KB

  • How to Calculate the Database block size??

    Can someone please tell me how during the Oracle Installation does one calculate the db_dblock_size. Thank u

    One way to find is to right click the drive in Windows Explorer and click Format (Not actually formatting it).
    In the popup window, you would see the "Allocation unit size" for the selected drive. Click "Close" to exit when done.

  • How to know the size of a DATABASE ?

    Guys,
    How to know the size of a DB ?
    Also
    How to know the size of a TABLE ?
    How to get the content of a procedure/view/trigger ?
    Inputs are welcome !

    How to know the size of a DB ?If you want to know the physical size, query dba_data_files + dba_temp_files. if you need to know the actual consumed space in those files, compute sum of bytes from DBA_SEGMENTS.
    How to know the size of a TABLE ?Query all/dba/user_segments.
    How to get the content of a procedure/view/trigger ?all/dba/user_source, all/dba/user_views, all/dba/user_triggers.
    Message was edited by:
    Satish Kandi

  • How to know the payload size of message

    hi can anybody tell me how to know the payload size of message?
    Message was edited by:
            vvr murty

    Hi,
    To know the size of the input message , i hope we have one option , after copying the test payload from the SXMB_MONI into Message mapping test -- click on test
    after come back to design tab in message mappign
    click on left side root node and Press CTRL+SHIFT + mouse right click and click on trace -- you can see the size of the message payload.
    In SXMB_MONI..
    see the payload messges
    also see the below link
    /people/michal.krawczyk2/blog/2005/09/16/xi-how-to-test-your-mapping-in-real-life-scenarios
    Regards
    Chilla

  • How to know the correct size of an image?

    hello, a thing ive never got a satisfying anwer on:
    how can i know the REAL image size of an image?
    1.
    image 1a: this is the size i see in the photoshop window
    1b: (why by the way is there 2 sizes?)
    2. image 2: the size i see in windows/my documents.
    same image, big differenct (8mb <--> 49mb)
    which one is correct?
    image 1: size in photoshop window
    image 2: size in windows/my documents

    Don't feel bad; there are more "size" indications than you'd think you need, but they're all useful for some things.  And there are some interrelationships.
    Size indications you might find:
    The size in "megabytes" of the image document in your computer's RAM (the first of the two numbers in your first image). This is helpful for getting an idea of how many resources in your computer the process of editing a particular document is taking. This number can grow to much larger than the second number, for example, if you have a lot of layers in your document that Photoshop has to maintain separately in RAM.  This size number will be reflected in the ultimate file sizes on disk when you save master documents (e.g., PSD) in which you maintain all the layers and other information used by Photoshop.
    The size in "megabytes" of a flattened TIFF on disk (the second of the two numbers you showed in your first image above).  This was a quick defacto shorthand developed by early people doing film scanning that described how many bytes on disk a flattened, uncompressed 8 bits/channel TIFF file would take.  It is always 3x the size of the image in megapixels, because it's the number of horizontal pixels multiplied by the number of vertical pixels multiplied by 3 colors per pixel (red, green, blue).  This usage of "megabytes" is often confused with the size a file actually does take on RAM or on disk, but they can be very different depending on file formats.
    The size on disk of the actual file you saved, as listed by Windows Explorer.  Since you did NOT save the image as a flattened, uncompressed 8 bit TIFF file, but probably as a PSD or JPEG file, each of which embody data compression, the file actually saved on your disk ended up smaller than the projected TIFF file size.  The amount of compression usually differs depending on the image content, so you might find this size varying.  The file size on disk is what will be important to web publishers.
    For what it's worth, I prefer to think primarily of the size of an image document in pixels (horizontal x vertical).
    I always keep my mind on the pixel count while editing. Then, when I'm preparing to use the image for a specific purpose, I think in terms of output size.
    Photoshop's Image - Image Size... dialog is where you set sizes. If you choose to resample, you change the pixel count. This can be appropriate for downsampling an image in preparation for web publishing, where you want the image to be a certain size on a screen. If you don't resample, you are changing metadata kept in the document that instructs Photoshop how large you want a print.  The size of an image in pixels DOES affect the size on disk, and the File - Save process for some formats (e.g., JPEG) puts up a dialog to allow you to choose a compression quality level, which additionally affects the size on disk.
    Hope this helps illuminate what you're seeing a little.
    -Noel

  • How to know the size of a webservice request

    Hello...
    I'd like to know if you know how do I get the size of a Web request? I mean, I need to know the size of a Web Request 'cause I'll fill a Gauge Object up based on the quantity that I have received from the WebService.
    I'm using the KSOAP and KXML API's for consuming that WebServices and I used the Content-lengh Method and it didnt return anything to me... it returned empty. So, do you know how do I fill a Gauge Object based on the size of the WebRequest? Could you tell me some examples plz?
    Thanx...
    Lucas Abrao

    How to know the size of a DB ?If you want to know the physical size, query dba_data_files + dba_temp_files. if you need to know the actual consumed space in those files, compute sum of bytes from DBA_SEGMENTS.
    How to know the size of a TABLE ?Query all/dba/user_segments.
    How to get the content of a procedure/view/trigger ?all/dba/user_source, all/dba/user_views, all/dba/user_triggers.
    Message was edited by:
    Satish Kandi

  • How to know the size (GB) of an ECC client?

    For R/3 seems there was no way to know the client's size in terms of GB.
    It's said that in ECC6.0 it is possible.
    If so, would you please inform us the way to do it?
    Thanks!

    Hi,
    Do the test run of the local client copy or else u can run the report RSSPACECHECK.
    Take a look at note 118823.
    Also u can Create one new client. Perform the test client copy with the client whose size you want to know.
    Hope this helps more.
    Thanks
    Ruchika

  • How should be set Index block size in Warehouse databases?

    Hi,
    We have Warehouse database.
    I cannot find out index block size.
    1. Where can I get know our index block sizes?
    2. How can I enlarge index block sizes? Is it related with tablespace?
    After your suggestion do I need increase or set buffer cache keep pool according to block sizes? 2K, 4K, 8K, 16K and 32K can be specified?
    could you help me please?
    thanks and regards,

    See the BLOCK_SIZE column in DBA_TABLESPACES.
    You can't "increase" the block size. You'd have
    a) to allocate DB_xK_cache_size for the new "x"K block size
    b) create a new tablespace explicitly specifying the block size in the CREATE TABLESPACE command
    c) rebuild your indexes into the new tablespace.
    Indexes created in a tablespace with a larger block size have more entries in each block.
    You may get better performance.
    You may get worse performance.
    You may see no difference in performance.
    You may encounter bugs.
    "increasing block size" is an option to be evaluated and tested thoroughly. It is not, per se, a solution.
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • How to calculate the shared pool size ..........

    Does anyone know if there is a decent algorithm/method to calculate the shared pool size in Oracle 8.1.7.

    look my answer on your thread about db cache size
    How to Calculate the DB Block Buffer value.

  • How to change the default window size display font size on Lync 2013 main window?

    Hi champs,
    Just a simple non-technical question: How to change the default window size display font size on Lync 2013 main window on Windows 7 desktop?
    Thanks,

    Hi,
    Did you mean change the Lync: Change the Default Font and Color of Instant Messages just as Edwin said above?
    If not, as I know, there is no natural way to change it.
    If yes, on the latest version of Lync 2013 client, there is a new option “IM” on Lync client “Options” list. And you need to change the default Font and Color of IM in the interface of “IM”.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • How to change the picture frame size in Lightroom 5 Book

    I would like to control the actual picture frame size when making a Book in Lightroom 5. Or else know the sizes of the different picture frames provided by choosing the different page layouts. That way I can either change the picture frame dimensions to accomodate each photo or change the image size to fit in the offered picture frame. I find that using the software as is winds up cropping the images in unwanted ways. Modifying the picture frame would be my preferred alternative. Appreciate any ideas

    Hi again Tony,
                I have been using Adobe Photoshop 7, Photoshop Elements, Perfect Photo Suite, Photo Studio, etc., changing Image size, placing a picture on a page and then, do a simple last minute size adjustment by using the arrows to stretch or shrink it in place. Things would be a lot simpler if I could do the same thing with the cells in Lightroom 5. Cell pad adjustments do not fill the bill.
    I think we’ve pretty much concluded this exchange. Thanks again for your effort.
        david
    ay [email protected]
    Sent: Wednesday, March 12, 2014 11:27 PM
    To: dgbrow
    Subject: How to change the picture frame size in Lightroom 5 Book
    Re: How to change the picture frame size in Lightroom 5 Book
    created by Tony Jay <http://forums.adobe.com/people/Tony+Jay>  in Photoshop Lightroom - View the full discussion <http://forums.adobe.com/message/6205206#6205206

  • How to know the status of concurrent program from back-end in oracle apps

    Hi,
    Can you please explain me step by step how to know the status of the concurrent program from back end in oracle apps.
    Thanks,
    Raj

    When a record is being updated by a form, if you create a Pre-Update trigger on the block, the trigger will run for each record being updated.
    Same thing happens with a Pre-Insert and Pre-Delete trigger.

  • How to calculate the HFM Cube size in SQL Server-2005

    Hi
    How to calculate the HFM Cube size in SQL Server-2005 ?
    Below query used for Oracle. Then what is query for SQL Server?
    SQL> select sum(bytes/1024/1024) from dba_segments where segment_name like 'FINANCIAL_%' and owner='HFM';
    SUM(BYTES/1024/1024)
    SQL> select sum(bytes/1024/1024) from dba_segments where segment_name like 'HSV FINANCIAL%' and owner='HFM';
    SUM(BYTES/1024/1024)
    Regards
    Smilee

    What is your objective? The subcube in HFM is a concept which applies to the application tier - not so much to the database tier. The size of the subcube is the unique number of data strips (data values for January - December inclusive, for example) for the given entity, currency triplet or Parent.Child node. You have to account for parent accounts and customs which don't exist in the database but are generated in RAM in the application tier.
    So, if your objective is to find the largest subcubes, you could do this by querying the database and counting the number of records per entity/value (DCE tables) or parent.child entity combination (DCN tables). I'm not versed in SQL, but I think the script below would just tell you the schema size and not the subcube sizes.
    Check out Accelatis.com for a third party software product that can do this for you. The feature is called the Subcube Analyzer and was written by the same team that wrote HFM, so they ought to know how this works :-)
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • I have one file ss_fpga.rbt,abcd.txt how to know the details of the file

    i have  one file  ss_fpga.rbt,abcd.txt how to know  the details  of the file  (when was the date created ,when was date modfied,owner) any function is there like   GetFileInfo

    Yes there is some, called stat(), look the links in your post in stack overflow, there is a lot of link in the anser.
    They talk about sys/stat.h a C header, witch contain the stat() function.
    stat() return a lot of things (size, changes, access etc) about files. look the "here" everywhere in the Yann anser, UP his anser and put the subject as resolved.
    Thanks,

Maybe you are looking for

  • EDIT field in ALV GRID and on SAVE it has to update the DB Table

    Hi Experts, I have searched lot of forums... But i had not got the exact solution for this... I have multiple records that displayed in the ALV output screen and i had modified more than one record and then click on save. It has to modify all the lin

  • Connection Problems G5 Internal Airport Card

    Hello, I just bought a Quad G5 and seperately an Airport Extreme Card to go inside so that I can connect wirelessly to the internet. The card is being recognized by the computer, but I'm getting no signals... and usually with my laptop I'll get not o

  • Confused - how to get my 10gR2 SE safe in terms of standyby or failover?

    Hello and thank you for your attention! I set up some 10g Databases in our sites, all ist working fine. Since we only registered all versions as standard edition licences, I learned, that the data guard feature is not available but in enterprise vers

  • GetQuery within UIX

    I can get what my where clause is set to by executing the following: <invoke method="getWhereClause" javaType="oracle.jbo.ViewObject" instance="${bindings.Datadescription.viewObject}" result="${sessionScope.MyWhereClause}" /> I would like to get the

  • Time machine deleted all my HD files

    Hey, So im pretty new to mac so bare with me.. I have a 2TB hard drive that i used to store my files from my PC and when i plugged it into my mac for the first time it asked me if i wanted it to be used for my time machine. Thinking that it would jus