What is the easiest way to change a field from 1/1/0001 12:00:00 AM to
1/1/1900 12:00:00 AM for all the rows in a nsf?
Is there a tool that can help me do this or do I need to learn some
scripting?
thanks
David
As Notes newbie I'm having difficulties with the correct Select
statement to select fields with a specific datetime value.
I would like to select fields that have changedDate set to "01/01/2000
12:00:00 AM"
This doesn't work:
Select (@GetField ( "changedDate" ) = "01/01/2000 12:00:00 AM");
Do I need to compare dates with some other operand than "=",
please?
The display value "01/01/2000 12:00:00 AM" seems dependent on windows
locale so I guess it is not the actual stored value in DB?
thanks