Problems to return several rows with setting SLIDER and SO, to OTHER DBMS_OUPUT

Hi people

I use 11g Express Edition 11.2.0.2.0.

I'm trying to return the name of a student, all of their exams, grade, grading and if it is a pass or fail.

In the code I 'fiddled', if the student has failed it works. However, if the student has spent just returns 'result = Pass' and cannot return their name, rank and tests, pass mark.

Second question (and please let me know if I need this post in a separate thread) is if a student has completed multiple tests, it returns only one.

Thanks for any advice you can give me.

SET SERVEROUTPUT ON
DECLARE 
  CURSOR c_pass_fail_cursor 
    (p_studentid number) IS
    SELECT students.firstname,
      test_history.score,
      test_id.test_name,
      test_id.passing_grade
    FROM students
    INNER JOIN test_history
      ON students.STUDENT_ID = test_history.student_id
    INNER JOIN test_id
      ON test_id.test_id = test_history.test_id
    WHERE students.student_id = p_studentid
    AND test_history.SCORE < test_id.passing_grade;
    
  v_name students.firstname%type;
  v_score test_history.SCORE%type;
  v_test test_id.test_name%type;
  v_passing test_id.passing_grade%type;
  v_result varchar2(4);  
    
BEGIN


  OPEN c_pass_fail_cursor (1);
  LOOP
    FETCH c_pass_fail_cursor INTO v_name, v_score, v_test, v_passing;
  EXIT WHEN c_pass_fail_cursor%notfound;
  END LOOP;
  CLOSE c_pass_fail_cursor;
  
  IF v_score < v_passing then
    v_result := 'Fail';
    DBMS_OUTPUT.PUT_LINE (v_name || ' ' || v_score || ' ' || v_test || ' ' || v_passing || ' ' || 'Result = ' || v_result);  
  ELSE
    v_result := 'Pass';
    DBMS_OUTPUT.PUT_LINE (v_name || ' ' || v_score || ' ' || v_test || ' ' || v_passing || ' ' || 'Result = ' || v_result);


  END IF;
  
END;
/

Hello d670...

I would try this code:

DECLARE

p_studentid NUMBER;

v_result VARCHAR2 (20);

BEGIN

p_studentid: = 1;

FOR rec_result IN (SELECT students.firstname

test_history.score

test_id.test_name

test_id.passing_grade

Students

JOIN test_history

ON students. STUDENT_ID = test_history.student_id

JOIN test_id

ON test_id.test_id = test_history.test_id

WHERE students.student_id = p_studentid

AND test_history. NOTE < test_id.passing_grade  ="" --=""> this line needs to be removed!

)

LOOP

IF rec_result.score<>

THEN v_result: = "Fail";

ANOTHER v_result: = "Pass";

END IF;

DBMS_OUTPUT. Put_line (rec_result.firstname |) ' ' || To_char (rec_result.score) | ' ' || rec_result.test_name | ' ' || To_char (rec_result.passing_grade) | ' ' || "Result =" | v_result);

END LOOP;

END;

/

I hope it helps.

Best regards, David

Tags: Database

