Can someone help with this request please

I have a table something like below

Things_t
Characteristic of things float value
Element 1 red color
1 packaging
Point 2 square shape
Point 2 brand Spunk

Now I want to reterive an element with any of its tank as Null values. Using the query 'select distinct things from things_t, where there is no char value' fetch element 1 also with point 2. I want to retrieve a record of the thing for which none of the tank, the values are Null as point 2. Can you please help me with this request.

Try this:

WITH t AS
(SELECT 1 item_id, 17436 chr_id, 14225034 chr_val_id FROM dual UNION
 SELECT 1 item_id, 39 chr_id, 14276173 chr_val_id FROM dual UNION
 SELECT 1 item_id, 17774 chr_id, NULL chr_val_id FROM dual UNION
 SELECT 1 item_id, 265 chr_id, 20502978 chr_val_id FROM dual UNION
 SELECT 1 item_id, 16978 chr_id, 797233 chr_val_id FROM dual UNION
 SELECT 1 item_id, 13092 chr_id, 5666917 chr_val_id FROM dual UNION
 SELECT 1 item_id, 15228 chr_id, 1209758 chr_val_id FROM dual UNION
 SELECT 2 item_id, 112 chr_id,  12705342 chr_val_id FROM dual UNION
 SELECT 2 item_id, 6945 chr_id, NULL chr_val_id FROM dual UNION
 SELECT 2 item_id, 70 chr_id, 12597376 chr_val_id FROM dual UNION
 SELECT 2 item_id, 16832 chr_id, NULL chr_val_id FROM dual UNION
 SELECT 2 item_id, 7886 chr_id, 9588619 chr_val_id FROM dual UNION
 SELECT 2 item_id, 6986 chr_id, 2659351 chr_val_id FROM dual UNION
 SELECT 3 item_id, 9531 chr_id, 8910943 chr_val_id FROM dual UNION
 SELECT 3 item_id, 9798 chr_id, 8717531 chr_val_id FROM dual UNION
 SELECT 3 item_id, 17446 chr_id, 12266441 chr_val_id FROM dual UNION
 SELECT 3 item_id, 4830 chr_id, 13683090 chr_val_id FROM dual UNION
 SELECT 3 item_id, 9518 chr_id, 834772 chr_val_id FROM dual UNION
 SELECT 3 item_id, 11031 chr_id, 20233753 chr_val_id FROM dual UNION
 SELECT 3 item_id, 12564 chr_id, 2282478 chr_val_id FROM dual)
SELECT DISTINCT item_id
FROM   t
MINUS
SELECT DISTINCT item_id
FROM   t
WHERE  chr_val_id IS NULL

Or this:

SELECT item_id
FROM  (SELECT   item_id,
                MIN(NVL(chr_val_id, -1)) min_chr_val_id
       FROM     t
       GROUP BY item_id)
WHERE  min_chr_val_id != -1

Published by: lee200 on October 15, 2012 09:22

Tags: Database

