Advertisement
aadhar-matellio

cron-task-status

Dec 9th, 2021
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. compliance-alerts-email-15days :
  2.  
  3. Status :
  4.  
  5. - complianceAlertsEmail15days > Some application error has occurred. [ Got a call ]
  6. - email not received.
  7. - database column updated.
  8.  
  9. Query-1 (2 records):
  10.  
  11. SELECT
  12. `id`
  13. FROM
  14. `compliance_alerts`
  15. WHERE
  16. due_date = '2021-12-24'
  17. AND `filing_status` IS NULL
  18. AND `15_day_email_sent` IS NULL
  19. AND `compliance_alerts`.`deleted_at` IS NULL;
  20.  
  21. -------------------------------------------------------------------
  22.  
  23. Query-2 (2 records):
  24.  
  25. SELECT
  26. *
  27. FROM
  28. `compliance_alerts`
  29. WHERE
  30. due_date = '2021-12-24'
  31. AND `filing_status` IS NULL
  32. AND `15_day_email_sent` IS NULL
  33. AND `compliance_alerts`.`deleted_at` IS NULL;
  34.  
  35. -------------------------------------------------------------------
  36.  
  37. Query-3 (2 records):
  38.  
  39. SELECT
  40. *
  41. FROM
  42. `compliance_alerts`
  43. WHERE
  44. due_date = '2021-12-24'
  45. AND `filing_status` IS NULL;
  46.  
  47.  
  48. -------------------------------------------------------------------
  49.  
  50. Query-4 (2 records):
  51.  
  52. SELECT
  53. *
  54. FROM
  55. `compliance_alerts`
  56. WHERE
  57. due_date = '2021-12-24'
  58. AND `filing_status` IS NULL
  59. AND `15_day_email_sent` IS NULL;
  60.  
  61. -------------------------------------------------------------------
  62.  
  63. Query-5 (4 records):
  64.  
  65. SELECT
  66. *
  67. FROM
  68. `compliance_alerts`
  69. WHERE
  70. due_date = '2021-12-24'
  71. AND `15_day_email_sent` IS NULL;
  72.  
  73. -------------------------------------------------------------------
  74.  
  75. Query-6 (4 records):
  76.  
  77. SELECT
  78. *
  79. FROM
  80. `compliance_alerts`
  81. WHERE
  82. due_date = '2021-12-24'
  83. AND `compliance_alerts`.`deleted_at` IS NULL;
  84.  
  85.  
  86.  
  87. ----------------------------------------------------------------------------------------------------------------------
  88.  
  89. compliance-alerts-email-7days :
  90.  
  91. Status :
  92. - E-Mail not received.
  93. - Database column updated.
  94.  
  95.  
  96. Query-1 (2 records):
  97.  
  98. SELECT
  99. `id`
  100. FROM
  101. `compliance_alerts`
  102. WHERE
  103. due_date = '2021-12-24'
  104. AND `filing_status` IS NULL
  105. AND `7_day_email_sent` IS NULL
  106. AND `compliance_alerts`.`deleted_at` IS NULL;
  107.  
  108.  
  109. -------------------------------------------------------------------
  110.  
  111. Query-2 (2 records):
  112.  
  113. SELECT
  114. *
  115. FROM
  116. `compliance_alerts`
  117. WHERE
  118. due_date = '2021-12-24'
  119. AND `filing_status` IS NULL
  120. AND `7_day_email_sent` IS NULL
  121. AND `compliance_alerts`.`deleted_at` IS NULL;
  122.  
  123. -------------------------------------------------------------------
  124.  
  125. Query-3 (2 records):
  126.  
  127. SELECT
  128. *
  129. FROM
  130. `compliance_alerts`
  131. WHERE
  132. due_date = '2021-12-24'
  133. AND `filing_status` IS NULL;
  134.  
  135.  
  136. -------------------------------------------------------------------
  137.  
  138. Query-4 (2 records):
  139.  
  140. SELECT
  141. *
  142. FROM
  143. `compliance_alerts`
  144. WHERE
  145. due_date = '2021-12-24'
  146. AND `filing_status` IS NULL
  147. AND `7_day_email_sent` IS NULL;
  148.  
  149. -------------------------------------------------------------------
  150.  
  151. Query-5 (4 records):
  152.  
  153. SELECT
  154. *
  155. FROM
  156. `compliance_alerts`
  157. WHERE
  158. due_date = '2021-12-24'
  159. AND `7_day_email_sent` IS NULL;
  160.  
  161. -------------------------------------------------------------------
  162.  
  163. Query-6 (4 records):
  164.  
  165. SELECT
  166. *
  167. FROM
  168. `compliance_alerts`
  169. WHERE
  170. due_date = '2021-12-24'
  171. AND `compliance_alerts`.`deleted_at` IS NULL;
  172.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement