Viewing 8 posts - 1 through 8 (of 8 total)
If you use re-index, on the run set dboption to bulk_logged and at end set it to original setting.
September 11, 2003 at 8:28 pm
although this is not the correct sequence to do this, if the db is not corrupted you 'are fine. There is 'No data loss'.
August 6, 2003 at 5:19 pm
if I unserstood problem correctly this is a another solution..
select distinct * int #temp
from sourceTable
drop table sourcetable
insert sourceTable
select * from #temp
drop table #temp
go
August 3, 2003 at 8:04 pm
Any smart explanation ?
June 12, 2003 at 11:52 pm
Whatever you all say the correct and most appropriate answer is b which is to change to update lock.
This will keep data intergrity and solves the deadlock problem. If...
June 10, 2003 at 5:27 pm
HI,
Yes using cursors will be a weapon of mass destruction if you use everywhere. It is technique you should use as a last resort. They are enefficient and create more...
April 21, 2003 at 5:39 pm
Thanks for all contributions. I believe in this situation sql use hash function for matching operation. So Does the efficiency of the search depends on the order of the input...
April 7, 2003 at 8:19 pm
Dear,
If nothing works take long breath and realx. then do your reatoration on the old server I mean with all differential backups. Then you have the full database. Just upgrade...
March 4, 2003 at 4:28 pm
Viewing 8 posts - 1 through 8 (of 8 total)