是否可以在运行sql备份时捕获信息?如果备份失败了? 我使用MSSQL和Powershell
答案 0 :(得分:0)
此查询将为您提供有关备份的信息,包括上次执行的时间。如果备份失败,则不会显示,因为备份失败未列为备份。您应该在工作概述或历史记录中找到这些内容。如果使用powershell,则不会记录失败的备份。 (据我所知)
此查询也在Sequenchel(.com)中用于监视备份
@Autowired
@Qualifier("getInstanciateeClass")
public Instanciator(Class<T> klass) {
this.klass = klass;
}
@Bean
Class<Instanciatee> getInstanciateeClass() {
return Instanciatee.class;
}