Update records with different IDS

Hello

I am looking for the possibility to update some records using the new id with the column with a different id values

example of

the table contains some these documents:
id    gross      net

========================
7     0,1     0,0507749
8     0,2     0,1015499
9     0,5     0,2538748
10     0,83     0,4214
11     0,85     0,4315873
12     1,99     1,010422
13     2,44     1,2389094
14     0     0
15     2,59     1,3150719
16     2,99     1,5181718
40
41
42
43
44
45
46
47
48
49
and I would like to insert the same gross and net of IDS 7-16 column values
column with the ID of 40 to 49 in the same order.
This is why I would like to get the result that I describe below:
id    gross      net

========================
7     0,1     0,0507749
8     0,2     0,1015499
9     0,5     0,2538748
10     0,83     0,4214
11     0,85     0,4315873
12     1,99     1,010422
13     2,44     1,2389094
14     0     0
15     2,59     1,3150719
16     2,99     1,5181718
40    0,1     0,0507749
41    0,2     0,1015499
42    0,5     0,2538748
43    0,83     0,4214
44    0,85     0,4315873
45    1,99     1,010422
46    2,44     1,2389094
47    0     0
48    2,59     1,3150719
49    2,99     1,5181718
Thanks in advance
update  y1
set (gross, net)=(select gross, net from  y2 where y2.id=y1.id-33)
where y1.id between 40 and 49;

You must replace with your real tablename.
(not tested).

Tags: Database

