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. When multiple Master Controllers are sharing the same database server, the reserved database connections need only be counted once. Suppose the calculation for a Master Controller yields 400 connections, and there are two additional Master Controllers with identical capability for two other regions placed within the same database, then the formula for that database server is 3 x 400 - 200 2 x 100 = 1000.

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>


...