June-19 Azure Sqlchamp
June-19 Azure Sqlchamp
This program has well designed and totally focused for SQL Server Database Administrators and
to make them comfortably experts in Microsoft Azure (IaaS and PaaS)
Part1: Below is the topic wise course Part2: (PART2 will publish Soon. Please reach
content: me for more info)
EXEC jobs.sp_add_target_group_member
@target_group_name ='devlocaldb1',
@target_type='sqlserver',
@refresh_credential_name='refresh_credential',
@server_name='devlocaldb1.database.windows.net';
--step 4
EXEC jobs.sp_start_job 'ADDNEWTABLE1'
--
SELECT * FROM jobs.job_executions
WHERE is_active = 1 AND job_name = 'ADDNEWTABLE1'
ORDER BY start_time DESC;
GO