Create proc spDBA_NewDatabaseNotification

create table tempdb..DBA_sysdatabases (name sysname not null primary key) declare @body varchar(8000) set @body = 'New databases: '-- If it's not the first time it executes: if exists (select 1 from tempdb..DBA_sysdatabases) begin -- If there are any new logins: if exists (select 1 from master..sysdatabases . where name not in ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download