Skip to content

Instantly share code, notes, and snippets.

View Gabrov's full-sized avatar

Mizda Gábor Gabrov

  • Faerch Hungary Kft.
  • Szombathely, Hungary
  • 08:41 (UTC +01:00)
View GitHub Profile
/*Execute SSRS Subscription Manually*/
USE ReportServer
SELECT
S.ScheduleID AS SQLAgent_Job_Name
,RS.SubscriptionID AS SubscriptionID
,SUB.Description AS Sub_Desc
,SUB.DeliveryExtension AS Sub_Del_Extension
,C.Name AS ReportName
,C.Path AS ReportPath
FROM ReportSchedule RS (NOLOCK)

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream