0
votes
3answers
30 views
How does Oracle manage Redo logs?
Can any body give me an idea about Redo logs? An example would be most appreciated.
4
votes
5answers
358 views
how do I do redo (i.e. “undo undo”) in vim
In vim, I did to much undo.
How do I undo this (i.e. redo)
1
vote
2answers
124 views
What are the effects of disabling the redo logs in Oracle on Hibernate transactions?
If we disable the 'redo logs' of a tablespace in Oracle, will they impact Hibernate's transactions?
These are the options present in the Oracle EM on a tablespace level:
Enable logging
Yes
Generate …
2
votes
2answers
194 views
Cleanest Perl parser for Makefile-like continuation lines
A perl script I'm writing needs to parse a file that has continuation lines like a Makefile. i.e. lines that begin with whitespace are part of the previous line.
I wrote the code below but don't …
1
vote
1answer
84 views
Can I jump back to the beginning of a method using ‘redo’ in Ruby?
In the Poignant Guide this example of the redo keyword is given:
class LotteryTicket
def self.new_random
new(rand(25) + 1, rand(25) + 1, rand(25) + 1)
rescue ArgumentError
redo
end
end
…
5
votes
7answers
489 views
Pythonic equivalent of unshift or redo?
I'm learning Python, and I have a situation where I want to consume items from an iterator. The tricky part is that under certain conditions, I want to "un-iterate." That is, put an item back onto …
-3
votes
3answers
420 views
How to implement undo/redo of files mapped in a treeview
Can anyone give an idea of how should I implement undo/redo of files (dirs, subdirs) mapped in a treeview - C#?
Would be great some code samples
