01 Nov Månadens Experttips – Indirect files
Indirect files kan användas för att spara tid vid underhållsarbeten på servern.
Tjänsterna “fixup”, “compact”, “updall”, “design” och “convert” stödjer indirect files.
Det går dessutom att skapa batcher/skript som kör fler underhållsarbeten mot olika “indirect files”.
Såhär används indiret files:
Skapa en textfil med ändelsen “.ind”: mailfiles.ind
Skapa en lista av databaser och/eller bibliotek i textfilen:
mail\mail1.nsf
mail\mail2.nsf
…
mail\mail25.nsf
Använd filen som argument till ett kommando.
Detta kan göras på flera sätt, se exempel nedan.
Indirect files används på olika sätt med de olika tjänsterna, enligt nedan.
Fixup
load fixup -j files.ind
Compact
load compact -c files.ind
Updall
load updall files.ind
Design
load design -i files.ind
Convert
load convert -u -f files.ind * mail85.ntf
Med Domino igång
Från konsolen:
load fixup -j mailfiles.ind
load compact -c mailfiles.ind
load updall mailfiles.ind
load design -i mailfiles.ind
load convert -u -f mailfiles.ind * mail85.ntf
Med Domino igång eller nere
d:\notefile> c:\notes\nfixup.exe -j mailfiles1.ind
d:\notefile> c:\notes\ncompact.exe -c mailfiles1.ind
d:\notefile> c:\notes\nupdall.exe mailfiles1.ind
d:\notefile> c:\notes\ndesign.exe -i mailfiles1.ind
d:\notefile> c:\notes\nconvert.exe -u -f mailfiles1.ind * mail85.ntf
* OBS
Tjänsten “design” kräver parametern “-i” innan indirect file anges.
Tjänsten “convert” kräver parametern “-f” innan indirect file anges.
Om din server har flera processorkärnor kan samma underhållsarbete köras mot olika indirect files parallellt.
Maximalt antal rekommenderade parallella arbeten är lika med antalet processorkärnor.
Med Domino igång
Från konsolen:
load updall mailfiles1.ind
load updall mailfiles2.ind
load updall mailfiles3.ind
Med Domino igång eller nere
I olika kommando-fönster:
d:\notefile> c:\notes\nupdall.exe mailfiles1.ind
d:\notefile> c:\notes\nupdall.exe mailfiles2.ind
d:\notefile> c:\notes\nupdall.exe mailfiles3.ind