Similar Questions

  • Can someone help with this statement?

    SELECT count (*) from document_master
    where PROJ_id = "888"
    and doc_status = 'I '.
    and rec_update_date like ' % 08'.
    rec_update_date desc order


    This gives result numbered for a column that ends in 08.
    Can someone tell me how to generate a list of 09, 08, 07, 06, etc...

    I tried
    and rec_update_date like ' %-08' or rec_update_date like ' %-09'.
    I also tried
    and rec_update_date like ' % 08'.
    and rec_update_date like ' %-09'.

    neither work.

    I appreciate all help.

    Thank you

    What is the rec_update_date column data type? It if DATE, right? If so, you question is completely wrong. Condition rec_update_date like ' %-08' force the implicit conversion from DATE to string using default data format that's in your case, be MON-JJ-AA and dependent client session.» So if the user whose session has different default date format runs your code it will not get the expected results:

    SQL> alter session set nls_date_format = 'DD-MON-YY';
    
    Session altered.
    
    SQL> select sysdate from dual;
    
    SYSDATE
    ---------
    31-JUL-09
    
    SQL> select sysdate from dual where sysdate like '%-09';
    
    SYSDATE
    ---------
    31-JUL-09
    
    SQL> alter session set nls_date_format = 'MM/DD/YYYY';
    
    Session altered.
    
    SQL> select sysdate from dual;
    
    SYSDATE
    ----------
    07/31/2009
    
    SQL> select sysdate from dual where sysdate like '%-09';
    
    no rows selected
    
    SQL> 
    

    Looks like you want to select counties of line for each year. If so, use:

    select trunc(rec_update_date,'YYYY'),count (*) from document_master
    where PROJ_id = '888'
    and doc_status = 'I'
    group by trunc(rec_update_date,'YYYY')
    order by trunc(rec_update_date,'YYYY') desc
    /
    

    SY.

  • I have a Compaq W17q monitor. The menu for the monitor keeps appearing on the screen and I can't turn it off. Can someone help with this problem?

    The menu for the monitor screen keeps popping up on my screen and I can't remove it with the menu button.  Help, please.  It interferes with the work on the computer.

    Contact Compaq support.

  • I got updates for windows vista, but now my microsoft Word 2007 does not work. It ask for a product key and I put one of the dvd case, but he said that is not correct, I use program can someone help with this problem.

    product key no longer works on my office 2007 business what could be the problem?

    Hi Cincmj,

    Welcome to the Microsoft Answers Community Forum site!

    The question you have posted is related to Microsoft Word and would be better suited to the community of the Office Applications.

    Please visit the link below to find a community that will support what ask you:
    Discussions in Desktop Applications
    http://www.microsoft.com/office/community/en-us/FlyoutOverview.mspx , that allows to solve your problem!

    I hope this helps!

    Thank you best regards &,.
    Calogero - Microsoft technical support.
    Visit our Microsoft answers feedback Forum
    http://social.answers.Microsoft.com/forums/en-us/answersfeedback/threads/ and tell us what you think

  • Can someone help with this dialog box?

    I've set up a dialogue, but I don't know how to run properly...

    (1) I want the check box turn off the last 3 fields and make their value to be the same as the first field.

    (2) have the variables of the fields and selected radio to come to the alert

    #target illustrator
    
    //window
    var win = new Window('dialog', "My Dialog");
    this.windowRef = win;
    
    //panels
    win.fieldpanel = win.add("panel", undefined, "");
    win.radiopanel = win.add("panel", undefined, "");
    
    //panel orientation
    win.fieldpanel.orientation='row';
    win.radiopanel.orientation='row';
    
    //fieldpanel
    win.fieldpanel.panel1 = win.fieldpanel.add('panel', undefined, "Left");
    win.fieldpanel.panel2 = win.fieldpanel.add('panel', undefined, "Right");
    win.fieldpanel.panel3 = win.fieldpanel.add('panel', undefined, "Top");
    win.fieldpanel.panel4 = win.fieldpanel.add('panel', undefined, "Bottom");
    
    win.fieldpanel.panel1.left_input = win.fieldpanel.panel1.add('edittext', undefined, "0");
    win.fieldpanel.panel2.right_input = win.fieldpanel.panel2.add('edittext', undefined, "0");
    win.fieldpanel.panel3.top_input = win.fieldpanel.panel3.add('edittext', undefined, "0");
    win.fieldpanel.panel4.bottom_input = win.fieldpanel.panel4.add('edittext', undefined, "0");
    
    win.fieldpanel.panel1.left_input.characters = 5;
    win.fieldpanel.panel2.right_input.characters = 5;
    win.fieldpanel.panel3.top_input.characters = 5;
    win.fieldpanel.panel4.bottom_input.characters = 5;
    
    win.fieldpanel.check1 = win.fieldpanel.add('checkbox', undefined, "Equal"); 
    
    //radiopanel
    win.radiopanel.radio1 = win.radiopanel.add('radiobutton',undefined, "Option 1"); 
    win.radiopanel.radio2 = win.radiopanel.add('radiobutton',undefined, "Option 2"); 
    win.radiopanel.radio3 = win.radiopanel.add('radiobutton',undefined, "Option 3"); 
    
    //select first radio button
    win.radiopanel.radio1.value = true;
    
    //ok button
    win.okbutton = win.add('button',undefined, "Ok"); 
    
    //disable fields with checkbox and equal values
    win.fieldpanel.check1.onCLick = function() {
      if(win.fieldpanel.check1.value){
        var leftvalue = win.fieldpanel.left_input.text;
        win.fieldpanel.right_input.text = left;
        win.fieldpanel.top_input.text = left;
        win.fieldpanel.bottom_input.text = left;
    
        win.fieldpanel.right_input.enabled = false;
        win.fieldpanel.top_input.enabled = false;
        win.fieldpanel.bottom_input.enabled = false;
      } else {
        win.fieldpanel.right_input.enabled = true;
        win.fieldpanel.top_input.enabled = true;
        win.fieldpanel.bottom_input.enabled = true;
      }
    };
    
    //event listener for radio buttons
    win.radiopanel.radio1.onClick = win.radiopanel.radio2.onClick = win.radiopanel.radio3.onClick = function () {
      var selected = "";
      if(win.radiopanel.radio1.value) {
        selected = 1;
      }
      else if(win.radiopanel.radio2.value) {
        selected = 2;
      }
      else if(win.radiopanel.radio3.value) {
        selected = 3;
      }
    };
    
    //event listener for ok button
    win.okbutton.onClick = function(){
      var left = win.fieldpanel.left_input.text;
      var right = win.fieldpanel.right_input.text;
      var top = win.fieldpanel.top_input.text;
      var bottom = win.fieldpanel.bottom_input.text;
      if (selected = 1) {var option = "Option 1"};
      if (selected = 2) {var option = "Option 2"};
      if (selected = 3) {var option = "Option 3"};
    
      win.close();
      alert(left+", "+right+", "+top+", "+bottom+", "+option);
    };
    
    win.show()
    

    you have a number of syntax errors, except that it should work

    case sentive

    //disable fields with checkbox and equal values
    win.fieldpanel.check1.onCLick = function() { // misspelled

    in a lot of lines like below in pink you miss panel1 panel2, panel3, panel4

        var leftvalue = win.fieldpanel.left_input.text; // missing panel1

    left is undefined, it should be leftvalue

    Win.fieldpanel.right_input. Text = left; must be leftvalue

  • Old macbook pro drive dead... need to reinstall Design & Web Premium CS6 MAC EU on my new macbook pro... I have my serial number for my adobe ID... can someone help... Please?

    Old macbook pro drive dead... need to reinstall Design & Web Premium CS6 MAC EU on my new macbook pro... I have my serial number for my adobe ID... can someone help... Please?

    Please see the applications download Creative Suite 6

    Hope this will help you.

    Kind regards

    Hervé Khare

  • Installation update for creative cloud can never exceed 2%, which means that I cannot have access to Premiere Pro. Can anyone help with this?

    Installation update for creative cloud can never exceed 2%, which means that I cannot have access to Premiere Pro. Can anyone help with this? I need urgent access to Premiere Pro, so I can return videos to my clients.

    Check your (win) Task Manager or activity (mac) for a suspended adobe monitor helps the process that you can complete.

  • Illustrator draw android app says that it requires 4.3. I have a viking RCA pro 10.1 which is 5.0, but it says that my device is not compatible. Can anyone help with this?

    Illustrator draw android app says that it requires 4.3. I have a viking RCA pro 10.1 which is 5.0, but it says that my device is not compatible. Can anyone help with this?

    HI JBlessed,

    What is a Tablet? Because the draw is not yet supported on Android tablets.

    Sue.

  • I have Outlook Express 6. When I try to send/receive my mail I get this error: Protocol: POP3, Port: 110, secure (SSL): no, error number: 0x800C0133 can anyone help with this please

    I went and read a few articles on this I tried to delete the Folders.dbx, renamed server, flip pass and username. I just can't go there. Can anyone help on this.

    Thank you

    It isn't Folders.dbx which is screwed, it's Inbox.
     
    **************************************************
     
    Error number: 0x800C0133 = a corrupt Inbox.
     
    Move any message you want to save to a local folder that you create. Then, remove the problem of Inbox as follows.
     
    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.
     
    In Windows XP, Win2K & Win2K3 the OE user files (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder options | View.
     
    With OE closed, find the box of Inbox.dbx and delete it. Another will be created automatically when you open OE.
     
    General precautions for Outlook Express:
     
    Do not archive mail in the receipt or sent items box. Create your own user-defined folders and move messages you want to put in them. Empty the deleted items folder daily. Although the dbx files have a theoretical capacity of 2 GB, I recommend all a 300 MB max for less risk of corruption.
     
    After you're done, followed by compacting your folders manually while working * off * and do it often.
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the processors and causes a multitude of problems such as time-outs and account setting changes. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3
  • Can someone help with the scripts on this file?

    Hi, I hope someone with a bigger brain can help me here.

    I have an existing Flash CS3 file that makes up the result to http://www.infusion-set.com/Flash/eLearning/Inset30/inset30_eguide.html .

    The customer asked if I could add an extra tab at the top after that 'group' called 'Contact us' with link to an additional page. The design was done in ActionScript 2 with references to XML files for dynamic content because it has been done in other languages.

    I modified the XML file with the correct references to a new page and a .swf file that accompanies it to play in the field of animation.

    I tried a .fla version where I duplicated one of the existing tabs script, changed the XML references and changed the variables if necessary to "con or"Con"(which is to reach us). Unfortunately, he made the menu tab go completely off the page and was patently false in some way.

    Can someone give me a clue as to what to change here on the original file that I am a novice with ActionScripts, so ask me.

    For reference, I have attached the HTML files with scripts of original file and my incorrect version. The chronology is 103 images with the scripts placed in frame 1 and 102

    Thank you.

    Garry

    The buttons are all created using the same library object (but MC), except for the code you have in the revised file does not call on it for the con button.

    You calling on something with a name of 'con' link, which tells me that a quick check is not - then it is undefined in the code when you try to use it.  I found this by using trace (newConBut._x); After its _x value was assigned, as I said, you should try.   So the first thing you want to do is to change the following line from...

    var newConBut = _root.attachMovie ("con", "conbut", _root.getNextHighestDepth ());

    TO

    var newConBut = _root.attachMovie ("but", "conbut", _root.getNextHighestDepth ());

    so that it uses the but MC who is used to this end in the library.  So, you want to correct the assignment _x of the buttons and I think that you had previously...

    newConBut._x = 650 - newConBut._width;
    newRecBut._x = newConBut._x - newRecBut._width;

    Here is a picture of what these changes (note, without the XML file, I had to finagle things just to work, then the labels of biutton are not what they will be)...

  • problems with messenger facebook can anyone help with this

    My facebook messenger is installed successfully but yet when I open it, just of maintains load and does not open even the newspaper on the page please help me with this

    Contact Facebook support for help with their program.

  • can someone help with the following code plsql errors...

    Hello

    If anyone can help with the following code... to get a successful outing.

    create or replace package lib_01 as

    procedure lib_proc01 (p_user_id in numbers, p_user_name in varchar2);

    end lib_01;

    create or replace package body lib_01 as

    procedure lib_proc01 (p_user_id in numbers, p_user_name in varchar2) as

    number of v_user_id;

    v_user_name varchar2 (50);

    number of v_avl_books;

    number of v_avl_days;

    date of v_end_date;

    date of v_return_date;

    Start

    dbms_output.put_line ('Enter User Name');

    dbms_output.put_line (' username :'|| p_user_name);

    Select user_id, user_name in v_user_id v_user_name of user_registration where user_name = p_user_name;

    If v_user_name <>p_user_name then

    dbms_output.put_line (' username is not.) Please submit full name ');

    end if;

    If v_user_id is null or v_user_name is null then

    dbms_output.put_line ("' user not found");

    validate_userLogin;

    on the other

    validate_issuedbooks (p_issuecount);

    end if;

    If v_issuecount < v_avl_books then

    issuebooks;

    on the other

    Number of return of late_fee (p_mem_id, p_extradays, p_latefee_total);

    end if;

    If paid_flag = "Y" then

    issuebooks;

    on the other

    dbms_output.put_line ("' book may be issued due to its maximum reached late fees");

    end if;

    end lib_proc01;

    procedure validate_userLogin is

    procedure reg_proc is

    procedure user_validate (p_id_proof in varchar2, p_id_no out varchar2) is

    v_id_proof varchar2 (20);

    v_id_no varchar2 (20);

    Start

    Select user_name, id_proof, id_no, v_user_name, v_id_proof, v_id_no of user_registration where id_proof = p_id_proof;

    If v_id_proof = "Adhar_Card" then

    dbms_output.put_line ('user a valid proof of ID');

    dbms_output.put_line (' and the id no. :'|| is p_id_no).

    on the other

    dbms_output.put_line ('Invalid ID evidence.) Please submit valid proof of ID ');

    end if;

    exception

    When no_data_found then

    dbms_output.put_line ('No Data found');

    end user_validate;

    procedure member_validate (p_mem_id series)

    v_mem_flag char (1);

    curr_date date: = sysdate;

    date of v_mem_enddate;

    Start

    dbms_output.put_line('Mem_flag:'|| v_mem_flag);

    Select mem_flag in the v_mem_flag of user_login where user_id = v_user_id;

    If v_mem_flag = 'n' or v_mem_flag is null then

    dbms_output.put_line ('The User do not have membership');

    on the other

    Select mem_id in the v_mem_id of user_login where user_id = v_user_id;

    dbms_output.put_line ('the user has membership');

    v_mem_id: = p_mem_id;

    Select mem_enddate in the member_login v_mem_enddate where mem_id = v_mem_id;

    If v_mem_enddate < curr_date then

    dbms_output.put_line ('Membership has expired' | v_mem_id |' on ' | v_mem_enddate);

    on the other

    dbms_output.put_line ('User a validity again' | v_mem_enddate);

    end if;

    end if;

    exception

    When no_data_found then

    dbms_output.put_line ("' no data found");

    while others then

    dbms_output.put_line (' another error.) Please find");

    end member_validate;

    Start

    insert into user_registration values ('& first_name ',' & last_name', null, ' & user_type',)

    address_ty ("& bldg_no",

    '& bldg_name',

    '& Street',

    ' & city ",

    '& State',

    '& zip'

    ),

    user_phone ',' & user_mail ',' mem_idproof', ' & id_no');

    Dbms_output.put_line ('user is properly registered');

    exception

    When no_data_found then

    dbms_output.put_line ("' data not found");

    end reg_proc;

    Start

    Dbms_output.put_line (' enter ID or user name ');

    Dbms_output.put_line (' username: ' | p_user_name);

    If v_user_name is null then

    Dbms_output.put_line ('user not found');

    reg_proc;

    Insert user_login SELECT user_id_seq. NEXTVAL, user_name, NULL, mem_id_seq. NEXTVAL, user_type FROM user_registration WHERE user_name is lower (p_user_name);

    Dbms_output.put_line (' because the user wants to have the membership? ");

    Dbms_output.put_line ('If Yes, please pay dues");

    INSERT INTO member_login SELECT mem_id_seq. CURRVAL, SYSDATE, SYSDATE + avl_days, 500, 'Y' of user_login ul, bl book_loan WHERE ul.mem_type = bl.mem_type AND user_name = p_user_name;

    END IF;

    exception

    When no_data_found then

    dbms_output.put_line ("' no data found");

    When too_many_rows then

    dbms_output.put_line (' too many lines).

    END validate_userLogin;

    procedure validate_issuedbooks (p_issuecount series)

    number of v_issuecount;

    Start

    Select user_login u, bl book_loan, avl_days, avl_books in v_avl_days, v_avl_books where bl.mem_type = u.mem_type and user_id = p_user_id;

    SELECT count (case when end_date < end return_date then p_mem_id) as invalidcount in v_issuecount from book_count where mem_id = p_mem_id;

    v_issuecount: = p_issuecount;

    dbms_output.put_line (' no. books that the user contains the :'|| p_issuecount);

    end validate_issuedbooks;

    procedure issuebooks is

    procedure book_avl (p_avl_now_flag in p_avl_date Boolean, date) is

    v_avl_now_flag char (1);

    date of v_avl_date;

    procedure reader_bookissue is

    Start

    insert into values drive (p_user_id, v_book_id, sysdate, sysdate, null);

    insert into book_count values(p_mem_id,v_book_id,sysdate,sysdate,null);

    Update book_availability set issued_to is "Reader" where book_id = v_book_id;.

    end reader_bookissue;

    Start

    Select book_name, b.book_id avl_now_flag v_book_name, v_book_id, v_avl_now_flag of the book b, book_availability b where b.book_id = ba.book_id and ba.book_id = p_book_id;

    If v_avl_now_flag = "Y" then

    dbms_output.put_line ('the book is available for issuance' | v_book_id);

    on the other

    Select mem_type in the v_mem_type of user_login where user_id = (select user_id from book_availability where avl_now_flag = 'n' and book_id = p_book_id);

    If v_mem_type = "Reader" then

    reader_bookissue;

    dbms_output.put_line (' the book is with Reader.) Please try tomorrow.') ;

    on the other

    dbms_output.put_line ('the book is member');

    end if;

    Select avl_date in the book_availability v_avl_date where book_id = p_book_id;

    v_avl_date: = p_avl_date;

    dbms_output.put_line (' the available date is: ' | p_avl_date);

    end if;

    end book_avl;

    Start

    insert into book_count values(p_mem_id,p_book_id,sysdate,sysdate+v_avl_days,v_return_date);

    Update book_availability set book_id = p_book_id, avl_now_flag = 'n', avl_date is to_date (sysdate + v_avl_days,' dd-mm-yyyy ""), issued_to = v_mem_type, user_id = p_user_id where mem_id = p_mem_id;

    commit;

    dbms_output.put_line ("' the book published successfully");

    end issuebooks;

    Number of function return late_fee (p_mem_id in number, p_extradays series, p_latefee_total number) is

    number of v_extradays;

    number of v_latefee_total;

    number of v_latefee_per_book;

    number of v_latefee_per_day;

    number of v_book_count;

    Start

    Select trunc (sysdate) - v_end_date in v_extradays from book_received where mem_id = p_mem_id and book_id = p_book_id;

    p_extradays: = v_extradays;

    v_latefee_per_book: = v_latefee_per_day * v_extradays;

    v_latefee_total: = v_latefee_per_book * v_book_count;

    p_latefee_total: = v_latefee_total;

    dbms_output.put_line ('The total AMT for not returned books' | p_latefee_total);

    end late_fee;

    end lib_01;

    Hello

    I checked the first 10 lines after the beginning and I could count already several errors.

    Is it an exercise or a real code, you must provide?

    Kind regards.

    Alberto

  • whenever I try to load need for speed underground 2, I get this error with vista can someone help me figure out please. __

    Problem event name: APPCRASH
    Application name: need for Speed Underground 2.exe
    Application version: 0.0.0.0
    Application timestamp: 417d8e48
    Fault Module name: need for Speed Underground 2.exe
    Fault Module Version: 0.0.0.0
    Timestamp of Module error: 417d8e48
    Exception code: c0000005
    Exception offset: 001d24c0
    OS version: 6.0.6001.2.1.0.256.1
    Locale ID: 1033
    Additional information 1: a613
    More information 2: 55689aa387c807ab900bd44bfa935768
    3 more information: b5ed
    Additional information 4: d06b121c03be15a74ebeeadaf13834df

    Hi Leinenweaverp,

    Welcome to Microsoft Vista answers Forum!

    I would like to ask you a few questions in order to get a better understanding of this issue.

    ·         Were you able to load this game before and play on it?

    Here are some steps that may help you.

    First of all, I suggest that you perform a clean boot on the computer and install the game and make sure if you are able to load the game and play on it, you can start Windows Vista by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    The following link has steps showing how to perform the clean boot: http://support.microsoft.com/kb/929135

    (1) perform the clean boot (check the link to perform the clean boot)

    (2) enable half the services

    (3) determine whether the problem returns

    (4) enable half of the startup items

    (5) determine if the problem returns

    (6) repeat the steps above until you find out which program or service is causing the issue

    After you determine the startup item or the service that is causing the problem, contact the manufacturer of the program to determine if the problem can be solved. Or, run the System Configuration utility, and then click to clear the check box of the element of the problem.

    Reset the computer to start as usual:

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    1. click on start, type msconfig.exe in the start search box and press ENTER.

    If you are prompted for an administrator password or for confirmation, type your password, or click on continue.

    2. on the general tab, click the Normal startup option, and then click OK.

    3. When you are prompted to restart the computer, click on restart.

    If the problem persists, I suggest that you contact the manufacturer of the game for further assistance, you can check the link: http://www.nfscars.net/home/index.aspx

    Hope this information is useful.

    Thank you, and in what concerns:
    Swathi B - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Please can anyone help with this?

    Basically, this is what im trying to reach

    I want an image on paper 15 x 10 inch 9.5x13.5 inches. So I need to resize my image, the image in original size without any cropping is 14.613x10.96 inches is slightly smaller after mounting and a bit of cropping. I was told I need 300 dpi for the laboratory to print it and was unsure about using the resample option because it can affect the quality. What would be the best way to do this is? I use ps cs6

    The pixels in your image, when the 300 per linear inch, provide the exact size you want.

    There is no need to modify the content of the image.

    When cropping a picture, you're not resampling.

    If the cropped image had a greater number of pixels in its length or width than the numbers you specified that you wanted the image either 9.5 x 12.5, to 300 ppi you must resample, throw pixels, in order to reach the size desired and res.

    Resampling indicates that pixels are subtracted or added to the file in order to adapt to a given change in the size and resolution.

    Do not add or remove pixels. You presented it in the size desired as 300 ppi. Quality is not diminished, not touched...

    If the lab wants an image that meets the specifications in my illustration above, you're good to go.

  • Please can someone help with: __Windows can not find C windows system rundll32 exe?

    I don't have a windows xp disc

    Hello Alcocer,

    Thank you for your message.  Click HERE and try a system restore to an earlier date when everything worked correctly.  If this does not work, you need an XP disk to run a repair of the system.
    See you soon

    Engineer Jason Microsoft Support answers visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for