Re: Stored prosedure last run
От | Josh Berkus |
---|---|
Тема | Re: Stored prosedure last run |
Дата | |
Msg-id | web-121814@davinci.ethosmedia.com обсуждение исходный текст |
Ответ на | Stored prosedure last run (pkasimov@yahoo.com (Pasha)) |
Список | pgsql-sql |
Pasha, > I'm trying to find if anyone knows how to find out when the stored > procedure was used last time (not created). If you want to do this, you'd need to create your own log table, and write to it at the beginning of your function: CREATE TABLE function_log ( run_id SERIAL NOT NULL PRIMARY KEY, function_name VARCHAR(100) NOT NULL, run_date TIMESTAMPNOT NULL DEFAULT current_timestamp); CREATE FUNCTION my_function ( ... ... BEGIN INSERT INTO function_log ( function_name ) VALUES ( 'my_function' ); ... Got it? -Josh ______AGLIO DATABASE SOLUTIONS___________________________ Josh Berkus Complete informationtechnology josh@agliodbs.com and data management solutions (415) 565-7293 for law firms, small businesses fax 621-2533 and non-profit organizations. San Francisco
В списке pgsql-sql по дате отправления: