From f2c4a02d8b7f411a957a2fb28d0e7cf111fad6bc Mon Sep 17 00:00:00 2001 From: amrita.vishnoi Date: Tue, 12 Sep 2017 16:43:50 +0530 Subject: [PATCH] documents --- 150-DOCUMENTATION/001-CONFIGURATION/ADAM Education Servers List-updated.xlsx | Bin 12632 -> 0 bytes 150-DOCUMENTATION/002-DBScripts/ExtendLicense-WKLabGuide1replacement.sql | 12 ++++++++++++ 150-DOCUMENTATION/002-DBScripts/ExtendingLicenseExpiry_2.sql | 26 +++++++++++++++++++++++--- 150-DOCUMENTATION/AIA-Aug17-Report.pptx | Bin 0 -> 63650 bytes 4 files changed, 35 insertions(+), 3 deletions(-) create mode 100644 150-DOCUMENTATION/002-DBScripts/ExtendLicense-WKLabGuide1replacement.sql create mode 100644 150-DOCUMENTATION/AIA-Aug17-Report.pptx diff --git a/150-DOCUMENTATION/001-CONFIGURATION/ADAM Education Servers List-updated.xlsx b/150-DOCUMENTATION/001-CONFIGURATION/ADAM Education Servers List-updated.xlsx index 2490866..148b660 100644 Binary files a/150-DOCUMENTATION/001-CONFIGURATION/ADAM Education Servers List-updated.xlsx and b/150-DOCUMENTATION/001-CONFIGURATION/ADAM Education Servers List-updated.xlsx differ diff --git a/150-DOCUMENTATION/002-DBScripts/ExtendLicense-WKLabGuide1replacement.sql b/150-DOCUMENTATION/002-DBScripts/ExtendLicense-WKLabGuide1replacement.sql new file mode 100644 index 0000000..37eb340 --- /dev/null +++ b/150-DOCUMENTATION/002-DBScripts/ExtendLicense-WKLabGuide1replacement.sql @@ -0,0 +1,12 @@ +update LicenseSubscriptionDetail +set SubscriptionValidFrom = '2017-09-11 00:00:00.000', SubscriptionValidThrough = '2019-09-11 23:59:59.997' +WHERE LicenseId in +(SELECT Id from License where InstitutionName = 'WKLabGuide1replacement') +and (SubscriptionValidFrom='2014-01-24 00:00:00.000' and SubscriptionValidThrough='2017-06-27 00:00:00.000') + +update License set IsActive=1 +where id in ( +SELECT LicenseId FROM LicenseSubscriptionDetail +WHERE LicenseId in +(SELECT Id from License where InstitutionName = 'WKLabGuide1replacement') +and (SubscriptionValidFrom='2017-09-11 00:00:00.000' and SubscriptionValidThrough='2019-09-11 23:59:59.997')) \ No newline at end of file diff --git a/150-DOCUMENTATION/002-DBScripts/ExtendingLicenseExpiry_2.sql b/150-DOCUMENTATION/002-DBScripts/ExtendingLicenseExpiry_2.sql index a7efdbc..a6468d1 100644 --- a/150-DOCUMENTATION/002-DBScripts/ExtendingLicenseExpiry_2.sql +++ b/150-DOCUMENTATION/002-DBScripts/ExtendingLicenseExpiry_2.sql @@ -1,10 +1,30 @@ -/*AUTHOR: ASHISH JAIN +/*AUTHOR: Amrita Vishnoi PURPOSE: Extending Licenses for Institution: EMC Publishing LLC po E10007276 -DATE: 19-Oct-2016 */ +DATE: 11-Sep-2017 */ + +update LicenseSubscriptionDetail set SubscriptionValidFrom='2017-09-11 00:00:00.000' , SubscriptionValidThrough='2019-09-11 23:59:59.997' +where LicenseId in ( +(SELECT Id from License where InstitutionName = 'WKLabGuide1replacement') ) + + +update License set IsActive=1 +where id in ( +SELECT LicenseId FROM LicenseSubscriptionDetail +WHERE LicenseId in +(SELECT Id from License where InstitutionName = 'WKLabGuide1replacement') +and (SubscriptionValidFrom='2017-09-11 00:00:00.000' and SubscriptionValidThrough='2019-09-11 23:59:59.997')) + +****************************** If SubscriptionValidFrom and SubscriptionValidThrough old dates are available then run below query********** + +update LicenseSubscriptionDetail +set SubscriptionValidFrom = '2016-10-19 00:00:00.000', SubscriptionValidThrough = '2017-10-18 23:59:59.997' +WHERE LicenseId in +(SELECT Id from License where InstitutionName = 'EMC Publishing LLC po E10007276') +and (SubscriptionValidFrom='2013-01-08 00:00:00.000' and SubscriptionValidThrough='2014-01-07 23:59:59.997') update License set IsActive=1 where id in ( SELECT LicenseId FROM LicenseSubscriptionDetail WHERE LicenseId in (SELECT Id from License where InstitutionName = 'EMC Publishing LLC po E10007276') -and (SubscriptionValidFrom='2016-10-19 00:00:00.000' and SubscriptionValidThrough='2017-10-18 23:59:59.997')) \ No newline at end of file +and (SubscriptionValidFrom='2016-10-19 00:00:00.000' and SubscriptionValidThrough='2017-10-19 23:59:59.997')) \ No newline at end of file diff --git a/150-DOCUMENTATION/AIA-Aug17-Report.pptx b/150-DOCUMENTATION/AIA-Aug17-Report.pptx new file mode 100644 index 0000000..3057823 Binary files /dev/null and b/150-DOCUMENTATION/AIA-Aug17-Report.pptx differ -- libgit2 0.21.4