Das Notes Forum
Lotus Notes / Domino Sonstiges => Tools & Downloads => Thema gestartet von: Festus am 06.02.02 - 09:27:30
-
Hey Leutz,
ich suche mehr oder weniger dringend ein Tool, was die Datenbankaktivitäten auslesen kann. (Zwecks Auswertung)
Hat jemand eine Idee wo es sowas gibt (am besten auch noch für V.4.x ::)
Danke und schöne Grüße,
Festus
-
vielleicht hilft Dir auch das LOG.NSF
in der Ansicht "Datenbank" - "Benutzung" findest duch auch etwas über diese Aktivitäten.
Gruß DN
-
Hi
ist eigentlich schon was mit dabei. im catalog.nsf steht zumindest eine kurze zusammenfassung der aktivitäten jeder db. wenn dir das reicht....
bye bye z
-
ich verwende dieses tool:
http://domino-21.prominic.com/A55564/Web.nsf/hsframeset!OpenFrameSet&Frame=main&Src=_n5t0jad9l6oq2ulr5c8n6ssr65tgm6t39epkn8u9ed1q6q8afe1imshjfe9micgblehnkcsj1dlim80_
und bin total zufrieden damit
-
Hi,
habe den folgenden Code in einem andern Forum gefunden ( noch nicht getestet ;D )
by Sue Morgan
Description: Often after moving a database to production the customer wants to know who is looking at what. Sometimes this is in response to wanting to clean up ACL and unwanted views, sometimes it is to try and enhance the database based on what is working.
In response, I have written a utility that tracks who is going into a database, view, and when. The report is written to statistic database which can be monitored.,
Code: First, in the database to hold the statistics; build a Form that will hold 4 pieces of data
Text Field to contain the database name (DBOpened)
Text Field to contain the User opening a view (viewUserName)
Time Field to hold the date the view was opened (viewDateOpen)
Text Field to hold the name of the view that was opened (viewOpen)
Next, in the database you want to track usage, build a Script Library (I call mine TrackViewUse)
Sub TrackViewUse (Source As Notesuiview)
Dim ws As New notesuiworkspace
Dim session As New notessession
Dim view As NotesView
Set view = Source.View
Dim db As notesdatabase
Set db = session.currentdatabase
Dim db2 As New notesdatabase ("", "")
Dim doc As notesdocument
' OPEN THE DATABASE TO HOLD THE STATISTICS
Call db2.Open("MDDB1/BTV/A/IBMMD", "SHARED/IPD/pipestat.nsf")
'BUILD THE NEW DOC
Set doc=New notesdocument(db2)
doc.form = "viewUse"
doc.DBOpened = db.Title
doc.viewUserName = session.CommonUserName
doc.viewDateOpen = Now()
doc.viewOpen = view.Name
Call doc.save(True,False)
Call db2.Close
End Sub
Finally, in the database you want to track (you'll want to do this in each view)
In the Options for the views delecare the Subroutine
Use "TrackViewUse"
In the PostOpen Event of the views call the Subroutine
Sub Postopen(Source As Notesuiview)
TrackViewUse Source
End Sub
The results will be a document in the statistic database recording the database name, who entered and when,
and the name of the view.
-
ich verwende dieses tool:
http://domino-21.prominic.com/A55564/Web.nsf/hsframeset!OpenFrameSet&Frame=main&Src=_n5t0jad9l6oq2ulr5c8n6ssr65tgm6t39epkn8u9ed1q6q8afe1imshjfe9micgblehnkcsj1dlim80_
und bin total zufrieden damit
Hallo,
wir nutzen dieses Tool auch und sind zufrieden damit :-)
mfg Stephan
-
Hallo,
kennt jemand einen akuellen Link zu diesem Tool?
Ich möchte gerne rausbekommen, ob es Mailfies gibt die keine Useraktivität mehr aufweisen.
Ich suche nach User-Leichen in meinem System.