So, I have the next table:
time    |  name   |  ID  |
12:00:00| access  |  1   |
12:05:00| select  | null |
12:10:00| update  | null |
12:15:00| insert  | null |
12:20:00|   out   | null |
12:30:00| access  |  2   |
12:35:00| select  | null |
The table is bigger (aprox 1-1,5 mil rows) and there will be ID equal to 2,3,4 etc and rows between.
The following should be the result:
time    |  name  |  ID  |
12:00:00| access |  1   |
12:05:00| select |  1   |
12:10:00| update |  1   |
12:15:00| insert |  1   |
12:20:00|   out  |  1   |
12:30:00| access |  2   |
12:35:00| select |  2   |
What is the most simple method to update the rows without making the log full? Like, one ID at a time.
 
     
    