It's pretty simple:
git checkout -b [NEW-BRANCH] [TAG-NAME]
Mohamed Adel Elkhodary - Microsoft Certified Professional
git checkout -b [NEW-BRANCH] [TAG-NAME]
git push origin --delete [BRANCH NAME]
git tag -a v1.4 9fceb02
git push origin [tagname]
git push origin --tags
git fetch --tags
OPENDATASOURCE ( provider_name, init_string )
sp_configure 'show advanced options', 1;
RECONFIGURE;
GO
sp_configure 'Ad Hoc Distributed Queries', 1;
RECONFIGURE;
GO
select *
from opendatasource('SQLOLEDB.1','Data Source=xxxxx;Password=xxxxx;User ID=xxxxx;Initial Catalog=DATABASE_NAME').[DATABASENAME].[dbo].[TABLE_NAME]
One of the important implications of technical debt is that it must be serviced, i.e., once you incur a debt there will be interest charges. If the debt grows large enough, eventually the company will spend more on servicing its debt than it invests in increasing the value of its other assets. A common example is a legacy code base in which so much work goes into keeping a production system running (i.e., "servicing the debt") that there is little time left over to add new capabilities to the system. With financial debt, analysts talk about the "debt ratio," which is equal to total debt divided by total assets. Higher debt ratios are seen as more risky, which seems true for technical debt, too.