How to divide the partitions in AIX 5L

Hi Guru's
Friends i am installing AIX 5L, How to divide the partitions in AIX5L
please tell me if anybody know.
Thanks

What kind of partitions do you mean? Do you mean logical partitions?
Message was edited by:
Ivan Kartik

Similar Messages

  • Who knows: How to divide the request.getInputStream()?

    I use a form in a web page to update files, the form code is
    <form action="/Mywork/servlet/fileupdate1" method="post" enctype="multipart/form-data">
    <p>
    Please select a file1 to upload: <input type="file" name="foo">
    </p>
    <p>
    Please select a file2 to upload:<input type="file" name="foo1">
    </p>
    <input type="submit" value="Upload File!">
    </form>
    and the "fileupdate1" servlet which the "action" in the form tag refers to will get the inputstream by
    "ServletInputStream servIn = request.getInputStream();", and create new OutputFileStream in the disk. But
    new files which the servlet stored always have some additional codes "
    -----------------------------7d419320202be
    Content-Disposition: form-data; name="foo"; filename="H:\Documents and
    Settings\administrator\desktop\ee.java"
    Content-Type: application/octet-stream
    If I updating two files, each file will has these kinds of codes and the two files only have one inputstream. I don't
    how to remove these additional codes and how to divide the stream into pieces according to the updated-file-size.
    I don't know wether I say it clearly?And
    does anyone know the reasons and can help me?
    Thank you very much.

    Use something like Jakarta Commons FileUpload to process the multipart/form-data request:
    http://jakarta.apache.org/commons/fileupload/

  • How to divide the request.getInputStream()?

    I use a form in a web page to update files, the form code is
    <form action="/Mywork/servlet/fileupdate1" method="post" enctype="multipart/form-data">
    <p>
    Please select a file1 to upload: <input type="file" name="foo">
    </p>
    <p>
    Please select a file2 to upload:<input type="file" name="foo1">
    </p>
    <input type="submit" value="Upload File!">
    </form>
    and the "fileupdate1" servlet which the "action" in the form tag refers to will get the inputstream by
    "ServletInputStream servIn = request.getInputStream();", and create new OutputFileStream in the disk. But
    new files which the servlet stored always have some additional codes "
    -----------------------------7d419320202be
    Content-Disposition: form-data; name="foo"; filename="H:\Documents and
    Settings\administrator\desktop\ee.java"
    Content-Type: application/octet-stream
    If I updating two files, each file will has these kinds of codes and the two files only have one inputstream. I don't
    how to remove these additional codes and how to divide the stream into pieces according to the updated-file-size.
    I don't know wether I say it clearly?And
    does anyone know the reasons and can help me?
    Thank you very much.

    Well, if you know the format, you'd know that the file data starts after the first blank line (\r\n\r\n).
    But why don't you just use Jakarta Commons File Upload or some other existing free package to handle multipart forms and save yourself the trouble.

  • How to divide the CRM transaction data by company cord?

    How to divide the CRM transaction data by company cord?
    CRM transaction have not company cord, so how to divide the data on BI report by company cord?
    Do I have to get the sales organization from customer master?
    Some transactions have not master data like lead. I want to know your experience.

    Hi
    This is self reply.
    I should use the sales organization instead of company cord.
    But some business like lead from contact from customer can not separate the company, in situation one call center for multiple companies.
    We should use another field to divide the company. Ex. Product, campaign, etc.
    If someone knows better way to solve this issue, let me know the reply.
    Regard
    u1

  • How to divide the iview into frames?

    Hi Experts,
                  Please tell me how to divide the iview into frames.Kindly provide the   steps.Its urgent.
    Regards,
    Nutan

    Hi Nutan,
    Now its clear!!
    If I understand right. You want an overview page full of links to go to your different pages?
    Or maybe you want a link form each page to go to another page?
    In Portal Navigation through hyperlinks is possible.
    You can either do that using EPCM.doNavigate("ROLES://...") {check for EPCM API of help.spa.com}
    Or you could do that by simple
    <a href="http://www.sdn.sap.com/irj/portal/myql">CLICK</a>
    {check for Quicklinks on help.sap.com}
    Either way you'll have to make a small JSP for that.
    Hope this helped
    If so kindly reward with points
    Prem

  • How to find the partition

    Guys,
    Please can you tell me how to find the partition name from the table for say today ("SYSDATE") assuming that the table is partitioned by Date ( monthly )
    ie,
    I need to find the partition belonging to the current month, on which i am working
    Thanks
    G

    Based on martina's suggestion (can be of course improved, maxvalue should be handled as well):
    SQL> create table p(id number,time_stamp date)
      2  partition by range(time_stamp)
      3  (
      4   partition p1 values less than(date '2007-10-01'),
      5   partition p2 values less than(date '2007-11-01'),
      6   partition p3 values less than(date '2007-12-01'),
      7   partition p4 values less than(date '2008-01-01'),
      8   partition p5 values less than(date '2008-02-01'),
      9   partition p6 values less than(date '2008-03-01')
    10  )
    11  /
    Table created.
    SQL> create or replace function date_from_long(p_tabname  varchar2,
      2                                            p_partname varchar2)
      3    return date is
      4    l_long long;
      5    l_date date;
      6  begin
      7    select high_value
      8      into l_long
      9      from user_tab_partitions
    10     where table_name = p_tabname
    11       and partition_name = p_partname;
    12    if substr(l_long, 1, 7) = 'TO_DATE' then
    13      execute immediate 'select ' || l_long || ' from dual'
    14        into l_date;
    15      return l_date;
    16    else
    17      return null;
    18    end if;
    19  end;
    20  /
    Function created.
    SQL> select table_name,partition_name,
      2  date_from_long(table_name,partition_name) high_value
      3  from user_tab_partitions
      4  where table_name='P'
      5  order by 3
      6  /
    TABLE_NAME                     PARTITION_NAME                 HIGH_VALUE
    P                              P1                             01.10.2007 00:00:00
    P                              P2                             01.11.2007 00:00:00
    P                              P3                             01.12.2007 00:00:00
    P                              P4                             01.01.2008 00:00:00
    P                              P5                             01.02.2008 00:00:00
    P                              P6                             01.03.2008 00:00:00
    6 rows selected.
    SQL> select
      2  max(partition_name)
      3  keep
      4  (dense_rank first order by date_from_long(table_name,partition_name)) part_name
      5  from user_tab_partitions
      6  where table_name='P' and date_from_long(table_name,partition_name)>=sysdate
      7  /
    PART_NAME
    P2Best regards
    Maxim

  • Due to reinstallation of mac 2nd partition is nt showing how to recover the partition and data

    Due to reinstallation of mac 2nd partition is nt showing how to recover the partition and data

    If you have no backup your only option is to perform incomplete recovery (point-in-time recovery) to the time just before the drop, export the table and then restore the database (for example, from a cold backup taken just before the incomplete recovery,) and import the table. This obviously requires a full backup
    taken before the drop which you don't seem to have, so the answer is "regrettably no."
    If you have a backup;
    Take backup of ur current db, apply previous day backup, do point in time recovery to get table back,export table, shutdown and apply latest backup, import table back
    Regards,

  • How to make the Partition on my laptop hard disc

    Dear Sir
     I purchased new HP lap top, I would like to partition on my hard disc.
    Please give me the suggestion for how to take the back up for my new laptop its necessary or not  and how to create  the partition on my hard disc System information
    i5 second generation
    Windows dome premium 64 bit
    Hard disc size 640gb
    4gb ram
    Thanks and Regards
    Sathish

    Perfect Solution to Problem:
    Precautions:
    1.Create your recovery DVD's from recovery partition before proceding, or order them from hp so as in case of any error or in worst case system can be set to factory restore.
    2.BACK UP YOUR DATA.
    3.FOLLOW ON YOUR OWN RISK , NO RESPONSIBILTY FOR DATA LOSS , SYSTEM CRASH, OR LOSS OF RECOVERY PARTITION.
    4.Hopefully you have read this , if any consequences arises take it on your part , nothing to do with it, you can leave the rest of reding part if not ready,
    THANKS FOR READING........
    OOP'S you are here,,,,,,,,,then lets continue at your risk..........
    Statement:
    You are using this guide at your own risk. I don't take any responsibility for any problems.
    Important informations !
    Before you will do anything please create a set of recovery discs and back up all important data.
    Both these steps will save you a lot of troubles if something will go wrong.
                Resource:
             From experience
    Remember that if you will decide to use the recovery discs or the F11 option to restore the PC to its originalcondition, all partitions which were created by you will be lost and all the data which were stored on them willalso be lost.
    Introduction:
    Below screenshot shows pre-configured partitions on HP notebook with pre-loaded Windows 7.
    As you see mounted HDD has four primary partitions:
    C - partiton with the operating system.
    HP_TOOLS - partition which allow to use diagnostic tools after pressing F2 on startup.
    RECOVERY - partiton which allows to recover system by pressing F11 on startup.
    SYSTEM - active partition which boots the operating system. 
    Here begins our problem. A standard partition table is only able to store information about four partitions.
    This means that a hard disk could have a maximum of four partitions. The four standard partitions are oftencalled the primary partitions.
    To deal with this limitation we may:
    ----> Delete hp tools partiton , and create new logical partion, BUT RECOVERY MEDIA SET HAVE BEENCREATED BEFORE......
    PROCESS:
    Note:
    Please perform each operation individually.
    Using several operations at one time may end with fatal error.
    1.Hope you have your recovery media , recovery media dvd set and DRIVER DVD,if not then please get it first for safety..
    2. Download and install MiniTool Partition Wizard Home Edition.
    3.Please back all of your data on HARDDISK before proceding.......
    4.Go to START> COMPUTER > RIGHT CLICK ON IT > MANAGE
    5.A window opens, select disk management from it , given on left hand side....
    6.It will display your harddisk partitions as displayed in image.....carefully locate HP_TOOLS Partition in given table.....
    7.Right click on HP_TOOLS Partition and Delete it.........it will prompt for response say yes.........
    8.Now must have left with 3 partitons.........HP_TOOLS have been deleted...
    9.Now action time...........
    10.Start Minitool Partition wizard.......it will diaplay your partitons.........select C: partition......right click on it .....select option move/resize...
    11.New dialog box appears displays currents stats use the drag corners on top to reduce size for C: drive ......set the new size according to use..........But new size must not be less than 150 gb to avoid any data loss.....
    12.leave rest of options intact.........click ok...........this will return you to minitool partiton wizrd home screen........click on apply at leftmost top corner..........it asks for permission say yes........then it displays that drive is in use you need to restart............
    13.Click on Restart Computer........
    14.Your Computer will restart in Mini tool partition boot mode dont press any key...........after loading it will start processing and shrinking............then copying data...........it will restart automatically after progress is done 100%..........be patient.........it takes upto 5-10 mins......
    15.If every thing goes fine your computer will start normally.........then go to START> COMPUTER > RIGHT CLICK ON IT > MANAGE
    16. New window opens, select disk management from it , given on left hand side....now you can see your C: partition has been reduced in size according to your size specified...........and unallocated space have been created along by C: partion.
    17. Finally right click on unallocated space and select NEW SIMPLE VOLUME......a dialog box appers specify size to create a new logical partition...........you may create any number of logical drives till there is free space left...........
    18.Now open My Computer ...........you can see your new custom partitions have been created........
    19. Done.........enjoy.......
    SUPPLEMENTARY:-
    1. You can create any image creation tool......to create image of your C: Partiton and save image in yourcustom created partitons.......
    2. In future if you want to recover system,,,,,you may use your created image using imaging software forrestoring your C: partiton......may be helpfull instead of running recovery.........
    Drawbacks:
    Running Recovery form DVD or recovery partiton may delete your custom created partitons...........all datamay be lost.....so regularly backup your data.....
    RESOURCES:
    http://h30434.www3.hp.com/t5/Other-Notebook-PC-Questions/How-to-repartition-HDD-of-HP-notebook-with-...
    FROM EXPERIENCE
    ADVICE:
    USE IMAGE CREATION SOFT FOR CREATING SYSEM IMAGES AND RESTORE SYSTEM FROMTHEM.........WILL HELP SAVING YOUR CUSTOM PARTITONS...........
    WARNING:
    ALL INFO IS FROM BEST OF MY KNOWLEDGE,,,,,,,,,,BUT TAKE NO RESPONSIBILTY FOR DATALOSS,,
    SYSTEM CRASH,, OR VIOLATION OF WARRANTY...........
    After you delete HP_TOOLS partition, BEWARE about one thing: do you have something called HP support assistant in your laptop? if yes, beware when it wants to upgrade HP software, because it will make HP_TOOLS partition reappear without your permission!!
    (u may ask for any further any queries,,,,,wll b hppy to help)
    Your Support:
    ACCEPT IT AS SOLUTION,,,REFER TO OTHER,,, AND CLICK ON KUDOS!!!!!!!!!!!
    THANKS,,,,,,,,,(SRY FOR BAD ENGLISH)
    ,,,,,,,Clicking the White Kudos star on the left is a way to say Thanks!,,,,,,,,
    ////////Clicking Accept as Solution on a Reply that solves your issue helps others who are searching///////

  • How should I divide the partitions on the Boot Camp

    Hello,
    I have a HD with 465GB. When installing the Boot Camp, how much memory should I give to Windows? Can I change the partitions later?
    Thank you very much!

    Hi Livia and welcome to Discussions,
    how much disk space you assign to BootCamp Windows depends on a variety of things:
    First: what Windows do you want to install, XP; Vista; Windows 7 ?
    Second: what Windows programs do you intend to use ?
    Third: how much disk space do the files/data of these programs need ?
    As a basic guideline:
    A Windows XP with the Service Pack 3 alone takes about 10GB of disk space plus some 'space to breathe' and you are at about 15GB.
    Windows Vista and 7 needs about 3 times this space, so roughly 45GB.
    Add to that the amount of disk space needed by the programs you wanna run plus the disk space the files/data you are working with need.
    While it is possible to change/expand the Windows partition later, it is not something you want to do regularly.
    Best solution to do the expand, is to use WinClone http://twocanoes.com/winclone/ which also can be used as a backup/image program for the Windows partition.
    Read the FAQs of WinClone here http://www.twocanoes.com/forums/viewtopic.php?t=515 which describe the process of expanding (scroll a bit down..).
    Hope it helps
    Stefan

  • How to change the PARTITION(P#) is replace of PYYMMDD format

    hi
    hi everybody, i am developing the appl is used to jsp and oracle.. i need to change # is replace of YYMMDD format in oracle.. i want to display the partition wise data (like p070220) based on the query..
    how can you change the query (p#, p070220)....
    pls find the above code..
    Table Names(1): select * from imis_p3_report
    Fields: mis_rep_id, mis_rep_name, query_description
    EX: LPP0159,Deativations thru 152 Short code, SELECT
    TO_CHAR(CALL_DATETIME,'DD-MON-YYYY') DEACTIVE_DATE, TIME, SUBSTR(CV1,3,10) MSISDN,SUBSTR(CV2,3,10) DEALER_NUMBER,CV3 PRODUCT_CODE,CV4 SYS_STATE, TO_CHAR(TO_DATE(CV5,'YYYYMMDD'),'DD-MON-YYYY') CREATE_DT,CV6 SERVSP_ID,CV7 DEALER_CODE,CV8 ZONE_DEALER FROM DAILY_IN_DUMP PARTITION(P#) WHERE
    Upper(Nodelabel)='ID_DEACTIVATION' 2) select * from imis_p3_controls Fields:mis_rep_id, condition_id, control_type, control_label, control_content, default_value
    EX: LPP0159, 1, DTP, FORDATE
    COntrol_types like DTP, COMBOBOX, LISTBOX, RADIO
    3) select * from imis_p3_conditions
    Fields: mis_rep_id, control_id, condition_id, query
    ex: LLP0159, 4, 2, select
    TO_CHAR(TO_DATE('#','DD/MM/YYYY'),'YYMMDD') DT from dual
    Condtion_id: 0,1,2,3,4,5..
    i want to change the PARTITION(P#) replace to p070220 format
    please help me....
    Kalyani

    Hi there Luke. Thanks for the answer but it has bred a new problem as good as it was. I've shrunk the second volume (E) down to 20GB exactly, however there is now around 53gb of unallocated space. When I right click on the C partition the option for extending is greyed out and it wont let me allocate the 53gb to it.
    Any ideas on why this might be?
    Wish I knew more about computers! :(

  • How to divide the UWL tasks listed in "Tasks" in different views ??

    Hello, i want to divide the tasks listed in the UWL in different iviews depening on whether they are tasks from the R3 workflow, tasks from the KM or tasks from the guided procedures ; in other words, i don´t wank one iview showing all the tasks together. I want to show just tasks from R3 workflow in one iview, task from the km in another and tasks from  guided procedures in another.
    How can achieve this?
    Thanks in advance!.

    Hi Themis,
    well, you could use the concept of configuration groups. You can assign every UWL system to none, one or multiple configuration groups (see <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/92/a88931f2dd4631b9e8d530697d89c9/frameset.htm">SAP Library</a>). The UWL iView can be limited to show only work items from systems in a given configuration group.
    I suggest that you assign your backend systems (KM, SAP Business Workflow, etc.) to different configuration groups (you can choose the names of the configuration groups arbitrary). Afterwards, create a few UWL iView instances and set the iView property "System Configuration Group" accordingy.
    Best regards,
    Martin

  • How to choose the partition in oracle tables?

    Dear all,
    i m in need to create the partitions on prod.db tables since i m not aware of creating partitions?i just go through some theroy concepts and understood the range and list partitions (i.e)Range is normally used for values less than like jan,feb,march or values less than 50,000 values less than 1,00,000 like that each partition is having separate tablespaces to increase the performance. and for list is used to denoting the directions like west,east,north,south like that.
    Now what i want to know is ?
    1.)when will i can go ahead with partitions?
    2.)before creating partitions is it advise to create index or not needed?
    3.)if i started to create partition what is the leading column have to create partition and which partition has to choose?
    pls let me know and pardon me if i did any mistakes.
    thanks in advance..

    I had to research on same topic. One of my teammates suggested few points that might help you also.
    Advantages of partitioning:
    1) Partitioning enables data management operations such data loads, index creation and rebuilding, and backup/recovery at the partition level, rather than on the entire table. This results in significantly reduced times for these operations.
    2) Partitioning improves query performance. In some cases, the results of a query can be achieved by accessing a subset of partitions, rather than the entire table. Parallel queries/DML and Partition-wise Joins are also got benefited much.
    3) Partitioning increases the availability of mission-critical databases if critical tables and indexes are divided into partitions to reduce the maintenance windows, recovery times, and impact of failures. (Each partition can have separate physical attributes such as pctfree, pctused, and tablespaces.)
    Partitioning can be implemented without requiring any modifications to your applications. For example, you could convert a nonpartitioned table to a partitioned table without needing to modify any of the SELECT statements or DML statements which access that table. You do not need to rewrite your application code to take advantage of partitioning.
    Disadvantages of partitioning:-
    1) Advantages of partition nullified when you use bind variables.
    Additional administration tasks to manage partitions viz. If situation arises for rebuilding of index then rebuilding should to be done for each individual partition.
    2) Need more space to implement partitioning objects.
    3) More time for some tasks, such as create non-partitioning indexes, collection of “global" statistics (dbms_stat’s granularity parameter to be set to GLOBAL. if sub partition are used then we have to set it to ALL).
    4) Partition would implies a modification (of explain plan) for ALL the queries against the partitioned tables. So, if some queries use the choosing partition key and may greatly improve, some other queries not use the partition key and are dramatically bad impact by the partitioning.
    5) To get the full advantage of partitioning (partition pruning, partition-wise joins, and so on), you must use the Cost Based Optimizer (CBO). If you use the RBO, and a table in the query is partitioned, Oracle kicks in the CBO while optimizing it. But because the statistics are not present, the CBO makes up the statistics, and this could lead to severely expensive optimization plans and extremely poor performance.
    Message was edited by:
    Abou

  • When installing boot camp, you choose how to divide the computer's disk space between the apple and microsoft parts of the computer. How can I go back to that and edit how I want the disk space to be divided?

    I just want to add more space to windows and i dont know how any help?

    Welcome to the Apple Support Communities
    Use Paragon Camptune X. However, make a backup before using this app because you can lose data if the partitioning doesn't finish properly

  • Rescue and Recovery -- How to Backup the Partition

    Hi there, folks.
    I'm trying to create a backup of the default factory image on a partition of my harddrive. I originally ran Windows 7 64 bit Professional. I tried out Windows 8 and just this past weekend returned to Windows 7 with a friend's copy of it. However, Rescue and Recovery doesn't seem to recognize that the partition contains the backup image.
    Mainly, I'm confused because the current version of ThinkVantage and R&R is completely different than the software that, just a month ago, was constantly reminding me of the partition and that it needed to be restored. Any help?
    Does anyone know how to backup JUST a partition? Thank you!

    One work-around that I have used successfully when I had an Acronis image but no R&R image is to do a full restore to factory using the factory recovery media (from Lenovo or home made on the TP) and then restoring only the windows partition from the non-Lenovo image.  This should leave the service partition, the MBR, and track 0 in the Lenovo mystery mode, and let the think button work, and you get your cloned up-to-date OS.
    I should add that in one of my experiments w/multi-booting and fiddling partitions, after using this procedure with Vista on my T400, vista wouldn't boot. It required a bootable vista DVD to run the vista boot repair procedure (twice).  After that, "think" and vista booted as expected.  I don't know of any way to do that with Lenovo install media.  If no MS Vista DVD is available, there are stripped down versions with the repair stuff only floating around the web.  The usual precautions re downloads apply.  There may be manual ways to repair the vista boot stuff that I haven't found yet.
    I can't say with certainty that this will always be necessary.  I may have screwed something up during the two step restore process.
    The magic "think" button is (potentially) pretty useful, but it and the "new improved" vista boot process are a little too fragile, IMNSHO.
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • How to decide the minperm for AIX 5.3

    I have 10g R2 on AIX 5.3. I want to tune the maxperm and minperm. From the Metalink Note 316533.1 and IBM lib, I can decide the maxperm, but have no idea how to decide the value of minperm. My current vmo -a
    vmo -a | egrep "min|max"
    maxclient% = 80
    maxfree = 1088
    maxperm = 743216
    maxperm% = 80
    maxpin = 784258
    maxpin% = 80
    minfree = 960
    minperm = 185804
    minperm% = 20
    npsrpgmax = 100352
    npsrpgmin = 75264
    npsscrubmax = 100352
    npsscrubmin = 75264
    soft_min_lgpgs_vmpool = 0
    strict_maxclient = 1
    strict_maxperm = 0
    although it is safe based on the metalink note with the performance. Just want to make it little better of paging.

    I have 10g R2 on AIX 5.3. I want to tune the maxperm
    and minperm. From the Metalink Note 316533.1 and IBM
    lib, I can decide the maxperm, but have no idea how
    to decide the value of minperm. My current vmo -aCheck document A Administering Oracle Database on AIX , formula for how to decide is given in this doc.
    Virag

Maybe you are looking for

  • Amount of Data

    Hello Friends Can anyone let me know where can I see the amount of data (in bytes) piled up in the PSAs. Thanks Rishi

  • TS3899 Can't see my messages

    I have emails that I can see on my computer and Iphone but I can't see all of them in my ipad. Why is this? Is there a set up option on settings I need to change? My last email goes back to May of this year so it's not that old.

  • Airport basics for my iBook

    Dear Mac gurus, I have a problem with my iBook ethernet port. Basically, the port is not working and one of the options for me is to go wireless. I need pointers on the airport card to use and the model of the base station. Please note that I am on O

  • Is it possible to lock an invididual folder?

    Despite the advances of Mac OSX it still does not seem possible to completely lock a Folder independently of other folders, or am I completely mistaken? I have in the past done <command i> and tried to fiddle around with Permissions/Read Write etc bu

  • Keyboard is not working good, when i "click" space it appears number "6" instead

    from my macbook pro- the keyboard is not working good, when i "click" space it appears number "6" instead. Any idea what is wrong here? I do not hace a Apple store close to me.