on 2013 Apr 29 12:22 PM
when you translate a log file, i think there is a date and time attached to each sql statement. Ex: --INSERT-1073-0367432565. i believe 1073 is a connection number, and 0367432565 is the date and time. is there a way to translate the date and time info into something more useful?
Request clarification before answering.
You are correct, the '1073' in '--INSERT-1073-0367432565' refers to the unique number given to the connection that originally executed the operation. The '0367432565' refers to the logical log offset within transaction log and unfortunately there is no method (that I know of) that can be used to definitively convert this number into a date and time.
You could narrow down the time that the operation occurred by looking at other operations (e.g. CONNECT and CHECKPOINT operations, and to some degree other transaction operations that include timestamps that were created with CURRENT TIMESTAMP) that come before and after the operation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
46 | |
9 | |
8 | |
6 | |
5 | |
5 | |
4 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.