<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.echsacongenitaldb.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=HubertCzobodzinski</id>
	<title>ECHSA Congenital Database - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.echsacongenitaldb.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=HubertCzobodzinski"/>
	<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php/Special:Contributions/HubertCzobodzinski"/>
	<updated>2026-04-19T06:25:41Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Import_from_other_databases&amp;diff=3097</id>
		<title>Import from other databases</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Import_from_other_databases&amp;diff=3097"/>
		<updated>2025-05-07T23:21:48Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You can import data from other database systems into the EACTS Database Software. Please take following steps:&lt;br /&gt;
&lt;br /&gt;
#[[Download]] and install the [[Download|EACTS Database software]].&lt;br /&gt;
#Download the [https://cloud.magnum2.pl/index.php/s/RNf9X8n2P2f2LAM data interchange format DTD file].&lt;br /&gt;
#Download the [https://cloud.magnum2.pl/index.php/s/PJijLqJCCWBn5Bq dictionaries file], which contains lists of procedures, diagnoses and all other factors&lt;br /&gt;
#If you wish to preview the data interchange format, enter a dummy patient into the EACTS Database software, export the data to disk, uncompress and open the XML file with a text editor.&lt;br /&gt;
#Convert data from the other system into the data interchange format.&lt;br /&gt;
#Check your converted data against the downloaded DTD file. It will check your export data for syntax and structure errors.&lt;br /&gt;
#Import your converted data into the EACTS Database software and check if it looks good to you.&lt;br /&gt;
#Export your converted data to the central server, using the [http://www.eactscongenitaldb.org/upload data upload page].&lt;br /&gt;
&lt;br /&gt;
'''See also'''&lt;br /&gt;
*[[Data interchange format]]&lt;br /&gt;
&lt;br /&gt;
[[category:terminology]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=3096</id>
		<title>PostgreSQL network installation</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=3096"/>
		<updated>2025-04-21T03:55:04Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#'''Server installation and configuration'''&lt;br /&gt;
##Go to the the [http://www.postgresql.org PostgreSQL website], install and run the PostgreSQL server. Installation instructions can be found there. ECHSA Database Software should work flawlessly with any PostgreSQL version starting from 8.x, but we recommend to use latest available release.&lt;br /&gt;
##Download following SQL scripts (right-click and choose &amp;quot;Save target as&amp;quot;):&lt;br /&gt;
&lt;br /&gt;
##*[https://cloud.magnum2.pl/index.php/s/t5pb6zC6fdkL8GH postgresql_struct.sql]&lt;br /&gt;
##*[https://cloud.magnum2.pl/index.php/s/JRDWpngSXwJ2i8F postgresql_dict.sql]&lt;br /&gt;
&lt;br /&gt;
##Create a database (for example with name &amp;quot;eacts&amp;quot;) and connect to it. Run those two SQL scripts on this database.&lt;br /&gt;
##Configure your PostgreSQL server so it accepts connections from network. &amp;lt;br&amp;gt; The configuration file is named: &amp;lt;pre&amp;gt;postgresql.conf&amp;lt;/pre&amp;gt;You need to add following line: &amp;lt;pre&amp;gt;listen_addresses = '*'&amp;lt;/pre&amp;gt; Second file that needs to be modified is: &amp;lt;pre&amp;gt;pg_hba.conf&amp;lt;/pre&amp;gt;You need to add a line: &amp;lt;pre&amp;gt;host all all 192.168.3.0/24 md5&amp;lt;/pre&amp;gt; Change 192.168.3.0/24 into your own network block, in format of X.X.X.X/Y where X.X.X.X is address of your network and Y is the number of bits in your netmask. In this example, the network is 192.168.3.0 - 192.168.3.255.&lt;br /&gt;
##Ensure that your PostgreSQL server accepts connections from the network. Check your firewall settings. Stop and start the service if needed.&lt;br /&gt;
##Create a database user and give him privileges to read and write in all tables in the database.&lt;br /&gt;
#'''Client installation and configuration'''&lt;br /&gt;
##[[Download]] and run the latest version of the [[EACTS Database Software]]. When a dialog appears type in your hospital code (three capital letters) and choose the default database path.&lt;br /&gt;
##Go to the software preferences directory &amp;lt;pre&amp;gt;.EactsCongenitalDatabase&amp;lt;/pre&amp;gt; located in the user home directory (please note the '''dot''' character at the beginning of the directory name). Edit the '''ecdbc.properties''' file and set two variables: '''dbdriver''' and '''dburl'''. The user name and the '''password''' are to be set inside the '''dburl''' variable. &amp;lt;pre&amp;gt;dbdriver=org.postgresql.Driver&amp;lt;/pre&amp;gt; &amp;lt;pre&amp;gt;dburl=jdbc:postgresql://srv_addr/eacts?user=your_user&amp;amp;password=your_users_password&amp;lt;/pre&amp;gt; Change '''srv_addr''' into your server's address (like 192.168.0.12 or server.myhospital.org), and give your user's name and password.&lt;br /&gt;
&lt;br /&gt;
'''Notes'''&lt;br /&gt;
&lt;br /&gt;
*You can perform more client installations and configure them in the same was as the first client.&lt;br /&gt;
*As the server address give the IP adress (or a DNS name if appropiate) of the computer with running PostgreSQL server.&lt;br /&gt;
*Proper TCP port (PostgreSQL's default is 5432) must be opened if the server is protected by a firewall&lt;br /&gt;
*'''dburl''' must be in one (perhaps very long) line, together with &amp;quot;?user=...&amp;amp;password=...&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;br /&gt;
[[Category:Instructions]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3095</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3095"/>
		<updated>2025-03-18T17:23:27Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://cloud.magnum2.pl/index.php/s/o3n6d29yjSM3TGS ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': [https://cloud.magnum2.pl/index.php/s/QgEQpdmq39y3Lo9 ecdbc-ic-7.8.0.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://cloud.magnum2.pl/index.php/s/a5CKnLBg5nqzYfE quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3093</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3093"/>
		<updated>2025-02-28T21:02:27Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://cloud.magnum2.pl/index.php/s/WDmkFajXAcY9dzR ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': [https://cloud.magnum2.pl/index.php/s/YMgaJqtigfor3wG ecdbc-ic-7.8.0.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://cloud.magnum2.pl/index.php/s/WsGDDGLayD7Nn3q quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=3092</id>
		<title>PostgreSQL network installation</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=3092"/>
		<updated>2025-02-28T15:30:39Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#'''Server installation and configuration'''&lt;br /&gt;
##Go to the the [http://www.postgresql.org PostgreSQL website], install and run the PostgreSQL server. Installation instructions can be found there. ECHSA Database Software should work flawlessly with any PostgreSQL version starting from 8.x, but we recommend to use latest available release.&lt;br /&gt;
##Download following SQL scripts (right-click and choose &amp;quot;Save target as&amp;quot;):&lt;br /&gt;
&lt;br /&gt;
##*[https://cloud.magnum2.pl/index.php/s/e9BRaXRdtr8D26c postgresql_struct.sql]&lt;br /&gt;
##*[https://cloud.magnum2.pl/index.php/s/qadjiHGyMzkrqAW postgresql_dict.sql]&lt;br /&gt;
&lt;br /&gt;
##Create a database (for example with name &amp;quot;eacts&amp;quot;) and connect to it. Run those two SQL scripts on this database.&lt;br /&gt;
##Configure your PostgreSQL server so it accepts connections from network. &amp;lt;br&amp;gt; The configuration file is named: &amp;lt;pre&amp;gt;postgresql.conf&amp;lt;/pre&amp;gt;You need to add following line: &amp;lt;pre&amp;gt;listen_addresses = '*'&amp;lt;/pre&amp;gt; Second file that needs to be modified is: &amp;lt;pre&amp;gt;pg_hba.conf&amp;lt;/pre&amp;gt;You need to add a line: &amp;lt;pre&amp;gt;host all all 192.168.3.0/24 md5&amp;lt;/pre&amp;gt; Change 192.168.3.0/24 into your own network block, in format of X.X.X.X/Y where X.X.X.X is address of your network and Y is the number of bits in your netmask. In this example, the network is 192.168.3.0 - 192.168.3.255.&lt;br /&gt;
##Ensure that your PostgreSQL server accepts connections from the network. Check your firewall settings. Stop and start the service if needed.&lt;br /&gt;
##Create a database user and give him privileges to read and write in all tables in the database.&lt;br /&gt;
#'''Client installation and configuration'''&lt;br /&gt;
##[[Download]] and run the latest version of the [[EACTS Database Software]]. When a dialog appears type in your hospital code (three capital letters) and choose the default database path.&lt;br /&gt;
##Go to the software preferences directory &amp;lt;pre&amp;gt;.EactsCongenitalDatabase&amp;lt;/pre&amp;gt; located in the user home directory (please note the '''dot''' character at the beginning of the directory name). Edit the '''ecdbc.properties''' file and set two variables: '''dbdriver''' and '''dburl'''. The user name and the '''password''' are to be set inside the '''dburl''' variable. &amp;lt;pre&amp;gt;dbdriver=org.postgresql.Driver&amp;lt;/pre&amp;gt; &amp;lt;pre&amp;gt;dburl=jdbc:postgresql://srv_addr/eacts?user=your_user&amp;amp;password=your_users_password&amp;lt;/pre&amp;gt; Change '''srv_addr''' into your server's address (like 192.168.0.12 or server.myhospital.org), and give your user's name and password.&lt;br /&gt;
&lt;br /&gt;
'''Notes'''&lt;br /&gt;
&lt;br /&gt;
*You can perform more client installations and configure them in the same was as the first client.&lt;br /&gt;
*As the server address give the IP adress (or a DNS name if appropiate) of the computer with running PostgreSQL server.&lt;br /&gt;
*Proper TCP port (PostgreSQL's default is 5432) must be opened if the server is protected by a firewall&lt;br /&gt;
*'''dburl''' must be in one (perhaps very long) line, together with &amp;quot;?user=...&amp;amp;password=...&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;br /&gt;
[[Category:Instructions]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3091</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3091"/>
		<updated>2025-01-21T18:23:32Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://cloud.magnum2.pl/index.php/s/WDmkFajXAcY9dzR ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': [https://cloud.magnum2.pl/index.php/s/QBJrcSWpGCdWxfr ecdbc-ic-7.7.0.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://cloud.magnum2.pl/index.php/s/WsGDDGLayD7Nn3q quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3090</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3090"/>
		<updated>2025-01-21T18:20:40Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://cloud.magnum2.pl/index.php/s/WDmkFajXAcY9dzR ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': [https://cloud.magnum2.pl/index.php/s/QBJrcSWpGCdWxfr ecdbc-ic-7.7.0.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3089</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=3089"/>
		<updated>2025-01-21T18:16:34Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://cloud.magnum2.pl/index.php/f/1990 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/gwmdbpq4qfk7nFW ecdbc-ic-7.7.0.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2369</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2369"/>
		<updated>2024-01-08T02:02:55Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: version 7.7.0 ic&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/gwmdbpq4qfk7nFW ecdbc-ic-7.7.0.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2368</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2368"/>
		<updated>2024-01-05T14:11:03Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': temporarily unavailable due to an error detected&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2367</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2367"/>
		<updated>2023-11-16T21:20:36Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/LJ6PKHANJJjggeL ecdbc-ic-7.6.1.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2366</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2366"/>
		<updated>2023-11-16T21:20:08Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: New version of IC Client Software&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/LJ6PKHANJJjggeL ecdbc-ic-7.4.9.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2365</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2365"/>
		<updated>2023-08-10T23:09:31Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''interventional cardiology centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/w4eBgHSsS4ezYdA ecdbc-ic-7.4.9.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2364</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2364"/>
		<updated>2023-08-10T23:08:56Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* data collection software for '''cardiac surgery centers''': [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* data collection software for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/w4eBgHSsS4ezYdA ecdbc-ic-7.4.9.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2363</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2363"/>
		<updated>2023-08-10T23:06:58Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
&lt;br /&gt;
* client software for cardiac surgery centers: [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
&lt;br /&gt;
* client software for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/w4eBgHSsS4ezYdA ecdbc-ic-7.4.9.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2362</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2362"/>
		<updated>2023-08-10T02:25:54Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
* client software for cardiac surgery centers: [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
* client software for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/w4eBgHSsS4ezYdA ecdbc-ic-7.4.9.msi]&lt;br /&gt;
&lt;br /&gt;
Quick User's Guide for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/7HeHJW36Pj9os2X quick_users_guide.pdf]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2361</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2361"/>
		<updated>2023-08-10T02:19:23Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
* client software for cardiac surgery centers: [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
* client software for interventional cardiology centers: [https://www-m2.magnum2.pl/cloud/index.php/s/w4eBgHSsS4ezYdA ecdbc-ic-7.4.9.msi]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2360</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2360"/>
		<updated>2023-08-10T02:17:54Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
* client software for cardiac surgery centers:&lt;br /&gt;
   [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
* client software for interventional cardiology centers:&lt;br /&gt;
[https://www-m2.magnum2.pl/cloud/index.php/s/w4eBgHSsS4ezYdA ecdbc-ic-7.4.9.msi]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2359</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2359"/>
		<updated>2023-08-10T02:12:20Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
* client software for cardiac surgery centers:&lt;br /&gt;
[https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
* client software for interventional cardiology centers:&lt;br /&gt;
[https://www-m2.magnum2.pl/cloud/index.php/s/w4eBgHSsS4ezYdA ecdbc-ic-7.4.9.msi]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2358</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2358"/>
		<updated>2023-08-10T02:11:05Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: IC package&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are two different distribution packages:&lt;br /&gt;
* client software for cardiac surgery centers:&lt;br /&gt;
 [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi]&lt;br /&gt;
* client software for interventional cardiology centers:&lt;br /&gt;
 [https://www-m2.magnum2.pl/cloud/index.php/s/w4eBgHSsS4ezYdA ecdbc-ic-7.4.9.msi]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2357</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2357"/>
		<updated>2023-08-09T15:43:47Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6xxx ecdbc-cs-7.5.0.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/GGqJ6zHCNmgzCH9xxx ecdbc-cs-7.5.0.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=2356</id>
		<title>PostgreSQL network installation</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=2356"/>
		<updated>2023-02-09T01:33:58Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: New links to sql files.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#'''Server installation and configuration'''&lt;br /&gt;
##Go to the the [http://www.postgresql.org PostgreSQL website], install and run the PostgreSQL server. Installation instructions can be found there. ECHSA Database Software should work flawlessly with any PostgreSQL version starting from 8.x, but we recommend to use latest available release.&lt;br /&gt;
##Download following SQL scripts (right-click and choose &amp;quot;Save target as&amp;quot;):&lt;br /&gt;
##*[https://www-m2.magnum2.pl/cloud/index.php/s/33AZeASYsQSdJY5 postgresql_struct.sql]&lt;br /&gt;
##*[https://www-m2.magnum2.pl/cloud/index.php/s/RBxmL66ND3FfjsH postgresql_dict.sql]&lt;br /&gt;
##Create a database (for example with name &amp;quot;eacts&amp;quot;) and connect to it. Run those two SQL scripts on this database.&lt;br /&gt;
##Configure your PostgreSQL server so it accepts connections from network. &amp;lt;br&amp;gt; The configuration file is named: &amp;lt;pre&amp;gt;postgresql.conf&amp;lt;/pre&amp;gt;You need to add following line: &amp;lt;pre&amp;gt;listen_addresses = '*'&amp;lt;/pre&amp;gt; Second file that needs to be modified is: &amp;lt;pre&amp;gt;pg_hba.conf&amp;lt;/pre&amp;gt;You need to add a line: &amp;lt;pre&amp;gt;host all all 192.168.3.0/24 md5&amp;lt;/pre&amp;gt; Change 192.168.3.0/24 into your own network block, in format of X.X.X.X/Y where X.X.X.X is address of your network and Y is the number of bits in your netmask. In this example, the network is 192.168.3.0 - 192.168.3.255.&lt;br /&gt;
##Ensure that your PostgreSQL server accepts connections from the network. Check your firewall settings. Stop and start the service if needed.&lt;br /&gt;
##Create a database user and give him privileges to read and write in all tables in the database.&lt;br /&gt;
#'''Client installation and configuration'''&lt;br /&gt;
##[[Download]] and run the latest version of the [[EACTS Database Software]]. When a dialog appears type in your hospital code (three capital letters) and choose the default database path.&lt;br /&gt;
##Go to the software preferences directory &amp;lt;pre&amp;gt;.EactsCongenitalDatabase&amp;lt;/pre&amp;gt; located in the user home directory (please note the '''dot''' character at the beginning of the directory name). Edit the '''ecdbc.properties''' file and set two variables: '''dbdriver''' and '''dburl'''. The user name and the '''password''' are to be set inside the '''dburl''' variable. &amp;lt;pre&amp;gt;dbdriver=org.postgresql.Driver&amp;lt;/pre&amp;gt; &amp;lt;pre&amp;gt;dburl=jdbc:postgresql://srv_addr/eacts?user=your_user&amp;amp;password=your_users_password&amp;lt;/pre&amp;gt; Change '''srv_addr''' into your server's address (like 192.168.0.12 or server.myhospital.org), and give your user's name and password.&lt;br /&gt;
&lt;br /&gt;
'''Notes'''&lt;br /&gt;
&lt;br /&gt;
*You can perform more client installations and configure them in the same was as the first client.&lt;br /&gt;
*As the server address give the IP adress (or a DNS name if appropiate) of the computer with running PostgreSQL server.&lt;br /&gt;
*Proper TCP port (PostgreSQL's default is 5432) must be opened if the server is protected by a firewall&lt;br /&gt;
*'''dburl''' must be in one (perhaps very long) line, together with &amp;quot;?user=...&amp;amp;password=...&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;br /&gt;
[[Category:Instructions]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2355</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2355"/>
		<updated>2022-12-02T04:22:51Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: Fixed versions.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/sxnsgBbXgPPDaK6 ecdbc-cs-7.5.0.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/GGqJ6zHCNmgzCH9 ecdbc-cs-7.5.0.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2354</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2354"/>
		<updated>2022-05-06T00:55:06Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/peaCHoQPDLktd5a ecdbc-cs-7.0.5.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/gJPBQexFtpiEoPw ecdbc-cs-7.0.5.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2353</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2353"/>
		<updated>2022-05-06T00:54:31Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/peaCHoQPDLktd5a ecdbc-cs-7.0.5.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/gJPBQexFtpiEoPw] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2352</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2352"/>
		<updated>2022-05-06T00:52:53Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [:File:https://www-m2.magnum2.pl/cloud/index.php/s/peaCHoQPDLktd5a|ecdbc-cs-7.0.5.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/gJPBQexFtpiEoPw] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2351</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2351"/>
		<updated>2022-05-06T00:52:01Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [:File:https://www-m2.magnum2.pl/cloud/index.php/s/peaCHoQPDLktd5a] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/gJPBQexFtpiEoPw] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2350</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2350"/>
		<updated>2022-05-06T00:50:00Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/peaCHoQPDLktd5a] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/gJPBQexFtpiEoPw] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2349</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2349"/>
		<updated>2022-05-06T00:49:08Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [[https://www-m2.magnum2.pl/cloud/index.php/s/peaCHoQPDLktd5a|ecdbc-cs-7.5.0.msi]] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/gJPBQexFtpiEoPw] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2348</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2348"/>
		<updated>2022-05-06T00:47:51Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/peaCHoQPDLktd5a|ecdbc-cs-7.5.0.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/gJPBQexFtpiEoPw] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2347</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2347"/>
		<updated>2022-05-06T00:45:32Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/peaCHoQPDLktd5a] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/gJPBQexFtpiEoPw] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2346</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2346"/>
		<updated>2022-05-06T00:44:05Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: 7.5.0 release&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [https://www-m2.magnum2.pl/cloud/index.php/s/peaCHoQPDLktd5a] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* https://www-m2.magnum2.pl/cloud/index.php/s/gJPBQexFtpiEoPw] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2345</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2345"/>
		<updated>2022-04-04T23:43:54Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [https://docs.echsacongenitaldb.org/uploads/release/ecdbc-jre64-7.4.8.msi ecdbc-jre64-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://docs.echsacongenitaldb.org/uploads/release/ecdbc-jre32-7.4.8.msi ecdbc-jre32-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (32-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://docs.echsacongenitaldb.org/uploads/release/ecdbc-7.4.8.zip ecdbc-7.4.8.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Data_export&amp;diff=2344</id>
		<title>Data export</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Data_export&amp;diff=2344"/>
		<updated>2022-01-26T23:28:37Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: EACTS -&amp;gt; ECHSA&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{manual-infobox}}&lt;br /&gt;
&lt;br /&gt;
Data export is being done on demand, which means that whenever you want to export the data, you will need to tell the program do to so, by clicking the option in the menu.&lt;br /&gt;
&lt;br /&gt;
== Export to ECHSA Database ==&lt;br /&gt;
&lt;br /&gt;
=== Patient names ===&lt;br /&gt;
&lt;br /&gt;
Export to ECHSA Database is an '''anonymous''' export, where names of patients and surgeons are not exported. The export file is a clear-text file, which can be inspected even with a simple text editor such as Notepad. To save bandwidth, the file is compressed with gzip. You can see the clear text after you uncompress the file.&lt;br /&gt;
&lt;br /&gt;
To see the file contents, you can export the data to your hard disk, open it with an archive manager (such as WinZip), extract the XML file and examine it with an XML or simple text editor (Notepad). You can see that there are no names. You can afterwards submit your file to our database.&lt;br /&gt;
&lt;br /&gt;
You can also check the data export procedure in our software [[source code]]. To do that, you need to understand Java code, or hire someone who does.&lt;br /&gt;
&lt;br /&gt;
=== How to export ===&lt;br /&gt;
&lt;br /&gt;
To export data to ECHSA Database, to the [[central database]], click on the menu bar on top, labeled ''ECHSA Database tools'', then ''Export to ECHSA Database''. You can export data using your keyboard, by pressing &amp;lt;tt&amp;gt;CTRL+E&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
To upload a file with data, go to [http://www.echsacongenitaldb.org/upload the upload website], select the file from the disk and press ''Submit''.&lt;br /&gt;
&lt;br /&gt;
== Complete export ==&lt;br /&gt;
&lt;br /&gt;
The complete export allows you to export all of the data into a disk file.&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border: 2px solid gray; width: 100%;&amp;quot;&lt;br /&gt;
|-style=&amp;quot;background-color: #FFC; text-align: center;&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
'''Personal data''', including patients' and staff's '''names''' are being exported when using complete export!&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The complete export writes a file in the XML (for information about XML go to [http://www.w3.org/XML]) format which is a modern and portable data exchange format. It is also a transparent format, which means that you can easily look inside, read it and use it.&lt;br /&gt;
&lt;br /&gt;
XML file can read in programs like Notepad, or any text editor. The file is intended for integration with external computer systems, and data import from XML always require some programming. It is not intended for direct end-user usage.&lt;br /&gt;
&lt;br /&gt;
If you want to import data into office programs, export the data to CSV format.&lt;br /&gt;
&lt;br /&gt;
== XML and XSLT transformation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XmlAndXslt.png|frame|center|XSLT transformation diagram]]&lt;br /&gt;
&lt;br /&gt;
XSLT Stylesheet allows to transform a XML file into other formats for, example:&lt;br /&gt;
&lt;br /&gt;
* HTML (also multiple HTML files)&lt;br /&gt;
* Plain text&lt;br /&gt;
* CSV&lt;br /&gt;
* SQL scripts&lt;br /&gt;
&lt;br /&gt;
With knowledge on how to write [http://www.w3.org/TR/xslt XSLT], you are able to write your own stylsheet and transform the data into formats compatible with various '''scientific software''':&lt;br /&gt;
&lt;br /&gt;
*[http://www.octave.org/ GNU Octave] (free software under [http://www.gnu.org/licenses/licenses.html#GPL GNU GPL])&lt;br /&gt;
*[http://www.r-project.org/ R project] (free software under [http://www.gnu.org/licenses/licenses.html#GPL GNU GPL])&lt;br /&gt;
*[http://scilabsoft.inria.fr/ Scilab] (under [http://scilabsoft.inria.fr/legal/license.html Scilab license])&lt;br /&gt;
*Matlab&lt;br /&gt;
*Splus&lt;br /&gt;
&lt;br /&gt;
==CSV file format==&lt;br /&gt;
&lt;br /&gt;
''see article: [[Export to CSV]]''&lt;br /&gt;
&lt;br /&gt;
== Import to relational databases ==&lt;br /&gt;
&lt;br /&gt;
In order to work with these files in a relational database, you need to know the unique identifiers in each table.&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;tt&amp;gt;patient&amp;lt;/tt&amp;gt; table uses &amp;lt;tt&amp;gt;patient_id&amp;lt;/tt&amp;gt; as an unique identifier. Analogously, the &amp;lt;tt&amp;gt;admission&amp;lt;/tt&amp;gt; and &amp;lt;tt&amp;gt;operation&amp;lt;/tt&amp;gt; tables have the &amp;lt;tt&amp;gt;*_no&amp;lt;/tt&amp;gt; fields.&lt;br /&gt;
&lt;br /&gt;
The numbers are statically attached to the patients, admissions and operations and will remain the same across all of the exports. However, if you perform another installation of ECHSA Database Software and transfer data there, tha patient numbers will change.&lt;br /&gt;
&lt;br /&gt;
=== ODBC access ===&lt;br /&gt;
&lt;br /&gt;
Although it's not tested yet, it should be possible to run a standalone Cloudscape server and connect to it via ODBC.&lt;br /&gt;
&lt;br /&gt;
'''Warning!''' If you use ODBC access with possibility to write to the database, you should be careful! You can easily corrupt the database when working directly on the database.&lt;br /&gt;
&lt;br /&gt;
=== JDBC access ===&lt;br /&gt;
&lt;br /&gt;
Direct access to the database is possible with OpenOffice and JDBC. Read the instructions:&lt;br /&gt;
* [[OpenOffice and JDBC for data access]]&lt;br /&gt;
&lt;br /&gt;
'''See also'''&lt;br /&gt;
&lt;br /&gt;
*[[Data interchange format]]&lt;br /&gt;
&lt;br /&gt;
[[category:terminology|Export]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Import_from_other_databases&amp;diff=2343</id>
		<title>Import from other databases</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Import_from_other_databases&amp;diff=2343"/>
		<updated>2021-01-15T12:32:09Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: Updated download urls.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You can import data from other database systems into the EACTS Database Software. Please take following steps:&lt;br /&gt;
&lt;br /&gt;
#[[Download]] and install the [[Download|EACTS Database software]].&lt;br /&gt;
#Download the [https://www-m2.magnum2.pl/cloud/index.php/s/WHZmFqTfB2xDLko data interchange format DTD file].&lt;br /&gt;
#Download the [https://www-m2.magnum2.pl/cloud/index.php/s/q9SAoTRssojSFbE dictionaries file], which contains lists of procedures, diagnoses and all other factors&lt;br /&gt;
#If you wish to preview the data interchange format, enter a dummy patient into the EACTS Database software, export the data to disk, uncompress and open the XML file with a text editor.&lt;br /&gt;
#Convert data from the other system into the data interchange format.&lt;br /&gt;
#Check your converted data against the downloaded DTD file. It will check your export data for syntax and structure errors.&lt;br /&gt;
#Import your converted data into the EACTS Database software and check if it looks good to you.&lt;br /&gt;
#Export your converted data to the central server, using the [http://www.eactscongenitaldb.org/upload data upload page].&lt;br /&gt;
&lt;br /&gt;
'''See also'''&lt;br /&gt;
*[[Data interchange format]]&lt;br /&gt;
&lt;br /&gt;
[[category:terminology]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=2342</id>
		<title>PostgreSQL network installation</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=2342"/>
		<updated>2019-06-21T13:02:11Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#'''Server installation and configuration'''&lt;br /&gt;
##Go to the the [http://www.postgresql.org PostgreSQL website], install and run the PostgreSQL server. Installation instructions can be found there. ECHSA Database Software should work flawlessly with any PostgreSQL version starting from 8.x, but we recommend to use latest available release.&lt;br /&gt;
##Download following SQL scripts (right-click and choose &amp;quot;Save target as&amp;quot;):&lt;br /&gt;
##*[http://www.eactscongenitaldb.org/viewcvs/*checkout*/ecdbc/trunk/pl/magnum2/ecdbc/database/sql/postgresql_struct.sql?root=ecbdc postgresql_struct.sql]&lt;br /&gt;
##*[http://www.eactscongenitaldb.org/viewcvs/*checkout*/ecdbc/trunk/pl/magnum2/ecdbc/database/sql/postgresql_dict.sql?root=ecbdc postgresql_dict.sql]&lt;br /&gt;
##Create a database (for example with name &amp;quot;eacts&amp;quot;) and connect to it. Run those two SQL scripts on this database.&lt;br /&gt;
##Configure your PostgreSQL server so it accepts connections from network. &amp;lt;br&amp;gt; The configuration file is named: &amp;lt;pre&amp;gt;postgresql.conf&amp;lt;/pre&amp;gt;You need to add following line: &amp;lt;pre&amp;gt;listen_addresses = '*'&amp;lt;/pre&amp;gt; Second file that needs to be modified is: &amp;lt;pre&amp;gt;pg_hba.conf&amp;lt;/pre&amp;gt;You need to add a line: &amp;lt;pre&amp;gt;host all all 192.168.3.0/24 md5&amp;lt;/pre&amp;gt; Change 192.168.3.0/24 into your own network block, in format of X.X.X.X/Y where X.X.X.X is address of your network and Y is the number of bits in your netmask. In this example, the network is 192.168.3.0 - 192.168.3.255.&lt;br /&gt;
##Ensure that your PostgreSQL server accepts connections from the network. Check your firewall settings. Stop and start the service if needed.&lt;br /&gt;
##Create a database user and give him privileges to read and write in all tables in the database.&lt;br /&gt;
#'''Client installation and configuration'''&lt;br /&gt;
##[[Download]] and run the latest version of the [[EACTS Database Software]]. When a dialog appears type in your hospital code (three capital letters) and choose the default database path.&lt;br /&gt;
##Go to the software preferences directory &amp;lt;pre&amp;gt;.EactsCongenitalDatabase&amp;lt;/pre&amp;gt; located in the user home directory (please note the '''dot''' character at the beginning of the directory name). Edit the '''ecdbc.properties''' file and set two variables: '''dbdriver''' and '''dburl'''. The user name and the '''password''' are to be set inside the '''dburl''' variable. &amp;lt;pre&amp;gt;dbdriver=org.postgresql.Driver&amp;lt;/pre&amp;gt; &amp;lt;pre&amp;gt;dburl=jdbc:postgresql://srv_addr/eacts?user=your_user&amp;amp;password=your_users_password&amp;lt;/pre&amp;gt; Change '''srv_addr''' into your server's address (like 192.168.0.12 or server.myhospital.org), and give your user's name and password.&lt;br /&gt;
&lt;br /&gt;
'''Notes'''&lt;br /&gt;
&lt;br /&gt;
*You can perform more client installations and configure them in the same was as the first client.&lt;br /&gt;
*As the server address give the IP adress (or a DNS name if appropiate) of the computer with running PostgreSQL server.&lt;br /&gt;
*Proper TCP port (PostgreSQL's default is 5432) must be opened if the server is protected by a firewall&lt;br /&gt;
*'''dburl''' must be in one (perhaps very long) line, together with &amp;quot;?user=...&amp;amp;password=...&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;br /&gt;
[[Category:Instructions]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2341</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2341"/>
		<updated>2019-04-17T01:16:31Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [http://docs.echsacongenitaldb.org/uploads/release/ecdbc-jre64-7.4.8.msi ecdbc-jre64-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://docs.echsacongenitaldb.org/uploads/release/ecdbc-jre32-7.4.8.msi ecdbc-jre32-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (32-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://docs.echsacongenitaldb.org/uploads/release/ecdbc-7.4.8.zip ecdbc-7.4.8.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2340</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2340"/>
		<updated>2019-04-17T01:15:45Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre64-7.4.8.msi ecdbc-jre64-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://docs.echsacongenitaldb.org/uploads/release/ecdbc-jre32-7.4.8.msi ecdbc-jre32-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (32-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://docs.echsacongenitaldb.org/uploads/release/ecdbc-7.4.8.zip ecdbc-7.4.8.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2339</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2339"/>
		<updated>2019-04-17T01:14:57Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre64-7.4.8.msi ecdbc-jre64-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre32-7.4.8.msi ecdbc-jre32-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (32-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://docs.echsacongenitaldb.org/uploads/release/ecdbc-7.4.8.zip ecdbc-7.4.8.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2338</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2338"/>
		<updated>2019-04-17T01:13:28Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre64-7.4.8.msi ecdbc-jre64-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre32-7.4.8.msi ecdbc-jre32-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (32-bit version). No previous installation of Java required.&lt;br /&gt;
* [https://docs.echsacongenitaldb.org/uploads/release/ecdbc-7.4.8.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2335</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2335"/>
		<updated>2017-11-17T02:14:36Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: 7.4.8 version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre64-7.4.8.msi ecdbc-jre64-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre32-7.4.8.msi ecdbc-jre32-7.4.8.msi] -- Windows Installer package bundled with Java Runtime Environment (32-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-7.4.8.zip ecdbc-7.4.8.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=2334</id>
		<title>PostgreSQL network installation</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=2334"/>
		<updated>2017-06-30T19:09:26Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#'''Server installation and configuration'''&lt;br /&gt;
##Go to the the [http://www.postgresql.org PostgreSQL website], install and run the PostgreSQL server. Installation instructions can be found there. ECHSA Database Software should work flawlessly with any 8.x or 9.x PostgreSQL version, but we recommend to use latest available release.&lt;br /&gt;
##Download following SQL scripts (right-click and choose &amp;quot;Save target as&amp;quot;):&lt;br /&gt;
##*[http://www.eactscongenitaldb.org/viewcvs/*checkout*/ecdbc/trunk/pl/magnum2/ecdbc/database/sql/postgresql_struct.sql?root=ecbdc postgresql_struct.sql]&lt;br /&gt;
##*[http://www.eactscongenitaldb.org/viewcvs/*checkout*/ecdbc/trunk/pl/magnum2/ecdbc/database/sql/postgresql_dict.sql?root=ecbdc postgresql_dict.sql]&lt;br /&gt;
##Create a database (for example with name &amp;quot;eacts&amp;quot;) and connect to it. Run those two SQL scripts on this database.&lt;br /&gt;
##Configure your PostgreSQL server so it accepts connections from network. &amp;lt;br&amp;gt; The configuration file is named: &amp;lt;pre&amp;gt;postgresql.conf&amp;lt;/pre&amp;gt;You need to add following line: &amp;lt;pre&amp;gt;listen_addresses = '*'&amp;lt;/pre&amp;gt; Second file that needs to be modified is: &amp;lt;pre&amp;gt;pg_hba.conf&amp;lt;/pre&amp;gt;You need to add a line: &amp;lt;pre&amp;gt;host all all 192.168.3.0/24 md5&amp;lt;/pre&amp;gt; Change 192.168.3.0/24 into your own network block, in format of X.X.X.X/Y where X.X.X.X is address of your network and Y is the number of bits in your netmask. In this example, the network is 192.168.3.0 - 192.168.3.255.&lt;br /&gt;
##Ensure that your PostgreSQL server accepts connections from the network. Check your firewall settings. Stop and start the service if needed.&lt;br /&gt;
##Create a database user and give him privileges to read and write in all tables in the database.&lt;br /&gt;
#'''Client installation and configuration'''&lt;br /&gt;
##[[Download]] and run the latest version of the [[EACTS Database Software]]. When a dialog appears type in your hospital code (three capital letters) and choose the default database path.&lt;br /&gt;
##Go to the software preferences directory &amp;lt;pre&amp;gt;.EactsCongenitalDatabase&amp;lt;/pre&amp;gt; located in the user home directory (please note the '''dot''' character at the beginning of the directory name). Edit the '''ecdbc.properties''' file and set two variables: '''dbdriver''' and '''dburl'''. The user name and the '''password''' are to be set inside the '''dburl''' variable. &amp;lt;pre&amp;gt;dbdriver=org.postgresql.Driver&amp;lt;/pre&amp;gt; &amp;lt;pre&amp;gt;dburl=jdbc:postgresql://srv_addr/eacts?user=your_user&amp;amp;password=your_users_password&amp;lt;/pre&amp;gt; Change '''srv_addr''' into your server's address (like 192.168.0.12 or server.myhospital.org), and give your user's name and password.&lt;br /&gt;
&lt;br /&gt;
'''Notes'''&lt;br /&gt;
&lt;br /&gt;
*You can perform more client installations and configure them in the same was as the first client.&lt;br /&gt;
*As the server address give the IP adress (or a DNS name if appropiate) of the computer with running PostgreSQL server.&lt;br /&gt;
*Proper TCP port (PostgreSQL's default is 5432) must be opened if the server is protected by a firewall&lt;br /&gt;
*'''dburl''' must be in one (perhaps very long) line, together with &amp;quot;?user=...&amp;amp;password=...&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;br /&gt;
[[Category:Instructions]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2333</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2333"/>
		<updated>2017-05-18T10:03:16Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre64-7.4.6.msi ecdbc-jre64-7.4.6.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre32-7.4.6.msi ecdbc-jre32-7.4.6.msi] -- Windows Installer package bundled with Java Runtime Environment (32-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-7.4.6.zip ecdbc-7.4.6.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Internationalization&amp;diff=2332</id>
		<title>Internationalization</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Internationalization&amp;diff=2332"/>
		<updated>2017-04-20T18:11:48Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{software-infobox}}&lt;br /&gt;
&lt;br /&gt;
The [[ECHSA Database Software]] is capable of supporting many language versions. We encourage you to contribute a translation into your language.&lt;br /&gt;
&lt;br /&gt;
== Current translation status ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|'''Language'''&lt;br /&gt;
|'''Version'''&lt;br /&gt;
|'''Contributor'''&lt;br /&gt;
|-&lt;br /&gt;
|English&lt;br /&gt;
| 7.0.0&lt;br /&gt;
| original application language&lt;br /&gt;
|-&lt;br /&gt;
|German&lt;br /&gt;
| 7.0.4  &lt;br /&gt;
| [http://www.dhm.mhn.de/ww/de/pub/dhm/kliniken_und_institute/herz_und_gefaesschirurgie/klinikteam/assistenzaerzte_und_aips/dr_m_wottke.htm Dr M. Wottke] (Deutsches Herzzentrum München)&lt;br /&gt;
|-&lt;br /&gt;
|Italian&lt;br /&gt;
| 7.0.4  &lt;br /&gt;
| [http://www.physionet.org/contributors/ Dr. Ing. Alessandro Taddei] (Hospital G. Pasquinucci)&lt;br /&gt;
|-&lt;br /&gt;
|Mexican Spanish    &lt;br /&gt;
| 7.0.4  &lt;br /&gt;
| [http://www.ctsnet.org/home/abenita Dr Antonio Benita] (Instituto Nacional De Cardiologia Ignacio Chavez) &lt;br /&gt;
|-&lt;br /&gt;
|Polish             &lt;br /&gt;
| 7.0.0  &lt;br /&gt;
| [[Maciej Bliziński]] (from the [[Software development team]])&lt;br /&gt;
|-&lt;br /&gt;
| Spanish&lt;br /&gt;
| 7.0.8  || [http://www.vascularweb.org/Software/physearch.cgi?submit=individual&amp;amp;id=3738  Dr Jose M. Gomez-Ullate] ||&lt;br /&gt;
|-&lt;br /&gt;
|Venezuelan Spanish || 7.0.5  || [http://www.ctsnet.org/home/idonis Igor Donis], M.D.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
You can easily translate the Software to your language! Average computer experience is enough. See [[how to translate]]&lt;br /&gt;
&lt;br /&gt;
'''Please note''': as the software is under continuous development, some new english text is introduced in every software release. You can notice that some of the text in the application is not translated, especially the newly added. In such a case, the translation needs to be updated. If you want to volunteer and translate, please go to the page [[how to translate]].&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Platforms&amp;diff=2331</id>
		<title>Platforms</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Platforms&amp;diff=2331"/>
		<updated>2017-04-20T18:11:12Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{software-infobox}}&lt;br /&gt;
&lt;br /&gt;
Supported platforms are:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|&lt;br /&gt;
[[Image:windows-logo.jpg|120px]]&lt;br /&gt;
|&lt;br /&gt;
[[Image:linux-logo.png|120px]]&lt;br /&gt;
|&lt;br /&gt;
[[Image:apple-icon.gif|120px]]&lt;br /&gt;
|&lt;br /&gt;
[[Image:solaris-logo.gif|120px]]&lt;br /&gt;
|-&lt;br /&gt;
!&lt;br /&gt;
Microsoft Windows&lt;br /&gt;
!&lt;br /&gt;
[[GNU/Linux]]&lt;br /&gt;
!&lt;br /&gt;
Mac OS X&lt;br /&gt;
!&lt;br /&gt;
Solaris&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Mac OS X==&lt;br /&gt;
&lt;br /&gt;
===Mac OS X 10.3===&lt;br /&gt;
&lt;br /&gt;
There is a problem with running the Software under Mac OS 10.3. The [[ECHSA Database Software]] depends on [[Derby]] (formerly called Cloudscape, from IBM), which doesn't support Mac OS X 10.3. It's probably possible to run the DataCollectionSoftware on Mac OS X, using a [[network installation]].&lt;br /&gt;
&lt;br /&gt;
According to Jason Brome's Weblog, there is a [http://www.jasonbrome.com/blog/archives/2004/12/05/apache_derby_on_mac_os_x.html workaround for Derby on Mac OS X 10.3]. &lt;br /&gt;
&lt;br /&gt;
===Mac OS X 10.4 (Tiger)===&lt;br /&gt;
&lt;br /&gt;
According to Jason Brome, Derby works under Mac OS X 10.4. Is is probable that [[ECHSA Database Software]] works as well. However, we didn't have an oportunity to verify that. Any feedback would be greatly appreciated.&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Licensing&amp;diff=2330</id>
		<title>Licensing</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Licensing&amp;diff=2330"/>
		<updated>2017-04-20T18:09:43Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{software-infobox}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Heckert GNU white.png|150px|left|GNU Logo]]&lt;br /&gt;
&lt;br /&gt;
The [[ECHSA Database Software]] is a Free Software and it's licensed under terms of the [[GNU General Public License]]. By downloading and running it, you agree to use the [[ECHSA Database Software]] under the terms of GNU GPL.&lt;br /&gt;
&lt;br /&gt;
The basic meaning of GNU General Public License is that you are free to download and use the software for any purpose. You are also free to download and modify the source code. However, if you decide to distribute the modified version of software, you have to publish it under GNU General Public License as well, also together with the source code.&lt;br /&gt;
&lt;br /&gt;
Please note: you need to read the [[GNU General Public License]] itself to fully understand it.&lt;br /&gt;
&lt;br /&gt;
The '''[[source code]]''' of [[ECHSA Database Software]] is available.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: left;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''See also:'''&lt;br /&gt;
&lt;br /&gt;
*[http://www.gnu.org/ Free Software Foundation]&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Licensing&amp;diff=2329</id>
		<title>Licensing</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Licensing&amp;diff=2329"/>
		<updated>2017-04-20T18:09:17Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{software-infobox}}&lt;br /&gt;
&lt;br /&gt;
[[Image:Heckert GNU white.png|150px|left|GNU Logo]]&lt;br /&gt;
&lt;br /&gt;
The [[ECHSA Database Software]] is a Free Software and it's licensed under terms of the [[GNU General Public License]]. By downloading and running it, you agree to use the [[EACTS Database Software]] under the terms of GNU GPL.&lt;br /&gt;
&lt;br /&gt;
The basic meaning of GNU General Public License is that you are free to download and use the software for any purpose. You are also free to download and modify the source code. However, if you decide to distribute the modified version of software, you have to publish it under GNU General Public License as well, also together with the source code.&lt;br /&gt;
&lt;br /&gt;
Please note: you need to read the [[GNU General Public License]] itself to fully understand it.&lt;br /&gt;
&lt;br /&gt;
The '''[[source code]]''' of [[ECHSA Database Software]] is available.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: left;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''See also:'''&lt;br /&gt;
&lt;br /&gt;
*[http://www.gnu.org/ Free Software Foundation]&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Requirements&amp;diff=2328</id>
		<title>Requirements</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Requirements&amp;diff=2328"/>
		<updated>2017-04-20T18:08:41Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{software-infobox}}&lt;br /&gt;
&lt;br /&gt;
==Java==&lt;br /&gt;
&lt;br /&gt;
Before you can run the [[ECHSA Database Software]], you have to install Java JRE (Java Runtime Environment) from Sun. Please take following steps:&lt;br /&gt;
&lt;br /&gt;
*Go to [http://www.java.com Java download page]. You may wish to open it in new window: right click on the link and choose “open link in new window”. &lt;br /&gt;
*Download the installation file to your computer. Save it in some specific place, for example on the desktop.&lt;br /&gt;
*Install the JRE on your computer by running the installation file.&lt;br /&gt;
&lt;br /&gt;
*Note: you need Java version 5.0. It will NOT work with Java 1.4!&lt;br /&gt;
*Note: you need about 75MB of the disk space to install the JRE.&lt;br /&gt;
&lt;br /&gt;
==Screen resolution==&lt;br /&gt;
&lt;br /&gt;
At least 1024x768 resolution is required.&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2327</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=Download&amp;diff=2327"/>
		<updated>2017-04-20T18:07:33Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;----&lt;br /&gt;
'''It is of the HIGHEST IMPORTANCE that you make a copy of your data before having installed the new version of the software for your data safety reasons. Please, use the data collection software menu: ECHSA Database tools -&amp;gt; Export data to CSV or XML (use compressed XML, which is a default) and save the exported file on another hard drive, pen drive, burn a CD etc.&lt;br /&gt;
'''&lt;br /&gt;
----&lt;br /&gt;
There are three different distribution packages:&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre64-7.4.4.msi ecdbc-jre64-7.4.4.msi] -- Windows Installer package bundled with Java Runtime Environment (64-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-jre32-7.4.4.msi ecdbc-jre32-7.4.4.msi] -- Windows Installer package bundled with Java Runtime Environment (32-bit version). No previous installation of Java required.&lt;br /&gt;
* [http://magnum2.pl/~ecdb/release/ecdbc-7.4.4.zip ecdbc-7.4.4.zip] -- zipped archive, suitable for non-Windows users.&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
	<entry>
		<id>https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=2326</id>
		<title>PostgreSQL network installation</title>
		<link rel="alternate" type="text/html" href="https://docs.echsacongenitaldb.org/index.php?title=PostgreSQL_network_installation&amp;diff=2326"/>
		<updated>2017-03-19T22:31:58Z</updated>

		<summary type="html">&lt;p&gt;HubertCzobodzinski: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#'''Server installation and configuration'''&lt;br /&gt;
##Go to the the [http://www.postgresql.org PostgreSQL website], install and run the PostgreSQL server. Installation instructions can be found there. ECHSA Database Software should work flawlessly with any 8.x or 9.x PostgreSQL version, but we reccomend to use latest available release.&lt;br /&gt;
##Download following SQL scripts (right-click and choose &amp;quot;Save target as&amp;quot;):&lt;br /&gt;
##*[http://www.eactscongenitaldb.org/viewcvs/*checkout*/ecdbc/trunk/pl/magnum2/ecdbc/database/sql/postgresql_struct.sql?root=ecbdc postgresql_struct.sql]&lt;br /&gt;
##*[http://www.eactscongenitaldb.org/viewcvs/*checkout*/ecdbc/trunk/pl/magnum2/ecdbc/database/sql/postgresql_dict.sql?root=ecbdc postgresql_dict.sql]&lt;br /&gt;
##Create a database (for example with name &amp;quot;eacts&amp;quot;) and connect to it. Run those two SQL scripts on this database.&lt;br /&gt;
##Configure your PostgreSQL server so it accepts connections from network. &amp;lt;br&amp;gt; The configuration file is named: &amp;lt;pre&amp;gt;postgresql.conf&amp;lt;/pre&amp;gt;You need to add following line: &amp;lt;pre&amp;gt;listen_addresses = '*'&amp;lt;/pre&amp;gt; Second file that needs to be modified is: &amp;lt;pre&amp;gt;pg_hba.conf&amp;lt;/pre&amp;gt;You need to add a line: &amp;lt;pre&amp;gt;host all all 192.168.3.0/24 md5&amp;lt;/pre&amp;gt; Change 192.168.3.0/24 into your own network block, in format of X.X.X.X/Y where X.X.X.X is address of your network and Y is the number of bits in your netmask. In this example, the network is 192.168.3.0 - 192.168.3.255.&lt;br /&gt;
##Ensure that your PostgreSQL server accepts connections from the network. Check your firewall settings. Stop and start the service if needed.&lt;br /&gt;
##Create a database user and give him privileges to read and write in all tables in the database.&lt;br /&gt;
#'''Client installation and configuration'''&lt;br /&gt;
##[[Download]] and run the latest version of the [[EACTS Database Software]]. When a dialog appears type in your hospital code (three capital letters) and choose the default database path.&lt;br /&gt;
##Go to the software preferences directory &amp;lt;pre&amp;gt;.EactsCongenitalDatabase&amp;lt;/pre&amp;gt; located in the user home directory (please note the '''dot''' character at the beginning of the directory name). Edit the '''ecdbc.properties''' file and set two variables: '''dbdriver''' and '''dburl'''. The user name and the '''password''' are to be set inside the '''dburl''' variable. &amp;lt;pre&amp;gt;dbdriver=org.postgresql.Driver&amp;lt;/pre&amp;gt; &amp;lt;pre&amp;gt;dburl=jdbc:postgresql://srv_addr/eacts?user=your_user&amp;amp;password=your_users_password&amp;lt;/pre&amp;gt; Change '''srv_addr''' into your server's address (like 192.168.0.12 or server.myhospital.org), and give your user's name and password.&lt;br /&gt;
&lt;br /&gt;
'''Notes'''&lt;br /&gt;
&lt;br /&gt;
*You can perform more client installations and configure them in the same was as the first client.&lt;br /&gt;
*As the server address give the IP adress (or a DNS name if appropiate) of the computer with running PostgreSQL server.&lt;br /&gt;
*Proper TCP port (PostgreSQL's default is 5432) must be opened if the server is protected by a firewall&lt;br /&gt;
*'''dburl''' must be in one (perhaps very long) line, together with &amp;quot;?user=...&amp;amp;password=...&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[category:technical support]]&lt;br /&gt;
[[Category:Instructions]]&lt;/div&gt;</summary>
		<author><name>HubertCzobodzinski</name></author>
		
	</entry>
</feed>