I have SQL Job that runs a SPROC everyday. Basically what it does is to sync our Production database to our Offline database.
The SPROC Alter, Drop then Create the database on those servers, 200 in total.
1st step is it creates an Offline database. Then it pushes it down to the servers. Which the individual server will run a task, C:\Windows\system32>schtasks /run /s
The tasks on the servers have identical script.
The SPROC Alter, Drop then Create the database on those servers, 200 in total.
1st step is it creates an Offline database. Then it pushes it down to the servers. Which the individual server will run a task, C:\Windows\system32>schtasks /run /s
The tasks on the servers have identical script.
The SQL Job doesn't fail because it was able to push the last step to the servers. The server tasks were successful to all but one.
The issue here is that every Saturday morning instead of finishing the task by Creating the database, it does not and I don't have the logs that will tell me why.
The screenshot below is what's suppose to happen except the one lined is what's missing for that server that's having this issue.