Advantage Database Server V12 - Dictionary wird verwendet.
Gibt es eine Möglichkeit die Anzahl der Lesezugriffe auf eine Tabelle zu ermitteln?
Mit einem Trigger geht es scheinbar nicht.
Falls Du nur wissen willst, wer wann die Tabelle geöffnet hat, kannst Du database trigger verwenden. Das ist aus einem meiner Workshops:
Code:
CREATE TABLE logtable(ts timestamp, event memo);
CREATE TRIGGER trig_opentable ON DATABASE AFTER OPEN_TABLE
BEGIN
DECLARE @info STRING;
if __info.tablename <> 'logtable' then
@info = trim(__info.UserName)+' opened table '+
trim(__info.tablename);
INSERT INTO logtable VALUES(now(), @info);
end;
END;
CREATE TRIGGER trig_closetable ON DATABASE AFTER CLOSE_TABLE
BEGIN
DECLARE @info STRING;
if __info.tablename <> 'logtable' then
@info = trim(__info.UserName)+' closed table '+
trim(__info.tablename);
INSERT INTO logtable VALUES(now(), @info);
end;
END;
Schreib für jedes Öffnen Timestamp, user, tablename mit und werte es entsprechend aus.