Similar Questions

  • Update records with the text box

    APEX: 4.0.2

    THEME: SAND

    SERVER: Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server

    I'm just letting my user paste values in a text box, click a button and then update some fields for this record.

    I created an example with more comments on the page:

    workspace: stevendooley34

    username: dev01

    password: dev01

    application: examples of Forum

    page: update example

    Keep in mind: the apex, theme, and Server version are different where I created the example. The above version, theme and the server are the stats of my workplace.

    Thank you

    Steven

    -changes

    Or if the modification of the code below would be easier I can go that route.

    Update oef_itv_ndn

    Set cancelled_cd =: MMR_CANCELLED_CD.

    closed_date =: MMR_CLOSED_DATE.

    admin_remarks =: MMR_ADMIN_REMARKS

    where abc = '12345';

    I created a dynamic Action with the above code works correctly.

    but instead of "abc = '12345' 'I need it to be" where abc in: SEARCH_INPUT "

    : SEARCH_INPUT is the text box that users can paste values in this format:

    12345

    67890

    98765

    so, when it comes to the clause "where" I need to maintain all records that are in the text box.

    Post edited by: StevenD609

    The "WHERE" clause is in the wrong position.

    It should be part of the "USING" clause)

    (the nickname table 'data' is defined in the scope of this subquery)

    In addition, it seems to me good.

    If you're still having problems, you can go to the forum 'SQL and PL/SQL '.

    MK

  • Copy a few lines in the same table, but with different IDS

    Hi all
    I had this problem... I have a table with its pk (which is a sequence). With a statement select, I extract a few lines, and then I would record in the same table, but with IDS different (obviously eheheh).

    I don't know how to do...

    Thks for all help ;)


    p.s. I want to change some fields in lines before saving as well... don't know how do it more...

    example:

    ID NAME TYPE
    1 ferrari car
    2 cars lamborghini


    I'm trying to copy the second and changing its type in "BMW".

    I could result:

    1 ferrari car
    2 cars lamborghini
    3 bmw cars



    Thank you

    Assuming that your table is named cars_tb and the cars_seq of the sequence.

     insert into cars_tb
      select cars_seq.nextval, name, type
      from cars_tb
    

    This would overlap with any existing lines, but with a new id.

    If you want to duplicate a specific line and change a value, you could do something like:

     insert into cars_tb
      select cars_seq.nextval, name, 'BMW'
      from cars_tb
      where type = 'lamborghini'
    

    or better, use the PK

     insert into cars_tb
      select cars_seq.nextval, name, 'BMW'
      from cars_tb
      where id = 2
    
  • Updated App with different DPS license

    Can someone advise me on the following scenario. I have a multi App edition, version 1.0 live in the Apple store using the DPS account [email protected]

    I then upgraded the application 2.0 on the Apple store, but the new version uses a different account DPS, [email protected]

    What happens in this scenario? Especially for users of the application who have purchased a subscription to the title of the version 1.0 (ie the other DPS account).

    Note: The 2 DPS accounts above are 2 different licenses DPS.

    You must first build the new application for a new account using the same certificates and using the same bundle id and include the same product id subscription in App Builder. Then you must republish the folios of account new account DPS application. Publish these older folios with the same product id. In this way, when you create and update using the new DPS account, all your subscribers would have access to download the previously titled folios.

  • query users to mulitple update block with different values

    Hello

    I need to write a SQL script to update the information of multiple users (400) in the database.

    Here's the query I use to update a single user:

    setting a day of usr set usr_login = "ROBERTAA_OLDx", USR_EMAIL = 'robertaa@abadrer_dellllx.com' where usr_login = 'ROBERTA ';

    usr_login and usr_email must be different for each user.

    What is the best way to achieve this?

    Please suggest

    Thank you

    OK, I see.  Here is my version of update:

    DROP TABLE usr;
    
    CREATE TABLE usr
    (
     usr_login VARCHAR2(20)
    ,usr_email VARCHAR2(50)
    );
    
    INSERT INTO usr VALUES ('PENUMALH', '[email protected]');
    INSERT INTO usr VALUES ('IAMTEAM', '[email protected]');
    INSERT INTO usr VALUES ('TESTSOA2', '[email protected]');
    INSERT INTO usr VALUES ('TESTADF1', '[email protected]');
    INSERT INTO usr VALUES ('IAMTESTIR2', '[email protected]');
    INSERT INTO usr VALUES ('IAMPWDTT', '[email protected]');
    INSERT INTO usr VALUES ('IAMPWDTI', '[email protected]');
    
    COMMIT;
    
    SET LINESIZE 80 PAGESIZE 20
    
    COLUMN usr_login FORMAT A20
    COLUMN usr_email FORMAT A50
    
    SELECT *
      FROM usr;
    
    UPDATE usr t1
       SET (t1.usr_login, t1.usr_email)
           =
           (SELECT t2.usr_login || 'OLD' || TO_CHAR(ROWNUM) AS usr_login
                  ,SUBSTR(t2.usr_email, 1, INSTR(t2.usr_email, '.', -1, 1) - 1)
                   || '_delxxxxasdf' ||
                   SUBSTR(t2.usr_email, INSTR(t2.usr_email, '.', -1, 1)) AS usr_email
              FROM usr t2
             WHERE t2.usr_login = t1.usr_login);
    
    COMMIT;
    
    SELECT *
      FROM usr;
    

    And the output:

    Table dropped.
    Elapsed: 00:00:00.05
    Sequence dropped.
    Elapsed: 00:00:00.03
    Table created.
    Elapsed: 00:00:00.03
    Sequence created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.13
    1 row created.
    Elapsed: 00:00:00.04
    1 row created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.03
    1 row created.
    Elapsed: 00:00:00.03
    Commit complete.
    Elapsed: 00:00:00.02
    
    USR_LOGIN            USR_EMAIL
    -------------------- --------------------------------------------------
    PENUMALH             [email protected]
    IAMTEAM              [email protected]
    TESTSOA2             [email protected]
    TESTADF1             [email protected]
    IAMTESTIR2           [email protected]
    IAMPWDTT             [email protected]
    IAMPWDTI             [email protected]                                
    
    7 rows selected.
    Elapsed: 00:00:00.03
    7 rows updated.
    Elapsed: 00:00:00.04
    Commit complete.
    Elapsed: 00:00:00.02
    
    USR_LOGIN            USR_EMAIL
    -------------------- --------------------------------------------------
    PENUMALHOLD1         Hari.Penumalli@abc_delxxxxasdf.com
    IAMTEAMOLD1          iam.team@xyz_delxxxxasdf.com
    TESTSOA2OLD1         test.soa2@gio_delxxxxasdf.com
    TESTADF1OLD1         test.adf1@yu_delxxxxasdf.com
    IAMTESTIR2OLD1       iam.testir@ou_delxxxxasdf.net
    IAMPWDTTOLD1         iam.pwdtt@iuet_delxxxxasdf.in
    IAMPWDTIOLD1         iam.pwdt@oiyoi_delxxxxasdf.com                    
    
    7 rows selected.
    Elapsed: 00:00:00.03
    
  • Photoshop script that records with different active layers?

    Greetings. Long time user of Photoshop... but looking for a way to streamline some workflows. I regularly jobs where I need to create variations of what I am working on. To do this, I have basic layers that are common to all the images of finals, can have a set of layers that have sections which vary on them. Now, I heard some Scripts that can be run in Photoshop, so I was wondering if there is a way to have such a script all variants, evolution which layers "variation" is visible, as it does. Thus, if the layers were piled up like:

    Overlay shared

    Variant 6

    Variant 5

    Variant 4

    Option 3

    Variant 2

    Option 1

    Shared content

    Shared base

    All shared layers would be visible, while the script would save the Variant 1 file with the Variant 1 layer visible also... Variant 2 with Variant 2 visible (and Variant 1 tilt turn back), etc. Such a thing is possible in Photoshop with the script? And if so... How capable is he? If the file format was more like:

    Overlay shared

    Level 2 option 3

    Level 2 option 2

    Level 2 option 1

    Variation of 1 level 3

    Level 1 Variant 2

    Variation of 1 level 1

    Shared content

    Shared base

    When I needed to save the files where the script activated level 1 Variant 1, then saved on each of the 3 files with the level 2 variants (file1 would have level 1 Variant 1 + level 2 option 1 active, then File2 should have level 1 Variant 1 + level 2 option 2 active... etc)... is it possible?

    Not necessarily need someone to provide a script, I'm pretty happy to jump in and learn, if I get an indication that I wouldn't just spinning my wheels on something that is not possible. Thank you, in advance, for all the answers.

    Yes, this would be possible. If the files have different numbers of layers, which would make it more difficult, because you'd have to this script so that the script know which layers to enable or disable. It would be just a matter of creating a 'loop' and going through the layers. It would be worth something even in the name of the layer that would leave the script to know which layer must stay all the time.

  • question of xsd. several records with different values.

    I need help in the creation of xsd.

    My data from the file will be as Fallows.

    Sample data file

    AB xxxx yyyy zzz ttttt

    BBB hhh ddd ddd

    BBB hhh ddd ddd

    BBB hhh ddd ddd

    BC xxxx yyyy zzz ttttt

    CCC hhh ddd ddd

    CCC hhh ddd ddd

    CCC hhh ddd ddd

    CD xxxx yyyy zzz ttttt

    Hhh ddd ddd DDD

    Hhh ddd ddd DDD

    Hhh ddd ddd DDD

    My xsd is as Fallows:


    < xsd: element name = "Root Element" >

    < xsd: complexType >

    < xsd: SEQUENCE >

    < xsd: element name = "Element" type = "tns: mainelement" minOccurs = "0" maxOccurs = "unbounded" / >

    < / xsd: SEQUENCE >

    < / xsd: complexType >

    < / xsd: element >

    < xsd: complexType name = "mainelement" >

    < xsd: SEQUENCE >

    < xsd: element name = "Header" type = "tns:HeaderType" maxOccurs = "1" / >

    < xsd: element name = "lineitem1" type = "tns:lineitemrecord1" minOccurs = "0" maxOccurs = "unbounded" nxsd:lookAhead = "0" nxsd:lookFor = "" / >

    < / xsd: SEQUENCE >

    < / xsd: complexType >

    < xsd: complexType name = "HeaderTyep" >

    < xsd: SEQUENCE >

    < xsd: element name = "HeaderData" type = "xsd: String" nxsd:style = "fixedLength.

    nxsd:length = "2528" / >

    < / xsd: SEQUENCE >

    < / xsd: complexType >

    < xsd: complexType name = "lineitemrecord1" >

    < xsd: SEQUENCE >

    < xsd: element name = "RecordData" type = "xsd: String" nxsd:style = "fixedLength" nxsd:length = "161" / >

    < / xsd: SEQUENCE >

    < / xsd: complexType >

    How can differentiate the values in the starting header field by [AB, BC, CD] and record data fields starting with [bbb, ccc, ddd]

    I can't use nxsd: lookahead and nxd:lookFor.

    Required inputs to process the file. What alteration is suitable for the xsd to run.

    Is there a parent - child relationship kind of thing in your file structure?

    Row containing sales, purchases etc. is the parent and the tracking records are the child records, until we meet any record type 'Bill of sales, purchases',? In addition, tried to use "conditionValue" and "startsWith" and it did not work... Is it?

  • Remote Server Update Manager with different http port

    To put it simply, I think I might have some problems, but I installed the update on a remote server Manager (and not on the VC server) and since he also manages the WSUS updates, I couldn't use port 80 for the http port so I changed it to 81.  I have problems with the VC connection to Manager Update server.  I can't download the plugin to activate it.  Also, I noticed that there is a full installation of the 2.5u3 on our server of VC, which also included the Update Manager.  Should I uninstall that before the new one would connect upward?

    • Kyle

    I'm Tryin '

    I found something good again

    http://KB.VMware.com/kb/1006169

  • Update user with Org units using NSAPI

    We have a requirement where we need to update users with different organizational units with an external system. The integration guide indicates an NSAPI that may be used for this operation, no one create/update. It just says that we must use the XML from a details person Get API and use it as a query XML.

    The problem that we face is to find where to place the new Org Unit details in the request XML. If someone knows about this detail.

    Is this still the correct API for the fulfilment of the condition or we're looking at the wrong thing here

    That's why the requirements a bit clearer.

    If you are to be drawn from the external system rather that push to the PSAB, then I think that using the above mentioned SDK might be better suited since it is for the most part it that it was designed for, however, is probably a bit more complex to implement than the REST API.

    If you're always going the way of the use of the REST API, based on what I've seen and read that this API does not account of associatedOrganizationalUnits , which is where you update the members of the ORGANIZATIONAL unit, I can't see another way for you to do so through the current REST API.

    A third option is to create a service within the CPSC updates a user using the tasks Directory included in the plan, this service can then be consumed using the API of requisition, the downside of this is that there is a demand generated for each update.

  • Update records double with different data

    Hi all

    I have a specific problem of migration. Data from a large table were migrated in another table, but the data for the destination column are absent due to some problems (which are not specific to this topic).

    Currently I am updating the data for the missing column in the new table.

    The problem is due to the current data in the newtable, there the duplicate lines and I have not found a way to make a map of lines so that the data for the missing column can be updated.

    create the table ancienne_table

    (

    fileNo varchar (10),

    folder varchar (10),

    fileType varchar (10),

    col_1 varchar (10),

    col_2 varchar (10),

    col_3 varchar (10),

    col_4 varchar (10)

    );

    INSERT INTO ancienne_table (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('ABC', "Folder1", "Type1", '111', '111', ' 111', null);

    INSERT INTO ancienne_table (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('ABC', "Folder1", "Type2", '111', '111', ' 111', null);

    INSERT INTO ancienne_table (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('GHI', 'Folder3', 'Type3', '333', '333', ' 333 ', ' 333');

    INSERT INTO ancienne_table (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('JKL', 'Folder4', 'Type3', '444', '444', ' 444 ', ' 444');

    INSERT INTO ancienne_table (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('MNO', 'Folder5', 'Type4', '555', '555', ' 555 ', ' 555');

    INSERT INTO ancienne_table (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('PQR', 'Folder6', 'Type4', '666', '666', ' 666 ', ' 666');

    INSERT INTO ancienne_table (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('STU', 'Folder7', 'Type5', '777', '777', ' 777 ', ' 777')

    create table NewTable

    (

    fileNo varchar (10),

    folder varchar (10),

    fileType varchar (10),

    col_1 varchar (10),

    col_2 varchar (10),

    col_3 varchar (10),

    col_4 varchar (10)

    );

    INSERT INTO NewTable (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('ABC', "Folder1", null, ' 111 ', '111' ', 111', null);

    INSERT INTO NewTable (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('ABC', "Folder1", null, ' 111 ', '111' ', 111', null);

    INSERT INTO NewTable (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('GHI', 'Folder3', null, '333 ', '333', '333' 333');

    INSERT INTO NewTable (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('JKL', 'Folder4', null, '444 ', '444', '444' 444');

    INSERT INTO NewTable (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('MNO', 'Folder5', null, '555 ', '555', '555' 555');

    INSERT INTO NewTable (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('PQR', 'Folder6', null, '666 ', '666', '666' 666');

    INSERT INTO NewTable (fileNo, folder, file type, COL_1, COL_2, COL_3, COL_4) VALUES ('STU', 'Folder7', null, '777 ', '777', '777' 777')


    Select * from ancienne_table;

    FILENO FILETYPE COL_1, COL_2 COL_3 COL_4 FOLDER

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

    Type1 Folder1 ABC 111 111 111

    Type2 Folder1 ABC 111 111 111

    IGS Folder3 Type3 333 333 333 333

    JKL Folder4 Type3 444 444 444 444

    Folder5 Type4 555 555 555 555 MNO

    nPQR Type4 of Folder6 666 666 666 666

    STU Folder7 777 777 777 777 Type5

    Select * from NewTable.

    FILENO FILETYPE COL_1, COL_2 COL_3 COL_4 FOLDER

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

    Folder1 ABC 111 111 111

    Folder1 ABC 111 111 111

    IGS Folder3 333 333 333 333

    JKL Folder4 444 444 444 444

    Folder5 555 555 555 555 MNO

    PQR Folder6 666 666 666 666

    STU Folder7 777 777 777 777

    When you try to update the column of file type for all records-

    Update NewTable set FileType = (select FileType from ancienne_table where Fileno = newtable.fileNo and folder = NewTable. File);


    It would work fine for all other cases with the exception of the first two that are currently double.

    It won't work of course because it would give - "row subquery returns more rows" error because of these duplicate records.

    I'm trying to update the file type column to the first two rows with values 'Type1' and 'Type2 '.

    Out of these two files, it won't matter whose recording of newtable is updated with 'Type1' and you get 'Type2 '.

    Please help with ideas around update duplicate records with the ancienne_table-specific data into newtable.

    Him below will work... You can update using ROWID, but the lines are duplicated. Must therefore first to define any id for these two lines replicated using row_number and then correspond with rn for the IDENTIFIER specified.

    MERGE INTO NewTable nt help

    (WITH qry1 AS

    (SELECT ot. File type,

    ot.fileNo,

    OT. Folder,

    ROW_NUMBER() ON rn (PARTITION BY ot.fileNo, ot.folder ORDER BY 'A') - you can get the line number based on any order

    Of ancienne_table ot

    ),

    qry2 AS

    (SELECT nt. File type,

    nt.fileNo,

    NT. Folder,

    ROW_NUMBER() over (PARTITION BY nt.fileNo, nt.folder ORDER BY 'A') rn,-you can get the line number based on any order

    NT. ROWID rd

    OF NewTable nt

    )

    SELECT q1.filetype,

    Q2.Rd

    OF qry1 q1

    JOIN qry2 q2

    ON q1. Folder = q2. Folder

    AND q1.fileNo = q2.fileNo

    AND q1.rn = q2.rn

    AND q2. FileType IS NOTHING - if necessary add this condition

    ) q1 ON (nt. ROWID = q1.rd)

    WHEN MATCHED THEN

    Updated the VALUE of filetype = q1.filetype;

  • Updated several lines with different values

    Hello!
    I have a problem. I need to update more than 1000 lines with different values. How can I do?
    For exsample I have table:
    ID; color, date,
    1 red
    2 green
    3 white

    I need to update the date field.

    Update table
    Set date = '01.02.03'
    where id = 1

    Update table
    Set date = '01.03.03'
    where id = 2


    Maybe it's how to update multiple rows in a single request?

    Sorry for my bad English.
    Thank you!

    Hello

    You can try this

    UPDATE TABLE SET DATE = CASE
                        WHEN ID = 1 THEN TO_DATE('01-02-03','DD-MM-RR')
                        WHEN ID = 2 THEN TO_DATE('01-03-03','DD-MM-RR')
                        END
    

    see you soon

    VT

  • Update a record with a selection box

    I have a database table called "currentTOW" that contains a single record with only an 'ID' field and a field 'owner '. I have a second table called "truckofweek" that contains several fields with multiple records, including one called 'owner '.

    I want to change my page, setCurrentTOW.cfm, to use a 'truckofweek' query to populate a drop-down list select menu update check in "currentTOW" instead of a regular supply.

    I need the list to contain the strings in the 'Owner' of the 'truckofweek' table fields and then update the table "currentTOW" with the selected channel. How can I do this? The following code fills an area of selection very well, but will not update.

    > I have a database table called "currentTOW" that contains a record
    > with only an 'ID' field and a field 'owner '.
    >..
    > I don't really know what I want to say right here.

    CFUPDATE throws an error because he expects a field named 'ID' (the primary key of the table). This field is never passed to the action because of the cfif statement page in your form code. The said cfif "only create the hidden field when URL.ID is not equal to 0". Given that URL.ID is equal to zero the hidden field is never created.




    I would also change the "currentTOW" table to store the primary key of the table "truckofweek" instead of the name of 'owner '.

  • How to set up multiple LIVE IDS prod certificates on Sharepoint 2010 single server runs several Sharepoint Sites with different domain on port 443?

    Hello

    I integrated LIVE ID with Sharepoint 2010 and got the same compliance.

    In sharepoint server 2010, several sharepoint sites are run under port 443 with different domain names.

    I configured 1 LIVE ID certificate for one of our sharepoint sites would like to know can I use the same certificate for other sites too or I need to install other certificates LIVE ID to access other sites.

    How can I get prod LIVE ID certificates are available for free as nexus offers two certificates INT and PROD (x 509 certificate) or do I need to buy.

    If I need to buy where can I buy it go?

    Hi ppdremsadm,
     

    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums as it is related to the configuration of Live ID in Sharepoint 2010. It should be better in the Forums of Windows Sharepoint.

    Please ask your question in products and technology SharePoint forums to improve assistance in this regard.

  • Save pictures png with different names...

    Hello guys,.

    I'm not so familiar with Labview and I want help. I have a Vi which is actually control 32 RBG lights. We use the DMX Protocol... to each time a directed is on and then we take a picture, then the led goes out. The second goes on then end and on... We have 8leds in 4corners... So, we corner1_led1, corner1_led2 up to corner4_led8. Ultimately, we are 32 saves png pictures. What I want is to record photos with different names and numbers starting from 1 instead of 0... For example, if we choose the white light and save the images in 'News' images will be named 'new_white_0_0' instead of 'new_white_1_1 '. You have an idea how I can change it?

    Attached the names of current photos and Vi.

    Any comments would be useful.

    Thank you.

    The terminal of indexing ([i] in the loop for) starts at 0. When you create your file name, use the primitive "to increment" digital palette. Then your file names will start at 1 instead of 0.

    I noticed your VI that you do a lot of string concatenation to build the path/name of the file, you can use the format string and build the screw to make the somewhat simpler schema. You can also update the deprecated functions (for example, the file open) with modern equivalents.

  • I want to clone my hard drive and this clone allows you to configure a new computer, how do I do this for several PCs with different versions of XP?

    I am trying to replace 15 PCs.  They all have XP because their BONES, bought with different SPs at different times.  They all have been updated to SP3...  They have all MS 2003, upgaded to MS 2007.  I would use a clone as image.  I do not support different key codes?  Although the XP are authentic, I may not all key codes.  My predessor has not keep good records, and stickers on some had labels of Vista.  Even if the PC was bought with XP downgrade.  I need to use XP because of some other software requirements.

    What is the best way to represent all the PC so that I can get back them to my users?

    Hello

    I suggest you to refer to this link and check if it helps:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_xp-windows_install/cloning-Windows-XP-Pro-to-new-hard-drives-ready-to/b7edf501-6ae6-4bc1-94BB-39a4177d8b71

    It will be useful.

Maybe you are looking for

  • Show the window on all workspaces

    How to display some window on all workspaces as sticky windows in compiz linux?

  • HP 5502 have power but no display. Help, please!

    This is an office with hp 5502 crt. yesterday it was working fine. But today, when I tried to turn on the pc. It has the power, but displaying a dark black screen. Please help me in this matter. Thanks and greetings Rajat

  • Lack of "automatically hide and show the menu bar.

    Hi all, I want to hide my menu bar. I watched how disappear - it turns out that the checkbox "automatically hide / show menu bar" is missing. It is supposed to be under "use donkere menubalk en donker Dock. Why is it missing?  Thank you very much!

  • Satellite Pro U200: MS Office Documents open slowly after installing BT stack

    Hello As I installed the toshiba bluetooth stack (on my Satellite Pro U200) last week, MS Office documents are very slow to open when I choose them by double-clicking from windows Explorer. If I first start Office then use "Open" to open the document

  • Impossible to use the MSI installer in Win7

    I tried to install AVG Antivirus, but it will not be installed. The AVG technical support has made all sorts of audit and said that he cannot help because the Windows Installer service is "damaged or defective. Here's a screenshot of the error MSI: M