Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create table tableb (id int)
insert tableb values(1)
select *,'before tran' from tableb
begin tran a
truncate table tableb
select *,'after truncate' from tableb
rollback tran a
select *,'after tran' from tableb
a truncate is still mimimally logged what that means is that the pointers to the pages are dealocated
Recover data for a table that was accidentally dropped or truncated. Whoa, this is powerful stuff. Log Explore can recover tables that you have accidentally or purposely obliterated. Not only can tables be recovered from the log, but from SQL Server backups. This is a feature that even SQL Server does not provide. As you can see, Log Explorer is a powerful data recovery tool that can save your a lot of time.
create table tableb (id int)
insert tableb values(1)
select *,'before tran' from tableb
begin tran a
truncate table tableb
select *,'after truncate' from tableb
rollback tran a
select *,'after tran' from tableb