14 Nov, 2007
Posted by: vinny In: software
I guess domain is really important to Domino replication. So important that you have to specify it to replicate from one server to another in the same domain. This fails:
> pull servername foldername\dbname.nsf
11/14/2007 09:40:57 AM Database Replicator started
11/14/2007 09:40:57 AM Starting replication with server servername
11/14/2007 09:40:57 AM Unable to replicate foldername\dbname.nsf
11/14/2007 09:40:57 [...]
12 Nov, 2007
Posted by: vinny In: software
So, I have a set of log files in csv format that look similar to this:
date, DATA, DATA1
mm/dd/yyyy,DATA,DATA1
”,,DATA,DATA1
”,,DATA,DATA1
mm/dd-1/yyyy,DATA,DATA1
”,,DATA,DATA1
”,,DATA,DATA1
Yeah. So, that makes it a little difficult to parse that log since date is missing if it hasn’t changed. how do you fill in those blanks without clobbering what’s there in, say, Excel? Some combo of IF(ISBLANK) [...]