DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: update using ROWID

  1. #1
    Join Date
    Jul 2001
    Posts
    334

    Question

    How I can update record using ROWID???
    Please give me an example using EMP table.

    Thanks

  2. #2
    Join Date
    Apr 2001
    Location
    Louisville KY
    Posts
    295
    update emp
    set lname='Smith'
    where rowid='aaaaaaaa.bbbbbbbb.cccccccccccc.ddddddd';
    /* if v8 */

    update emp
    set lname='Jones'
    where rowid='hhhhh.xx.cccccccc'

    /* if V7 */
    Joseph R.P. Maloney, CSP,CDP,CCP
    'The answer is 42'

  3. #3
    Join Date
    Jul 2001
    Posts
    334
    Yeh! it works, Thanks for your quick response.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width