select j.name Job_name, js.step_name, js.subsystem, js.command
from msdb.dbo.sysjobs j
join msdb.dbo.sysjobsteps js on j.job_id = js.job_id
where j.name = 'job_name'
ASKER
ASKER
ASKER
ASKER
select j.name Job_name, js.step_name, js.subsystem, js.command
from msdb.dbo.sysjobs j
join msdb.dbo.sysjobsteps js on j.job_id = js.job_id
If the script is using SSIS Packages or Maintenance plans, then I would recommend opening up those SSIS Packages or Maintenance plans one by one to see the actual logics involved.Microsoft SQL Server is a suite of relational database management system (RDBMS) products providing multi-user database access functionality.SQL Server is available in multiple versions, typically identified by release year, and versions are subdivided into editions to distinguish between product functionality. Component services include integration (SSIS), reporting (SSRS), analysis (SSAS), data quality, master data, T-SQL and performance tuning.
TRUSTED BY
ASKER