Similar Questions

  • Return of rows with 2 minutes and columns 2MAXs

    Hello

    Database: Oracle Database 11 g (11.2.0.1)

    The NLS format: English (Singapore) [Format: DD/MM/YY hh: mm:]

    Here is my example of data from a database table (the Table name: POWER_CONSUMPTION) [actual number of lines in the ranges of table of 100, 000 s-1, 000, 000 s]

    Data types for columns

    ID - NUMBER

    NAME - VARCHAR2 (25)

    CUSTOMTIME - DATE

    CUSTOMVALUE - NUMBER

    ----------------------------------------------------------------------------------------
    ID |         NAME |     CUSTOMTIME |    CUSTOMVALUE
    ----------------------------------------------------------------------------------------
    NAME1 101. VALUE 27/11/14 15:11:08 6
    NAME1 101. VALUE 27/11/14 15:12:08 9
    NAME1 101. VALUE 27/11/14 15:36:55 33
    NAME1 101. VALUE OF 28/11/14 09:11:22 8
    NAME1 101. VALUE OF 28/11/14-11:12:43 14
    NAME1 101. VALUE OF 28/11/14 23:36:11 21
    NAME2 102. VALUE 27-11-14 15:03:15 1
    NAME2 102. VALUE 27-11-14 15:22:08 15
    NAME2 102. VALUE 27/11/14 15:34:55 24
    NAME2 102. VALUE OF 28/11/14 10:33:22 7
    NAME2 102. VALUE OF 28/11/14 14:21:43 19
    NAME2 102. VALUE OF 28/11/14 21:22:06 46
    NAME2 102. VALUE 29/11/14 12:33:22 10
    NAME2 102. VALUE 29/11/14 13:34:43 20
    NAME2 102. VALUE 29/11/14 17:55:06 30

    I have a difficulty to get the lines required by using the following SQL statement (it is not return the data I need):

    SELECT ID, NAME, MIN (CUSTOMTIME) AS MIN_CUSTOMTIME, MIN (CUSTOMVALUE) MIN_CUSTOMVALUE, MAX (CUSTOMTIME) AS MAX_CUSTOMTIME, MAX (CUSTOMVALUE) AS POWER_CONSUMPTION MAX_CUSTOMVALUE

    WHEN TRUNC (CUSTOMTIME) BETWEEN (SELECT MIN (CUSTOMTIME) OF POWER_CONSUMPTION) AND (SELECT MAX (CUSTOMTIME) IN POWER_CONSUMPTION)

    GROUP BY ID, NAME, CUSTOMTIME, CUSTOMVALUE

    I'm supposed to display the data in the format below as follows:

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    ID |         NAME |     MIN_CUSTOMTIME |    MIN_CUSTOMVALUE |    MAX_CUSTOMTIME |    MAX_CUSTOMVALUE

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    NAME1 101. VALUE 27/11/14 15:11:08 27/6/11/14 15:36:55 33

    NAME1 101. VALUE OF 28/11/14 09:11:22 8 11/28/14 23:36:11 21

    NAME2 102. VALUE 27-11-14 15:03:15 27 1/11/14 15:34:55 24

    NAME2 102. VALUE OF 28/11/14 10:33:22 7 11/28/14 21:22:06 46

    NAME2 102. VALUE 29/11/14 12:33:22 29/10/11/14 17:55:06 30

    I then go SUM (MAX_CUSTOMVALUE - MIN_CUSTOMVALUE) as a last step and return a scalar value.

    Any ideas on how I can return the lines required in the table above?

    Kind regards

    Brian

    Use the DUNGEON:

    SQL > with POWER_CONSUMPTION like)
    2 select id 101,' name1. VALUE ' name, to_date (November 27, 14 15:11:08 ') customtime, 6 customvalue of all the double union
    3 select 101,' name1. VALUE ', to_date (November 27, 14 15:12:08 '), 9 union double all the
    4 Select 101,' name1. VALUE ', to_date (November 27, 14 15:36:55 '), 33 union double all the
    5 Select 101,' name1. VALUE ', to_date (28 November 14 09:11:22 '), 8 of all the double union
    6 select 101,' name1. VALUE ', to_date (28 November 14 11:12:43 '), 14 union double all the
    7 select 101,' name1. VALUE ', to_date (28 November 14 23:36:11 ""), 21 union double all the
    8 select 102,' name2. VALUE ', to_date (November 27, 14 15:03:15 '), 1 Union double all the
    9 select 102,' name2. VALUE ', to_date (November 27, 14 15:22:08 '), 15 union double all the
    10. Select 102,' name2. VALUE ', to_date (November 27, 14 15:34:55 '), 24 union double all the
    11. Select 102,' name2. VALUE ', to_date (28 November 14 10:33:22 '), 7 of all the double union
    12. Select 102,' name2. VALUE ', to_date (28 November 14 14:21:43 '), 19 union double all the
    13. Select 102,' name2. VALUE ', to_date (28 November 14 21:22:06 '), 46 to double Union all the
    14 select 102,' name2. VALUE ', to_date (November 29, 14 12:33:22 '), 10 of all the double union
    15 select 102,' name2. VALUE ', to_date (29 November 14 13:34:43 '), 20 of all the double union
    16. Select 102,' name2. VALUE ', to_date (' 29 November 14 17:55:06 "), 30 double
    17            )
    18 SELECT ID,
    NAME OF 19,
    20 MIN (CUSTOMTIME) AS MIN_CUSTOMTIME,
    21 MIN (CUSTOMVALUE) KEEP (DENSE_RANK FIRST ORDER BY CUSTOMTIME) AS MIN_CUSTOMVALUE,
    22 MAX (CUSTOMTIME) AS MAX_CUSTOMTIME,
    23 MAX (CUSTOMVALUE) KEEP (DENSE_RANK LAST ORDER OF CUSTOMTIME) AS MAX_CUSTOMVALUE
    24 FROM POWER_CONSUMPTION
    25 GROUP BY ID,
    NAME OF 26,
    27 TRUNC (CUSTOMTIME)
    28.

    ID NAME MIN_CUSTOMTIME MIN_CUSTOMVALUE MAX_CUSTOMTIME MAX_CUSTOMVALUE
    ---------- ----------- ----------------- --------------- ----------------- ---------------
    NAME1 101. VALUE 27/11/14 15:11:08 27/6/11/14 15:36:55 33
    NAME1 101. VALUE OF 28/11/14 09:11:22 8 11/28/14 23:36:11 21
    NAME2 102. VALUE 27-11-14 15:03:15 27 1/11/14 15:34:55 24
    NAME2 102. VALUE OF 28/11/14 10:33:22 7 11/28/14 21:22:06 46
    NAME2 102. VALUE 29/11/14 12:33:22 29/10/11/14 17:55:06 30

    SQL >

    SY.

  • Last night my operating system not found a set file and reloaded among other Outlook express things - is it possible to recover the address book, folders and emails?

    Last night my operating system not found a set file and reloaded among other Outlook express things - is it possible to recover the address book, folders and emails?

    original title: Outlook Express problem

    Hi John,.

    Try to locate your data from outlook express:

    Click on start-> Run & paste-> %userprofile%\Local Settings\Application Data\Identities

    You will see the folders as {xxxxxx-xxxx-xxx-xx-xxxxxxxxxxxx} click-> Microsoft-> Outlook Express, you should be able to locate the DBX files, these are the outlook database files. Ideally, you should see inbox.dbx, Sent Items.dbx... check the size of the file.

    Now to get it back on outlook express, open outlook express-> click on tools-> Options-> maintenance-> the storage location.

    Click on change location, and then select the location that you have your data in.

    For the address book, see: click Start-> Run and paste the following:

    %USERPROFILE%\Application Data\Microsoft\Address Book

    Address book with wab extension, these should reflect your Outlook Express user name.

    I hope this helps.

  • is it possible that a single screen will work with the slider and second focus mode

    Hello

    can you please tell me is it possible that a single screen will work with cursor mode and second focus mode.

    Thank you

    Hello

    I don't think that it is possible to change the mode of the development of your application outside of in the config.xml file.

    A custom extension may be able to do this, but I have not seen anyone this yet.

  • Problem of using IE 8 with Hyperion Planning and workspace

    Has anyone tried using IE 8 with Hyperion Planning and workspace? I found that sometimes it has the error message and cannot allow users to log out.

    Hello
    We tried IE8 with system 11. It simply doesn't get it. IE8 is not officially supported yet. And over the years, I have learned this lesson: never use a new browser, unless it is officially in charge.
    You can find a page very useful here in this link to see what is currently supported for your release.
    http://www.Oracle.com/technology/products/bi/Hyperion-supported-platforms.html

    Alp

  • ORA-01427 single row subquery return several rows.

    It's my request. Something wrong with this request... ?


    UPDATE OT_QUOT_COMP_MRN MNR
    SET THE MNR. LINKS_1 = (SELECT IN. LINKS TO MNR, OT_QUOT_COMP_PO PO OT_QUOT_COMP_MRN WHERE MRN.) LINKS IS IN.. VOUCHER_NO
    AND IN. LINKS LIKE 'QTN %' AND THE MNR. LINKS_1 NOT LIKE '% QTN %')
    WHERE EXISTS (SELECT IN. LINKS TO OT_QUOT_COMP_PO IN. WHERE MNR.) LINKS = IN. VOUCHER_NO AND IN. LINKS LIKE 'QTN %' AND THE MNR. LINKS_1 NOT LIKE '% QTN %')

    Thank you and best regards!

    Deva

    Perhaps update a join

    update (select mrn.links_1 x_links_1,po.links y_links
              from ot_quot-comp_po po,
                   ot_quot_comp_mrn mrn
             where po.voucher_no = mrn.links
               and instr(po.links,'QTN') > 0
               and instr(mrn.links_1,'QTN') = 0
           )
       set x_links_1 = y_links
    
  • error subquery returns more rows with trigger

    Hi people,

    I have tried to create a table of simple 'States' of the listing of the United States with abbreviations and an ID for each. I try to accomplish this by selecting a separate request of abbreviations for the State from another table, and then insert that into a new table and have an ID getting automatically assigned by a trigger.

    My shutter button looks like this:

    CREATE OR REPLACE TRIGGER "SCHEMA". "" STATE_T1 ".
    FRONT
    Insert on STATESTBL for each line
    Start
    IF: NEW. ST_ID IS NULL THEN
    SELECT STNAMESEQ. NEXTVAL INTO: NEW. ST_ID FROM DUAL;
    END IF;

    end;
    /

    I'm trying the following insert statement

    INSERT INTO STATESTBL

    (ST_ID, STATE_ABR)

    VALUES

    (STNAMESEQ. NEXTVAL, (SELECT DISTINCT FROM NETWORKORDERS WHERE STATE IS NOT NULL))

    I must be missing something, obviously, but I'm not understand right now. Can anyone give me any direction on this matter, please?

    My hope on this was that I would get a collection of about 54 lines (there are some things like VI, PR, etc. other than the top 50) and the lines would be created.


    Thank you!

    You probably meant to say:

    INSERT INTO STATESTBL (STATE_ABR)

    SELECT DISTINCT STATE from NETWORKORDERS WHERE STATE IS NOT null;

  • With one of several rows with the same value for the same ID

    Hello

    I have this request:

    SELECT

    Count (case when EXISTS ())

    SELECT *.

    FROM business_log bl, su topic

    WHERE su.ID_SUBJECT = s.ID_SUBJECT

    and bl.id_subject = su.id_subject

    AND bl.value = 'resolved '.

    )

    then 1 end another null) num_solved

    OF THE subject

    It is possible that a subject is more than once 'resolved' in the table BUSINESS_LOG

    I want to count only one line solved for a topic.

    I need to use only under RESERVE the table in the main query due to other counts.

    Thank you very much.

    Concerning

    Milos

    Post edited by: 2796614

    in the examples before we talked abount 'Resolved' instead of 'resolved' as in your last example... to let you know, how it is stored.

    I had advice is not to use SEPARATE.

    So what... the evidence that any other question is faster than anything goes business_log, filter lines and can count distinct keys...

    separate within a group function is not the same thing as do select distinct...

    HTH

  • Problems of RoboHelp 7 HTML with whtbar.js and the previous topics of WebHelp

    Hello

    I have posted before with great success on the whtbar.js file. For example, in one of our products, the WebHelp opens within the program, so I had to make sure I always checked in the old whtbar.js under version control file, replacing the last file whtbar.js created during the compilation of RoboHelp. Otherwise, the previous and next topic navigation would not work. So, which was not a problem since then. Now we have two new products that I created WebHelp projects for, but the buttons back and before previous/next topic do not work.

    When I compile projects Robohelp, the sequence through the left and right arrows appear, but do not work. I use just the browser buttons next and previous. So I can only confirm their appearance so that a browse sequence is implemented in my project. Well, a bit over the last few days, I noticed that these previous topic and next arrows do not work in the two news accessed by a link from a web page of finished products.

    Should I use the last updated during the last compilation whtbar.js file and keep it archived in our software source SVN control? Unlike my first project of WebHelp, these are accessible from a URL and not inside a .exe. So, I think that the restriction of the use of the original whtbar.js file may not affect the two new WebHelp projects, whose assistance is accessible from a link on a web page. Does anyone have a suggestion?

    I use RoboHelp HTML 7. The upgrade would eliminate any of these problems? With 7, I have to edit the whver.js file to get help to work properly in Google Chrome, so I usually just check all new files in SVN and then delete a single file and replace it with the file that had the additional Chrome tag. Are there features that anyone finds particularly useful in the new versions?

    Finally, on an unrelated note, when you import topics in a new project (after the import of models), is anyway for the subjects copied keep their models and indexing? Looks like there must be, but I have not understood that yet.

    Thanks for all your help,

    Kevin

    Hi Kevin

    Here's the skinny.

    First of all, I will talk about the basic of a sequence function to browse.

    A browse sequence is nothing more than a set list of topics. Very similar to links in a chain. The intention is that the user will work since the topic first in the sequence of the last in the order of the list. In the skin, if the first topic that is part of a sequence is presented in the topic pane, the previous button is disabled because there is nowhere to go 'Back' to. It is the starting point. The next button is available. Once you click on the next button, the next topic in the sequence is presented, and the two buttons are now enabled. (On condition, of course, that there are at least three subjects in the sequence.) Once the last subject of the sequence is presented, the next button is disabled while it is has no other defined subjects to visit. But the back button is enabled allowing you to work your reverse path in the chain.

    In a release of WebHelp and FlashHelp stripped with no special changes, the buttons are placed in this area if you have defined a sequence through and if you chose to present the sequence go through the recipe for single source layout.

    Now there are several ways to step beyond RoboHelp and monkey with its matching files to bend to our whims. Long ago, I discovered that you can cajole these buttons allow to present, and then modify some of the files so that the buttons using JavaScript for the history of massage. I have therefore thought that maybe by copying the updated file javascript, this had been done and that would explain the behavior entirely.

    What I'm thinking, is that in the previous project where things seem to work, it was in reality a set sequence. But in these projects where things seem broken, no sequence has been defined, so the behavior.

    Click on the link below to learn more

    My RoboWizard site linked above, you can also freely download a file called "The Skinny on Skins", where I detailed how to make buttons Previous and Next behave like browser buttons next and previous.

    See you soon... Rick

    Useful and practical links

    Wish to RoboHelp form/Bug report form

    Begin to learn RoboHelp HTML 7, 8 or 9 in the day!

    Adobe Certified RoboHelp HTML Training

    SorcerStone blog

    RoboHelp EBooks

  • Choose several folders with choosing menu and empty their contents

    Hi all

    new to applescript and want to create a file menu choose where I can choose several folders and empty their content. There will be a dialog box at the end let me know that the files have been purged. The script I'm working for an individual file:

    say application 'Finder '.

    Close each window of

    Open (choose folder with prompt "including one or more folders should purge?" multiple selections allowed location 'True' by default ' / users/bryceratops / ')

    Set an to front Finder window

    move each agenda a in the trash

    Close front The Finder window

    end say

    say application 'Finder '.

    display the dialog box buttons "purged records." {"ok"}

    end say


    But Im having this script to open, purge and close every finder window, if I selected several files in the menu choose a wire installation difficult.


    Any ideas?


    See you soon

    Hello

    Put the output of the command 'choose folder' in a variable (no need to open these folders).

    ----

    the tFolders value (choose a folder with default location "including one or more folders should purge?" guest "/ users/bryceratops / ' with multiple selections allowed)

    Tell application "Finder".

    Repeat with thisDir in tFolders

    remove items from thisDir - trash

    end repeat

    tell the end

    activate

    display the dialog buttons "purged records." {"ok"}

    ---

  • Startup problem: first black-wallpaper appears with the logo, and then the screen goes to the Microsoft screen with green moving bar "Please wait".

    My computer is having problems loading the main office. I start it up, the first black-wallpaper with the logo is displayed, then the screen goes to the Microsoft screen with the green bar of movement. After that, the Windows logo appears and makes the sound. A new screen will appear with a "start-up Fund" and he said: "Please wait...". "This form of lasting about 5 to 8 minutes, then the text disappears, with only the bottom upward. I left it sitting there on the blank screen for about 20 minutes, and still nothing changes. I tried Ctrl + Alt + Delete, and shows nothing. Finally restart manually, but the same problem occurs. The only way that this works is in Mode safe mode with networking (which is currently used). I also tried the system restore, but this does not work because by default it must go through the same problematic steps, as mentioned previously.

    Hi ninja_panda13,
     
    -Remember to make changes to your computer after that this problem started to happen?
     
    As you are able to boot mode safe mode with networking, put your computer in a clean boot state in order to verify if any third-party application is causing this problem.
     

    Put your boot system helps determine if third-party applications or startup items are causing the problem. If so, you need to maybe contact the manufacturer of the program for updates or uninstall and reinstall the program.

    See KB Microsoft article below for more information on how to solve a problem by performing a clean boot in Windows Vista or in Windows 7:How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    http://support.Microsoft.com/kb/929135

    Note: After troubleshooting, be sure to set the computer to start as usual as mentioned in step 7 in the above article.

  • several loops with error handling and controll

    I have a project where I spin 4 loops at the same time and must stop all the loops with a stop button as well as all the loops if one of the loops will receive an error.

    Loop 1.

    Loop start

    control the other 3 loops

    Loop 2.

    Analog voltage reading

    Loop 3.

    Digital inputs to read

    Loop 4.

    Write digital output

    Someone knows how to do this?

    Two other methods not mentioned in the otherwise excellent document that mentioned Matt are the use of a global variable 'stop all' and a relative using a Global Variable of VIG/functional.  The reason to talk about, is that they can be used also stop 'detached' live, live which are defined to run asynchronously (and therefore a bit 'out of control') regarding the main VI.

    I use a "combination of ingredients" for some projects I'm developing using LabVIEW 2016 and its support of the channels.  For example, I use a Messenger channel to create something akin to a message in queue manager.  When the event loop detects that the exit button has been pushed back, it puts a Message "Exit" on the channel of Messenger and stops himself.  When the Message Loop sees "Exit", it sends one release Message who else has need to see (in one case, the producer of a producer/consumer model) and stops himself.  When the producer Gets the output Message, it puts a "last element is invalid" on the flow of the channel for consumers and stops himself.  When the consumer gets the message of the last element, he stops himself.  A magnificent waterfall.

    And I work (not yet 100% complete) how to extend this to start the asynchronous calls that do not (yet) support channels as easily...

    Bob Schor

  • Acer aspire problem vn7 - 591 g nitro with high CPU and GPU temperatures

    Hello! I recently noticed some issues (lower fps) performance when you play semi demanding like cs and Overwatch, although pretty much the lowest settings. I went to download CPUID (software to monitor your hardware) to check my temperature and I noticed that I reach 90 low to high (depending on the game) when I play.

    I thought it might be dust or something inside so I removed the keyboard of the laptop part and used some canned air to remove any dust I could reach (without removing the motherboard). I also managed to get your hands on a laptop computer, cooling rack. The problem is that all these efforts really solved the problem. Just a slightly lower temperature on the GPU and about the same on the processors. I'm starting to wonder if it could be the thermal paste, which need to be replaced? I had the computer for a little over a year now. Does anyone else know similar problems? Help or advice would be appriecated.

    Hello

    The CPU and the GPU are designed to operate at these temperatures. If they are too high they will be the butterfly, and if even this does not then at some point they just instantly shut down to avoid any possible damage.

    Changing thermal paste may improve performance, but you will only get lower temperatures. Your CPU/GPU will probably run at higher clock speeds and will not throttle, but temperatures will be in the same range. But in my experience if you can change the thermal paste, you should.

    Also, you can use the laptop fan control that has the configuration for 591g and it may further increase the fan speed. I think, from the factory, the maximum speed of the fan is just about 60-70%.

    https://github.com/Hirschmann/NBFC/

  • Need help with setting wrong and impossible to find ways to fix

    Hello

    I just installed LM and imported photo. However, I might accidentally click on a few buttons and all the picture in the section developing shown like this. They appear with weird colors (color incorrect). I guess that it maybe because of some settings, but I can't understand that one. Please see the example in this picture (has not edited anything yet). Could you suggest how to correct the adjustment? Thank you very much for your help.

    1.jpg

    Go to Preferences, click the performance tab, and then uncheck the box.

  • Help with setting level and hard drive space allocation

    I use a Macbook Pro, aged 1 year, 200 GB of HD.  When I first installed the merger about a year ago, I think I have too much space allocated for the merger.  I allocated 100 GB (basically split the Mac HD).  I use many more apps in XP Pro as on the Mac side.  Now, I met two problems:

    1. I'm running out of space on the side Mac (went to update the Mac OS software recently and I was told I couldn't because of the lack of space; need to 9 GB and had only 4 GB of available). Then, I went to Fusion update (am currently uses version 1.1.3) and following the instructions of PDF of VMWare, went to duplicate virtual machine and could not do. Windows XP virtual machine uses 110 GB according to Get Info, so it's too big to duplicate.

    When I check the size of the virtual C drive on side Windows that indicates that I use GB 49 of the 100 assigned and a bit more 50 GB is unused space.  I know that I do not understand the virtual machines and, apparently, I thought it was just too much space on the windows 'side' is actually space on the Mac 'side' so. Don't know if it is correct or not.  Anyway, it seems to me that I was able to allocate less space to the virtual machine, and then have the space to reproduce?  Is this correct?  If so, how do I?

    2. assuming that the above problem can be straightened out, can I just install the latest version of the merger by the instructions by VMWare PDF file?

    Any help much appreciated and thanks in advance,

    Win

    Yes you can upgrade now if you want and you can download the latest (including 2.0.4 at present) version of the Web Site from VMware and is a free update for users of Fusion 1.x and it uses Fusion 1.x serial number.

    I'll get back to you later today on what else can be done to limit the growth, however, preventing you from upgrading.

Maybe you are looking for

  • How can I make iOS rescan my photo library, searching for old memories?

    When I used iOS 10 beta publice photos do a scan on my photo library in the background. Then I went back to iOS 9.3.2 after that I installed iOS 10 once the same memories where it so I deleted them in DSB to make the photo scan my photo library app o

  • How to install Firefox Beta 7 separately if I already have Firefox 3.6.20?

    I am currently using Mac OS 10.5.8 with Firefox 3.6.20 and have a lot of user profiles, each with many tabs as I certainly don't want to lose. Therefore, I want to test Firefox Beta 7 or 6 without losing my 3.6.20 Firefox installation and usage profi

  • Re: Equium L40 - 17M - cable replacement

    Hello I have an Equium L40 - 17M.The cable between the power supply & laptop has been broken!Buy this track?The connector that goes into the laptop has a name?

  • HP 8100 Elite: Trays SSD too narrow for HP 8100 Elite crack

    I'm puzzled.  I want to install an SSD attached to a status bar standard 4 "in an HP Elite 8100.  The slot is 4 1/4 "wide and there is in any case without screw holes in the cage.  What kind of Pan do need me?  Or are there special screws or washers?

  • Lenovo tablet gmail broken k1 video

    Hi guys,. I think I found the specific problem of K1. I own a Think pad Tablet, and we bought a K1 for my father in law for Advent. He complained that he can't get all its e-mail messages (about a dozen) through the gmail client. On TPT, gmail is tri