search for: rftm

Displaying 2 results from an estimated 2 matches for "rftm".

Did you mean: rft
2006 May 16
1
switch to not backup a file of size X Mb
I'm performing backup via a standard use of rsync: (note:$dayte is set via a .sh file) rsync -aurvz --backup --backup-dir=../data_originals/$dayte -e ssh /mnt/netware6/dhs01/data/ ./dhs01/data/ My Question: Is there any way to make sync ignore files greater than a certain size. The files do not follow any naming convention and are therefore only identifiable by their size? (e.g I want all
2005 Mar 03
12
bug in postgresql ''now'' time handling??
line 212 of postgresql_adapter.rb is return Time.now.to_s if value =~ /^\(''now''::text\)::(date|timestamp)/ i don''t think this will work. in postgresql the field ''now'' is pinned to the SAME TIME for the duration of a transaction. eg. if you do begin transaction; insert into t values(42, ''now''); # sleep one minute