Is it possible populate a schema_only table (with some initial values) when the database starts, e.g. by invoking a stored procedure?
The logic that normally operates on this table would be more complicated if I had to detect whether a cold start had occurred.
edit:
It seems like sp_procoption
gets me halfway there. However, the stored procedure configured this way is not executed when ALTER DATABASE <dbname> SET ONLINE;
is run. Which is a bummer because the data does go away when ALTER DATABASE <dbname> SET OFFLINE;
is run.
You can detect
ALTER DATABASE <dbname> SET ONLINE;
statements with DDL trigger for ALTER_DATABASE event type. The difficult part is to find when it's state is changed from OFFLINE to ONLINE (instead of some other ALTER DATABASE statement, like MODIFY FILE for example). When the trigger is fired, EVENTDATA() function will return XML like these:In theory you can try to parse
<CommandText>
, but it may not be as easy as it sounds. Instead of that, you can check is your database currently ONLINE and are there any rows in the schema_only table. Of course, in the trigger you should also check is this event related to your database. So the trigger could look something like this: