Hi,
I need to make sure that the transaction log files will not get full because we'll have many transaction through a day, which will involve an update of image data type column. We'll be using ADO Recordset object to do an update, and while testing I can't figure out if SQL Server is logging the transaction or not.
I have try to use the dbcc traceon(3604) AND dbcc log utilities, but they are not showing me any thing that specifies that the table in mind has had an INSERT operation.
The first question is does SQL log the ADO object's update?
Is there a better way to see the transaction log?
Thanks for your time.
I need to make sure that the transaction log files will not get full because we'll have many transaction through a day, which will involve an update of image data type column. We'll be using ADO Recordset object to do an update, and while testing I can't figure out if SQL Server is logging the transaction or not.
I have try to use the dbcc traceon(3604) AND dbcc log utilities, but they are not showing me any thing that specifies that the table in mind has had an INSERT operation.
The first question is does SQL log the ADO object's update?
Is there a better way to see the transaction log?
Thanks for your time.