About 398,000 results
Open links in new tab
  1. Read SQL Server transaction log - Stack Overflow

    Jan 26, 2012 · How we can read SQL Server transaction logs, I know using DBCC log (database,4) and it will generate log output now i want to decode Log Record which is is hex format.

  2. Methods of Reading SQL Server Transaction Log - Stack Overflow

    Oct 17, 2015 · There are different ways to open an LDF file, and most of them do just that – opens it. It’s tricky to get any human readable information and make a use of it though ApexSQL Log is a SQL …

  3. Sql Server Transaction Log Reader - Stack Overflow

    Is it possible to open a sql server transaction log file with some type of a stream reader object? I've tried in C# a variety of ways but the database appears to be opening the .ldf file with an

  4. How to open the SQL Server Transaction Log File (LDF)?

    Oct 13, 2011 · SQL Server transaction log format is not documented and therefore can’t be used to read data from it directly. There are tools such as ApexSQL Log that can read the transaction log but it’s …

  5. Looking for a SQL Transaction Log file viewer - Stack Overflow

    Sep 29, 2013 · 1 Select * from ::fn_dblog(null,null) How can I view SQL Server 2005 Transaction log file How Do You Decode A Simple Entry in the Transaction Log?

  6. sql server - Cannot get Log Reader Agent to run on Azure SQL …

    Aug 12, 2024 · I configured Azure SQL Managed Instance for transactional replication, it is a publisher with local distributor. I got it set up and the snapshot agent runs successfully, but the log reader agent is

  7. How to read SQL Server transaction log - Stack Overflow

    Aug 4, 2017 · Is there any way to read the transaction log without third party tools.If yes kindly suggest the programming language to do this to get all the data changes in a table or file from a transaction log.

  8. sql - The process could not execute 'sp_replcmds' on 'database_name ...

    Oct 26, 2016 · I got an error message in my Log Reader Agent: The process could not execute 'sp_replcmds' on 'Database Name'. I created another agent profile with a large query timeout and a …

  9. sql server - Can I just STOP SqlServer replication? - Stack Overflow

    Mar 11, 2013 · The only two ways to "pause" replication would be to stop either the log reader or the distribution agent, neither of which gets those log records to the distributor. To see if replication is …

  10. Read the log file (*.LDF) in SQL Server 2008 - Stack Overflow

    Mar 19, 2012 · I'm searching for a way to read the SQL Server 2008 log file, not to show the information, but to read the meaning of the symbols and the structure of the LOG table. I'm using DBCC …