Tagged Questions

1
vote
1answer
384 views

PL/SQL: Update row based on ROWID

I am trying to update a row in a table which has no unique index. So, I selected the ROWID of the row I want to update and now I want to update the row like this: UPDATE MYTABLE SET MYCOLUMN = 0 ...
1
vote
1answer
191 views

Is there any way using which I can get Last Updated row Id

Is there any way using which I can get the last row I have updated of the table. For Ex:- my table has 1000 records in it. I have updated the value of 500th record of table X. So, I want the ID 500 ...
0
votes
2answers
185 views

SQL server 2005 :Updating one record from 2 identical records

I have 2 records in a table in SQL Server 2005 db which has exactly same data. I want to update one record.Is there anyway to do it?Unfortunately this table does not have an identity column and i cant ...