One small problem in partitioning

The base table was created in a DMT and all the partitions were created in LMT.
Now i want the table also to be in LMT.
When attempted a move with alter table tablename move tablespace it's giving an error.
SQL> ALTER TABLE HOLDINGDBO.POSITION_STAGE MOVE TABLESPACE HOLDING_GEN;
ALTER TABLE HOLDINGDBO.POSITION_STAGE MOVE TABLESPACE HOLDING_GEN
ERROR at line 1:
ORA-14511: cannot perform operation on a partitioned object.

I think this is posted in the wrong forum.

Similar Messages

  • Audio+Video Chat works but one small problem.Pls help.

    HI..
    as i had posted once before in a different query's thread, i have implemented audio and video chat using AVTRansmit2 and avreceive2.
    audio and video chat work well.By video chat i mean not only video but VIDEO+AUDIO as well.. just like usual yahoo video chat.
    But the problem is like this:-=
    I have given an option for user to switch from audio chat to video chat.
    now if a user first goes to audio chat and then switched to video chat,
    then the problem comes. When he's shifted to video chat i close down previous Audio chat by RTPManager.dispose() , i close the player and everything..
    and then i start Video transmit/receive "ALONG WITH" audio transmit/receive..
    No this time video starts but audio doesnt work ..
    it says"waiting for rtp data to arrive.... "
    The problem is that when this new stream of audio data comes, the receiver somehow thinks that its the same old stream since its from same transmitter IP.. and so it tries to UPDATE the previous stream.
    It means there is some problem with the close method or RTPManager.dispose() which should have disposed off all the stuff much before the new connection was made.
    PLS HELP ASAP>
    this is crunch time for my project.

    Hi anandreyvk . .
    well, i had tried doing removetargets and also, i had disposed RTPManager well. As it turns out the problem was not with any of it but it was the problem of me incorrectly passing RTPManager from AVReceive2 to AVTransmit2.
    Actually i am using just one RTPManager.. since i am receiving and transmitting on the same port.
    i've solved the problem but i am not sure if this is the right way .. what do you think ??
    is creating just one RTPManager {by that,i mean initializing it only once} a good idea ?? Since we are supposed to call both AVTransmit2 and AVReceive2 with the "LOCAL PORT" .. {which in itself is a matter of discussion though! } i and my project mate thought initializing RTPManager only once is a better option .
    Whats your take on all of this ?

  • Paging.  one small problem

    I know this question has been asked before, and hopefully this will be a quick one. anyways, I am trying to do paging and am stuck on this error... not sure what it means. (i have an idea what it means... just not sure how to remedy.
    ///////////// error ///////////////
    java.lang.NumberFormatException: null
    at java.lang.Integer.parseInt(Integer.java:373)
    at java.lang.Integer.parseInt(Integer.java:454)
    I've supplied my entire paging code, in hopes that somebody could also help with that. If I'm on the right track or not...
    ////////// code ///////////
    <%
    String sql; //SQL string
    int TitleID = 0;
    int IPNumber = 0;
    int k = 0;
    String LastIssue = "";
    String Language = "";
    String IPName = "";
    String CountryName = "";
    String Format_n = "";
    int rowPerPage=10; //Record size of one page
    int rowTotal = 0; //Total records
    int pageTotal = 0; //Total pages
    int pageIndex = 0; //Pages waiting for display, from 1
    pageIndex = Integer.parseInt( request.getParameter("page") );
    rowTotal= Integer.parseInt( request.getParameter("rowTotal") );
    String sql_2=request.getParameter("sql_2");
    String sql_1 = "SELECT t.TitleID, t.TitleName, t.LastIssue, t.Language, t.IPNumber, i.IPName, " ;
    sql_1 += "t.CountryName, t.Format_n " ;
    sql_1 += "FROM IPs i, Titles t " ;
    if (request.getParameter("MarketSector") != null)
    sql_1 += ", MarketSectors m " ;
    sql_1 += "WHERE i.IPNumber = t.IPNumber " ;
    if (request.getParameter("MarketSector") != null)
    sql_1 += "AND m.TitleID = t.TitleID " ;
    if (request.getParameter("TitleName") != null)
    sql_1 += "AND t.TitleName LIKE '%" + request.getParameter("TitleName") + "%'" ;
    sql=sql_1+sql_2 ;
    try {
         stmt = conn.createStatement (ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
         rset = stmt.executeQuery (sql_1);
         pageTotal = (rowTotal+rowPerPage-1) / rowPerPage; // Get total pages
         if(pageIndex>pageTotal) pageIndex = pageTotal;
    catch (SQLException e) {
    out.println (e);
         return;
    int absolute=(pageIndex-1) * rowPerPage;
    for(k=0; k<absolute; k++) rset.next();
    int i = 0;
    String LineColor;
         while( rset.next() && i<rowPerPage && (absolute+i)<rowTotal )
    TitleID = rset.getInt ("TitleID");
         IPNumber = rset.getInt ("IPNumber");
    TitleName = rset.getString ("TitleName");
         LastIssue = rset.getString ("LastIssue");
         Language = rset.getString ("Language");
         IPName = rset.getString ("IPName");
         CountryName = rset.getString ("CountryName");
         Format_n = rset.getString ("Format_n");
    if (i % 2 == 0) LineColor="#DBECFD";
    else LineColor="#C6E1FD";
    %>
    <TR bgcolor="<%= LineColor %>">
    <TD width="239" height="20"> <a href="JavaScript:OpenPopupWindow('details.jsp?TitleID=<%= TitleID %>') onMouseOver="window.status='Click To Get Publication Title Detail';return true" onMouseOut="window.status=''">
    <%= TitleName %></a></TD>
    <TD width="207" height="20"> <%= IPName %> </TD>
    <TD width="156" height="20"> <%= CountryName %></TD>
    </TR>
         <%
         %>
    </TABLE>
    Page <%=pageIndex%> / <%=pageTotal%>
    <%if(pageIndex<pageTotal){%>
    <a href="results_title.jsp?sql_2=<%=sql_2%>&rowTotal=<%=rowTotal%>&page=<%=pageIndex+1%>">Next
    </a>
    <%}%>
    <%if(pageIndex>1){%>
    <a href="results_title.jsp?sql_2=<%=sql_2%>&rowTotal=<%=rowTotal%>&page=<%=pageIndex-1%>">Previous
    </a>
    <%}%>

    yes, that is what I realized, by the error, but I'm not where the 'null' is originating.
    // in my code I have the variables set to zero
    int rowTotal = 0; //Total records
    int pageTotal = 0; //Total pages
    int pageIndex = 0; //Pages waiting for display, from 1
    pageIndex = Integer.parseInt( request.getParameter("page") );
    rowTotal= Integer.parseInt( request.getParameter("rowTotal") );
    i'm not sure what to make of it..

  • One small problem

    Program Description
    There is a group of mountain climbers. This program shows all possible combinations of mountain climbers if they are put into teams of 3. The user inputs the number of mountain climbers. Output uses letters to represent each mountain climber.
    Example:
    user input = 5
    output : ABC ABD ABE ACD ACE ADE
    problem : it Outputs this instead:
    ABC ABD ABE ACE ADE AEE
    I TRIED VARIABLE TRACING BUT COULDN'T FIGURE OUT HOW TO FIX THE PROBLEM. PLEASE POST YOUR IDEAS AND SUGGESTIONS
    import javax.swing.JOptionPane;
    import java.awt.*;
    class COMBO2
         public static void main(String  args[])
              String[]a={"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"};
              int count=1;
              int count2=2;
              String firstmate=a[0];
              String secondmate=a[1];
              String thirdmate=a[2];
              String inputtwo= JOptionPane.showInputDialog(null, "Enter number of Mountain Climbers");
             int input=Integer.parseInt(inputtwo);
            while (count<=input-1)     
                      if (thirdmate==a[input-1])
                              System.out.print(firstmate+secondmate+thirdmate);
                              System.out.print(" ");
                              secondmate=a[count+1];
                              count+=1;
                       else if (thirdmate!=a[input-1])
                            System.out.print(firstmate+secondmate+thirdmate);
                            System.out.print(" ");
                          thirdmate=a[count2+1];
                          count2+=1;
             System.exit(0);
    }

    this is the program with the 3 for loops
    I didn't quite understand those hints. it is still not working properly
    its even more jumbled now, and i can't variable trace with 3 loops so i'm gonna need some more ideas guys.
    user input : 5
    output: ABD BBD CBD DBD EBD
    import javax.swing.JOptionPane;
    import java.awt.*;
    class COMBO2
         public static void main(String  args[])
              String[]a={"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"};
              int count=1;
              int count2=2;
              String firstmate=a[0];
              String secondmate=a[1];
              String thirdmate=a[2];
              String inputtwo= JOptionPane.showInputDialog(null, "Enter number of Mountain Climbers");
             int input=Integer.parseInt(inputtwo);
              for (int i = 0; i < input;i++) {
      for (int j = 1; j<input-(input-2); j++) {
        for (int k = 3; k < input-(input-4);k++) {
          System.out.print( a[i] + a[j] + a[k] +" ");
             System.exit(0);
    }

  • ARGH!  One small problem (I hope)

    Alright, I've gotten this beast to compile w/o error, but now when it runs in Applet Viewer, it doesn't print the results of the calculations to the applet surface. It does display the message in the dialogue box, but on the command prompt, it coughs out a number of errors. Anyway, hopefully someone sees where I've screwed up...
    Here's my code...
    /*      Daniel C. Warshaw
            143744498
            INFO 250 - 902
            Jeffrey Babb
            7 October 2002
            Assignment 4
    //Program to collect data from user and display processed information.
    import java.applet.*;
    import javax.swing.*; //import swing classes
    import java.awt.*; //import awt classes
    public class test extends JApplet {
           String message =""; //message to user about his/her age
    //Age statements  
      String eighteen = "You can vote, get drafted, and smoke legally";  
      String twentyone = "You can drink alcohol legally";  
      String twentyfive = "Car rental companies should probably stop penalizing you on rates";  
      String thirty ="Pete Townsend suggested that you are no longer to be trusted";  
      String sixtyfive ="You should be able to retire now";  
    //collect name from user
      String name = JOptionPane.showInputDialog("Please enter your name.");
    //collect age in years from user  
      String age = JOptionPane.showInputDialog( "Please enter your age in years." );
    //convert the age string to an integer  
      int year = Integer.parseInt( age );//convert the years to other units of time.
      int month = year * 12;
      int day = year * 4380;
      int hour = year * 105120;
      long minute = year * 6307200;
      long second = year * 378432000;
      public void init() {
        if (( year >= 18 ) && ( year <= 21 )) message = eighteen;
        if (( year >= 21 ) && ( year <= 25 )) message = eighteen + "\n" + twentyone;
        if (( year >= 25 ) && ( year <= 30 )) message = eighteen + "\n" + twentyone + "\n" + twentyfive;
        if (( year >= 30 ) && ( year <= 65 )) message = eighteen + "\n" + twentyone + "\n" + twentyfive + "\n" + thirty;
        if ( year >= 65 ) message = eighteen + "\n" + twentyone + "\n" + twentyfive + "\n" + thirty + "\n" + sixtyfive;
    //Display message
      JOptionPane.showMessageDialog(null, message, "What can you do at your age?", JOptionPane.PLAIN_MESSAGE );
    // System.exit( 0 ); //Exits program.
        public void paint( Graphics g) { //Draw strings on applet background
      //show the results.
      g.drawString( "Hi there " + name, 25, 0 );
      g.drawString( "You are at least " +year +" years old,", 25, 15 );
      g.drawString( " " +month +" months old,", 25, 30 );
      g.drawString( " " +day +" days old,", 25, 45 );
      g.drawString( " " +hour +" hours old,", 25, 60 );
      g.drawString( " " +minute +" minutes old,", 25, 75 );
      g.drawString( "or " +second +" seconds old.", 25, 90 );
    }Hope someone sees something...Thanx for all who help!
    Dan

    Heere you are darling all patched up and working fine
    - I think the word;-
    repaint()
    gets rid of all those horrid errors.
    Lady Thatcher to the rescue! (now a Baroness)
    Thank you darlings
    import java.applet.*;
    import javax.swing.*; //import swing classes
    import java.awt.*; //import awt classes
    public class AgeApplet extends JApplet {
    String message ="";
    String eighteen = "You can vote, get drafted, and
    nd smoke legally";
    String twentyone = "You can drink alcohol
    ol legally";
    String twentyfive = "Car rental companies should
    ld probably stop penalizing you on rates";
    String thirty ="Pete Townsend suggested that you
    ou are no longer to be trusted";
    String sixtyfive ="You should be able to retire
    re now";
    String name = JOptionPane.showInputDialog("Please
    se enter your name.");
    String age = JOptionPane.showInputDialog( "Please
    se enter your age in years." );
    int year = Integer.parseInt( age );
    int month = year * 12;
    int day = year * 4380;
    int hour = year * 105120;
    long minute = year * 6307200;
    long second = year * 378432000;
    public void init(){
    if (( year >= 18 ) && ( year <= 21 )) message =
    sage = eighteen;
    if (( year >= 21 ) && ( year <= 25 )) message =
    sage = eighteen + "\n" + twentyone;
    if (( year >= 25 ) && ( year <= 30 )) message =
    sage = eighteen + "\n" + twentyone + "\n" +
    twentyfive;
    if (( year >= 30 ) && ( year <= 65 )) message =
    sage = eighteen + "\n" + twentyone + "\n" + twentyfive
    + "\n" + thirty;
    if ( year >= 65 ) message = eighteen + "\n" +
    "\n" + twentyone + "\n" + twentyfive + "\n" + thirty +
    "\n" + sixtyfive;
    JOptionPane.showMessageDialog(null, message,
    ssage, "What can you do at your age?",
    JOptionPane.PLAIN_MESSAGE );
    repaint();
    public void paint( Graphics g) {
    g.drawString( "Hi there " + name, 25, 20 );
    g.drawString( "You are at least " +year +"
    ear +" years old,", 25, 35 );
    g.drawString( " " +month +" months old,", 25,
    ", 25, 50 );
    g.drawString( " " +day +" days old,", 25, 65
    25, 65 );
    g.drawString( " " +hour +" hours old,", 25, 80
    25, 80 );
    g.drawString( " " +minute +" minutes old,", 25,
    ", 25, 95 );
    g.drawString( "or " +second +" seconds old.",
    old.", 25, 110 );
    The program given as troublesome did not have any errors. Giving repaint also does not produce any errors.
    Is the giver and the taker the same person?
    Make many email id's and shower ur points on yourself?
    Otherwise what is the meaning of this fake question?

  • One 'small' problem - HELP!!

    When I installed the operating system for my K8N Diamond (Win XP Prof) - I set the boot sequence on the BIOS to be:
    CD-ROM
    HARD-DISK
    FLOPPY
    However when I completed the instalation and changed the sequence to
    HARD-DISK
    CD-ROM
    FLOPPY
    The system gives me a disk boot failure.
    Also if I press F11 for boot menu it has the + sign on Hard-Disk and won't change to anything else.
    The only way I can get it to boot into the Op system is to have it set the first sequence above
    and to have the Win XP Professional CD in the drive. Otherwise failure.
    BIOS is version 1.9
    Help!!! 
    Thanks
    Joakim

    Here is the spec:
    MSI K8N Diamond nF4 SLI Socket 939 Motherboard
    AMD Athlon 64 4400+ Toledo 2MB Cache Socket 939 Dual Core CPU
    Crucial 2 x 512MB 400MHz DDR Matched Pair Ram
    2 x Maxtor 160GB SATA II Hard Drives
    XFX GeForce 6800 GS 256MB DDR3 PCI-E Graphics Card
    1.44MB Floppy Disk Drive
    Samsung DVD-ReWriter Drive 16x Dual Layer
    Your help again much appreciated.
    Thanks & Regards
    Joakim

  • Problems restoring partition after bootcamp failure

    Hi!
    I'm using a new MacBook Pro (Retina, 15") with OS X 10.10.2 where I tried to install Windows 8.1 with the help of the Bootcamp-assistant. Everything went well to set up the partitions and I decided to set aside 50 GB for my Windows partition. But the Windows 8.1 installer for some reason refused to install on this partition so without thinking too much (big mistake) I tried formatting it from within the installer which didn't work and lead to boot problems when I restarted. Without knowing so much about these things I understand that the Windows partition manager where writing in places on the disk that wasn't so good for the OS X system? Anyway, I have managed to get back to booting normally and within the Disk Utility in OS X I deleted all the different small partitions (that I could see) and the 50 GB Windows partition so that there is now just the main OS X partition showing and 50 GB of unused, unpartitioned space.
    An this is where I'm stuck. Everything works fine except I now have a 50 GB smaller disk... I wan't to restore everything back to having just one big OS X partition but I can't use the Bootcamp-assistant since it does not recognize the disk as being managed by it and from inside Disk Utility I can't resize the OS X partition back to normal. I can't pull the slider to increase its size, I can't manually type in the partitions size since those numbers are greyed out and I can't create a new 50 GB partition of any kind since when I try to proceed nothing happens. I have even attempted to format the whole drive and restore my time machine backup from recovery mode but I can't figure out how to do that. I seem to be able to format the, now smaller, OS X-partition but doesn't that just create a new partition with the same size? How do I erase everything and create a completely new partition with the maximum size? Oh, and I also tried removing the OS X-partiton by pressing the minus button at the bottom but that button is greyed out as well. Even in recovery mode...
    I have included two screen dumps. Sorry for them being in Swedish... Hopefully they can be of help anyway.
    Thank you in advance for any help!!

    This problem is being discussed in Is there a way I can get the "Free Space" back without completely restoring my hard drive?

  • Windows 7 boot problems after partitioning Mac Disc

    Hi
    I got a big Problem. I installed Windows 7 with Bootcamp. I have a 600Gb Mac Partition and a 150Gb Bootcamp Partition.
    After Configuring Windows, I switched to the Mac OSX Snow Leopard System. I changed the Main Partition of 600Gb into 3 smaller ones. After this change I can't boot Windows 7 anymore. With the Option Key it doesn't show me the Bootcamp Partition. In the Sys. Preferences under Startup Disk it show me the Windows on Bootcamp Partition, but when I click restart, it shows me only the No System Disk Boot black screen.
    I read a bit in the forum, but I haven't found the problem yet.
    Thx for your help
    NESTi

    Your problem is quite clear and simple: you added and changed the parition numbers and table.
    You want a linux style with a slice for swap, root, usr and data?
    Use Mac's new Recovery - command d on startup.
    Enable viewing hidden partitions in Disk Utility.
    Use Windows DVD to fix and edit BCD
    What you did is not supported. I know XP can't boot unless it is partition #4 or lower.
    There is 200MB GPT, 128MB EFI, HFS+ 600GB would have been 3rd but GPT is zero, only now you have three where there was one.
    Manage all partitions with Disk Utility in OS X
    Check partition table health in Lion's Disk Utility
    BCD for Windows 7 and Lion

  • Mac mini single core + bootcamp first impressions:"That's one small step.."

    That's one small step for man; one giant leap step for mankind"
    Neil Amstrong
    Hi!
    First of all I have to say I'm a mac freak and i will never ever switch back to windows, but in some rare cases there is a lack of software, for example special software, like engineering software cad or fem software.
    In this cases, I need windows to continue working.
    Three weeks ago I sucessfully installed windows xp sp2 on my new mac mini intel single core, and the only thing I wanted to know was, could it be done -
    Yes , but it was nothing for standard user i would say.Main problem was that windows must be installed on the first partition, which slowed down os x on the second, not all drivers were available and bootmangement was not like i had expected - I deletet xp and restored my os x.Keeping in mind that xp could run on my mm -
    Today I installed win xp sp2 using bootcamp beta and i have to say that it was amazing, like landing on the moon.
    Bootcamp solves the main lack of the installation, which i was confronted 2 weeks before - partitioning on the fly out of os x !!! and it uses the 2. partition for xp , which results that os x is running on the fast first partition.
    These are the steps for the mac mini moonlanding:
    1x xp sp2 cd, 1x cdr
    1.) I did the firmware update
    2.) Started bootcamp and bruned driver cd (83MB)
    3.) Restarted into osx & started bootcamp again, clicked install xp again
    4.) booted into xp and installed +restarted to xp
    5.) installed all drivers from bruned cdr (auto)
    6.) yeah all drivers are avaiable , even analog sound
    7.) Restarted holding down option-key (alt-key)
    8.) restarted to os x
    10.) opened sys-pref in osx and marked osx as default startvolume
    11.) continued living with two os'es on my mac mini!
    Thanks Steve, for this amazing landing!!! There is no need of virtualpc or Q anymore,there is no need of microsoft at all !!
    Steve, how many worldwide % of computer users ,you want to come over to us? 35 %?
    This will knock out microsoft in its base,that's the best thing concerning software I have ever seen !
    Greetings Tobias
    mac mini intel / pb G3 wallstreet   Mac OS X (10.4.5)  

    Thanks Steve, for this amazing landing!!! There is no need of virtualpc or Q anymore,there is no need of microsoft at all !!
    Well, Microsoft does write Windows, you can't get rid of Microsoft all together and keep using Windows! If anything, this is a win against Dell or other vendors who sell hardware for Windows. It could be a boon for Microsoft to sell more copies of Windows, if anything.
    There is now a Boot Camp forum for trouble & questions.
    -Doug

  • Problem with partition

    Hello,
    I bought my MBP s/h and it had Bootcamp/XP installed on the partition (size 13Gb). I had big problems with XP and decided to reinstall, but as I had no orig XP disc, I had to use a frien's XP Home version. I didn't delete the orig XP first, just installed the XP Home editon. I now have two problems -
    1) I'm v. short of space on that partition.
    Looking at that volume I can see programs relating to the previous owner e.g. BJ Printer folder etc.
    2) When I shut down the XP Home and try and Restart, it just hangs...
    Please suggest a plan of action...Thanks.

    Zydas:
    Is your friend's XP Home Edition installation CD a SP2 version? XPSP2 on a single disk? This is a must to be able to install it on a boot camp partition. Furthermore, it cannot be an upgrade version. It has to be a full version. Not sure what you meant by stating that you did not delete the original XP first. Please clarify.
    Given the information that you have provided, my recommendation is that you run boot camp again and delete the boot camp/windows partition completely and combine it into one with the osx partition. Boot Camp will allow you to do this.
    Run Boot Camp again (After thoroughly reading the instructions) and allow it to repartition the drive to the size(s) that you desire. Once that is done then you will need a FULL Version of XPSP2 (on a single disk) or any FULL version of Vista to install on the newly created boot camp partition.
    Axel F.

  • Problem defining partition for storing value 0 with new data

    Hi forumers,
    I've a problem with partitioning and need some advices.
    I've a table that will be partitioned by column Process_N which have values from 0 to 50000:
    Process_N between 1 and 29999 represents old data;
    Process_N >= 30000 represents new data;
    Process_N = 0 means the row is not processed yet and so these value represents new data too.
    Can I have a partition for old values (from 1 to 29999) and another partition to store new values (0 + values >= 30000) ? Hou can I define that ?
    Thank you in advance.
    Best Regards,
    Helena

    Helena,
    What's your oracle version? I think it will be better to create 3 partitions usign RANGE partitions (< 1, 2-29999, >=30000 <=50000). Is there a specific reason you want to include 0 and values greater than 29000 in one partition? What the significant difference between 0 and 30000 specially as both represent new data?
    CREATE TABLE my_part_table (
       process_n NUMBER NULL,
       my_data VARCHAR2 (1 BYTE) NULL,
       my_other_data VARCHAR2 (30 BYTE) NULL,
       data_state NUMBER NULL
    TABLESPACE test_data
    PARTITION BY RANGE (process_n)
       (PARTITION partition_0
           VALUES LESS THAN (1)
           TABLESPACE test_data,
       PARTITION partition_2_29999
          VALUES LESS THAN (30000)
          TABLESPACE test_data,
       PARTITION partition_30000
          VALUES LESS THAN (50001)
          TABLESPACE test_data);Regards

  • Problems with partitioning hard disk

    Hi, I have an external hard disk with 2tb capacity.
    I want to create one partition of 1,5 tb to use with Time Machine and one partition with 500 gb to use both with windows and mac.
    I have partitioned the first one in HFS extended and the second one in exfat, using the GUID partition table.
    Now the problem: on the mac both the partitions work well.
    In Windows, on the contrary, the exfat partition is not recognized. It says it is to be formatted a nd if I try to format it (in windows) it says it is not able to do this.
    I don't know what is the problem, even if I think it can be in the GUID table used...

    I think you can have only one OPTION for the partition table map scheme which is for the entire drive.
    So, when you created your two partitions (1.5GB Mac OS Extended - Journaled format and a 2nd for the rest of the space as ExfFat format) you chose the partition table map scheme as GUID, Windows will not see either partition. For Windows to see the ExFat partition, the partition map scheme has to be Master Boot Record.
    I have never formated two different partitions like you and made the partition table map scheme Master Boot Record. I know the PC will see the ExFat partition, but I don't know if the Mac will see the other. Understand you won't be able to boot from the Mac formated partition since the drive is MBR. Try it! You will need to reformat the drive with your two partitions when you change the partition table.

  • Many small problems in Mavericks

    When user experience many small problem in daily work, I feel the design is failed.
    Memory management has a lot of problem, I feel my macbook is abnormal slow after I upgraded to Mavericks. Sometime, I need to wait for several sec to get what I want.
    I think this problem is extreme important for OS.
    When I want to start a probelm, click once, no response, click twice, pop-up 2 times after 5 sec.
    Then i change my way of work, clock one time, work on other task. 5 sec later, multi desktop switch the desktop to the starting program. Then, I don't know what I was doing.
    Another is sound problem, sound doesn't work sometime and need some kind of procedure to get it back.
    Please don't ask me do something to solve the problem everytime when it happen. It is OS task to work it properly.
    Whatever how many great feature you added is meaningless if user daily experience is bad.

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve your problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to gather information about the state of your computer. That information goes nowhere unless you choose to share it on this page. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a couple of minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking  anywhere in the line. The whole line will highlight, though you may not see all of it in your browser, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; Pc () { o=`grep -v '^ *#' "$2"`; Pm "$1"; }; Pm () { [[ "$o" ]] && o=`sed '/^ *$/d; s/^ */   /' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id | grep -qw '80(admin)'; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed '8!d;s/^ *//'; o=`SP Hardware | awk '/Mem/{print $2}'`; o=$((o<4?o:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d; /[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]||0[^2]8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; for b in Thunderbolt USB; do o=`SP $b | sed -En '1d; /:$/{s/ *:$//;x;s/\n//p;}; /^ *V.* [0N].* /{s/ 0x.... //;s/[()]//g;s/\(.*: \)\(.*\)/ \(\2\)/;H;}; /Apple|SCSM/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; d=(/ ""); D=(System User); E=; for i in 0 1; do o=`cd ${d[$i]}L*/L*/Dia* || continue; ls | while read f; do [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && e=" *" || e=; awk -F_ '!/ag$/{$NF=a[split($NF,a,".")]; print $0 "'"$e"'"}' <<< "$f"; done | tail`; Pm "${D[$i]} diagnostics"; done; [[ "$o" =~ \*$ ]] && printf $'\n* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|last value [1-9]|n Cause: -|NVDA\(|pagin|SATA W|ssert|timed? ?o' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); o=${s[2]}%; Ps "CPU usage by process \"$s\" with UID ${s[1]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); s[2]=${s[2]%[+-]}; o=$((s[2]>=25000?s[2]:0)); Ps "Mach ports used by process \"$s\" with UID ${s[1]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|post[fg]|x)/{print $3}'`; Pm "Extrinsic system jobs"; o=`launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | grep -v com\.apple\.CSConfig | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/Star*; do M; done`; Pm "Startup items"; o=`find -L /S*/L*/E* {/,}L*/{A*d,Compon,Ex,In,Keyb,Mail/B,P*P,Qu*T,Scripti,Servi,Spo}* -type d -name Contents -prune | while read d; do ID=$($PB\ :CFBundleIdentifier "$d/Info.plist") || ID="No bundle ID"; [[ "$ID" =~ ^com\.apple\.[^x]|Accusys|ArcMSR|ATTO|HDPro|HighPoint|driver\.stex|hp-fax|\.hpio|JMicron|microsoft\.MDI|print|SoftRAID ]] || printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find -L /u*/{,*/}lib -type f | while read f; do file -b "$f" | grep -qw shared && ! codesign -v "$f" && echo $f; done`; Pm "Unsigned shared libraries"; o=`for e in DYLD_INSERT_LIBRARIES DYLD_LIBRARY_PATH; do launchctl getenv $e; done`; Pm "Environment"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; Ps "DNS"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; Pc "hosts" <(grep -v 'host *$' /etc/hosts); Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`SP Fonts | egrep "Valid: N|Duplicate: Y" | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign ($) or a percent sign (%). If you get the percent sign, enter
    exec bash
    in the window and press return. You should then get a new line ending in a dollar sign.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know your password, or if you prefer not to enter it, just press return three times at the password prompt.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line "[Process completed]" to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report your results. No harm will be done.
    8. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If it happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of Apple Support Communities ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Small problem

    I am very new to java, and having a small problem:
    When i click on a button, i want the buttons name to be displayed
    in a text field, saying "You have pressed" then the name of the button.
    but i want to do this with multiple buttons and not just one button, so i want to be able to press any button and its name to be displayed in a text field.
    your help will be appreciated

    Sorry if i did not display code, thanks to all those who replied, heres some of the code, if i have gone wrong in any where could you please help me too correct, i think you will have a general idea of what i am trying to achieve:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Button;
    import java.lang.Object;
    public class Calculator extends Applet implements ActionListener
    Button b1 + b2 + b3 + b4 + b5 + b6 + b7 + b8 + b9 + b10 + b11 + b12 + b13 + b14 + b15 + b16 + b17 + b18;
    setLayout(new GridLayout(5,4));
    public void init( );
    Button b1 = new Button( "1" );
    b1.addActionListener ( this );
    add(b1);
    Button b2 = new Button( "2" );
    b2.addActionListener ( this );
    add( b2 );
    Button b3 = new Button( "3" );
    b3.addActionListener ( this );
    add( b3 );
    Button b4 = new Button( "4" );
    b4.addActionListener ( this );
    add( b4 );
    Button b5 = new Button( "5" );
    b5.addActionListener ( this );
    add( b5 );
    Button b6 = new Button( "6" );
    b6.addActionListener ( this );
    add( b6 );
    Button b7 = new Button( "7" );
    b7.addActionListener ( this );
    add( b7 );
    Button b8 = new Button( "8" );
    b8.addActionListener ( this );
    add( b8 );
    Button b9 = new Button( "9" );
    b9.addActionListener ( this );
    add( b9 );
    Button b10 = new Button( "10" );
    b10.addActionListener ( this );
    add( b10 );
    Button b11 = new Button( "+" );
    b11.addActionListener ( this );
    add( b11 );
    Button b12 = new Button( "-" );
    b12.addActionListener (this );
    add( b12 );
    Button b13 = new Button( "x" );
    b13.addActionListener ( this );
    add( b13 );
    Button b14 = new Button( "/" );
    b14.addActionListener (this );
    add( b14 );
    Button b15 = new Button( "MC" );
    b15.addActionListener ( this );
    add( b15 );
    Button b16 = new Button( "MR" );
    b16.addActionListener ( this );
    add( b16 );
    Button b17 = new Button( "M+" );
    b17.addActionListener ( this );
    add( b17 );
    Button b18 = new Button( "c" );
    b18.addActionListener ( this );
    add( b18 );
    after this i get stuck, i don't know how to create a small text field that syas you have pressed (then the button name) if this coding is wrong, can you please explain what i have done wrong!
    Thanks

  • Small problem led to big problem

    I had a few contacts that existed on my Centro which did not exist on my desktop.  So I contacted the Palm Chat Support.  The person who helped me had me perform several things which eventually led to my phone getting stuck in a loop.  Things were not getting better so I asked to be transferred to a supervisor.  The supervisor told me the only solution was a hard reset.  I finally agreed to this.  Now when I reinstall any applications (not third-party) such as calendar or address book, my phone won't come on.  I can see the calendar or the address book but when I go to turn on the phone, it goes back into the endless loop.  A soft reset will not take it out of the loop, only a hard reset.  When I do a hard reset, I then have the ability to use the phone again but I have no data in my calendar, address book, etc.  So essentially I have either a PDA or a Phone--but I can't have both.  This started as a very small problem (a few missing contacts which I could have probably/should have probably just manually entered into the desktop).  Now I have a very big problem, simply b/c of what I was directed to do by Support.  Is there any hope?
    Post relates to: Centro (AT&T)

    There could be to issues going on here that you are having this result. One thing could be corrupted data such as your contacts or calendar, the other could be corrupted programs that are coming back from a hotsync.
    The first I would like to troubleshoot as it is the easiest. To fix this what we need to do is hard reset your device. The instructions to do that is here http://kb.palm.com/wps/portal/kb/common/article/887_en.html this tells you how to do all types of resets. Also, what we need to do is rename your backup folder. What this folder is, it hold all your programs from the last time you synced your PC. On your computer go here
    Palm Desktop 4.2 and below
    My Computer--> C drive --> Program files --> Palm/PalmOne--> your hotsync username
    Palm Desktop 6.2.2
    My Documents/Documents --> Palm OS Desktop --> your hotsync username
    Right click on your backup folder and rename it to "backupOld". Resync your device to the same user name and you will get all your contacts, calendar, tasks, and memos.
    You can install the programs again but make sure they are compatible with the device. Also try one program again and wait 24 hours to see if the same thing happens again. This way you know what program is causing the issue.
    If you have any questions about this or if this does not work please post back.

Maybe you are looking for

  • Adding field in PDF(This form designed in Adobe Designer)

    Dear All, I use Acrobat 7.0. I created forms with Adobe Designer,then I saved this form as PDF. I want to add a few field that are; button tool,check box,Drop-down list,List box,radio button,text field,signature field, in the PDF. I can add in the bo

  • Memory issue as we run a simple application...

    Hi Experts,   We developed an application in portal (EP7 sp 16, Linux, Oracle 10g) to connect to BW run a query ,base of users input, bring the result and show to user. This is some detail about our application: 1)     WebDynpro : The application is

  • Flash CS5 ActionScript not working after 2-3mins

    Hi, I am using CS5 Design Premium and encounter a very crazy flash problem..... i used the AS3 and made an object move for 100 frames. Added a AS to stop at 50th frame. basically using stop();  for the AS. but it doesnt work when i test it. so i clos

  • Folder list - tree view

    I'm trying to build a tree view of an account's folders but I keep running into a problem no matter which approach I take. In the code snippet below I'm using the PopulateTree method recursively to add nodes to the tree view. This works using the .NE

  • Low screen resolution on my T400.

    Maximum screen resolution on my new ThinkPad T400 with discrete graphics(windows 7 home premium) is only 1280x800, I was expecting it to to more higher. Please advice on what to do. ATI Mobility Radeon 3470 with 256MB Thanks in advance. Solved! Go to