• npyata (5/2/2013)


    Here is code which has been suggested: I need the incremental value of log_seqno. How to compute vr_seqno incrementally.

    ffhand i think this would do it in a single shot, but i'm looking for my friend Sean's matching post to be sure:

    Update [CAMINO].[dbo].[match_event_log]

    set log_seqno = vr_seqno

    FROM (select

    row_number() over (order by log_id,log_timestamp_dt) AS vr_seqno,

    log_id

    from [TESTDB].[dbo].[match_event_log]

    where log_timestamp_dt between '2010-01-01 00:00:00.000' and '2010-02-28 00:00:00.000'

    ) MyData

    where log_id = MyData.log_id;

    Incrementing each rows value is exactly what this is doing. Take a look at ROW_NUMBER. http://msdn.microsoft.com/en-us/library/ms186734.aspx

    If you aren't sure what it is doing just run the select portion.

    select

    row_number() over (order by log_id,log_timestamp_dt) AS vr_seqno,

    log_id

    from [TESTDB].[dbo].[match_event_log]

    where log_timestamp_dt between '2010-01-01 00:00:00.000' and '2010-02-28 00:00:00.000'

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/