Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt

This calculation shows the total number of connections required for a single Master Controller. Suppose the calculation for a Master Controller yields 400 connections, and there are two Master Controllers with identical capabiility capability for two other regions placed within the same database, the formula for that database server is 3 x 400 - 200 = 1000 because the reserved database connections need only be counted once.

HTML
<iframe id="result" style="width: 100%; height: 100vh;border:none;" scrolling="no"></iframe>
<script>
$(document).ready(function() {
	$.ajax({
		method: 'GET',
		url: 'https://publicwiki.deltares.nl/download/attachments/194806703/databaseConnectionCountCalculator.html?api=v2',
		dataType: 'text',
		success: function(data) {
			var iframe = document.getElementById('result');
			iframe = iframe.contentWindow || ( iframe.contentDocument.document || iframe.contentDocument);
			iframe.document.open();
			iframe.document.write(data);
			iframe.document.close();
 		}
	});
});
</script>


...