Microsoft DPM, Quais são os valores de tipo na tabela de alerta (back-end do SQL)

3

Atualmente, tenho um script do PowerShell que se conecta ao back-end do SQL do SQL e consulta a lista de alertas não resolvidos.

Na tabela tbl_AHP_Alerts Existe um campo chamado Type .

Este campo Type refere-se à situação de porque o alerta foi acionado. Por exemplo, um Type de 25 corresponde ao problema 'Falha no ponto de recuperação'

Eu preciso tomar as medidas adequadas de acordo com este Type Field. Alguém sabe onde há uma lista do que este campo está vinculado? Ou seja, o que os outros números representam?

    
por Harvey 28.09.2015 / 17:01

1 resposta

2

Encontrei uma lista hospedada no Microsoft TechNet @ link

-1 RestoreDBAlert

0 NullType

1 AgentIncompatibleAlert

2 AgentUnreachableAlert

5 MediaVerificationFailedAlert

6 MediaEraseFailedAlert

7 DetailedInventoryFailedAlert

8 MediaDecommissionedAlert

9 MediaDataEraseAlert

10 FreeMediaThresholdAlert

11 DataSetCopyFailedAlert

12 BackupToTapeFailedAlert

13 BackupToTapeCatalogFailedAlert

14 LibraryDriveAlert

15 LibraryNotAvailableAlert

16 LibraryNotWorkingEfficientlyAlert

17 MediaRequiredAlert

18 ReplicaInitializationInProgressAlert

19 SynchronizationFailedAlert

20 StopProtectionFailedAlert

21 RecoveryInProgressAlert

22 RecoveryPartiallySuccessfulAlert

23 RecoverySuccessfulAlert

24 RecoveryFailedAlert

25 ShadowCopyFailedAlert

26 ReplicaInMissingStateAlert

27 ReplicaInInvalidStateAlert

28 PartialDeployedClusterAlert

29 AgentTaskFailAlert

30 SqmOptInAlert

31 DiskThresholdCrossedAlert

32 VerificationInProgressAlert

33 DiskMissingAlert

34 CatalogThresholdCrossedAlert

35 DatasetDataVerificationFailed

36 SCDiskThresholdCrossedAlert

37 ConfigureProtectionFailedAlert

38 ReplicaManualLoadPendingAlert

39 ReplicaInitializationPendingAlert

40 CertificateExpiringAlert

41 EvalShareInquiryAlert

42 ShadowCopyConsolidationRequired

    
por 29.09.2015 / 11:21