Differences between revisions 15 and 16
Revision 15 as of 2020-09-02 12:16:47
Size: 1430
Editor: davidsch
Comment:
Revision 16 as of 2020-09-02 12:22:13
Size: 1566
Editor: davidsch
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
 * If you want to do practical exercises on database design and programming you can obtain an account on our MariaDB (a MySQL open source fork) database server. Get in touch with ISG.EE (e-mail to support@ee.ethz.ch) and let us know what your plans are. The URI of our database server is {{{remi.ee.ethz.ch}}} where MariaDB runs on the default TCP port 3306. Besides the basic MariaDB SQL service, we provide a [[https://mysql.ee.ethz.ch/|phpMyAdmin]] WebUI for database queries and management. [[https://mariadb.org/|MariaDB]] is a multi-user, multi-threaded and (mostly) MySQL-compatible database server. It consists of the server daemon {{{mysqld}}} and of a bunch of different client programs and libraries. ANSI-SQL, a declarative language, is the standard for most relational databases and it is the most popular database language in the world.  * If you want to do practical exercises on database design and programming you can obtain an account on our MariaDB (a MySQL open source fork) database server. Get in touch with ISG.EE (e-mail to support@ee.ethz.ch) and let us know what your plans are. The URI of our database server is {{{remi.ee.ethz.ch}}} where MariaDB runs on the default TCP port 3306. Besides the basic MariaDB SQL service, we provide a [[https://mysql.ee.ethz.ch/|phpMyAdmin]] WebUI for database queries and management. [[https://mariadb.org/|MariaDB]] is a multi-user, multi-threaded and (mostly) MySQL-compatible database server. It consists of the server daemon {{{mysqld}}} and of a bunch of different client programs and libraries. ANSI-SQL, a declarative language, is the standard for most relational databases and it is the most popular database language in the world. It consists of DML, DDL and DCL elements (data manipulation, data definition and data control language) and also supports transactions.

Database programming

  • If you want to do practical exercises on database design and programming you can obtain an account on our MariaDB (a MySQL open source fork) database server. Get in touch with ISG.EE (e-mail to support@ee.ethz.ch) and let us know what your plans are. The URI of our database server is remi.ee.ethz.ch where MariaDB runs on the default TCP port 3306. Besides the basic MariaDB SQL service, we provide a phpMyAdmin WebUI for database queries and management. MariaDB is a multi-user, multi-threaded and (mostly) MySQL-compatible database server. It consists of the server daemon mysqld and of a bunch of different client programs and libraries. ANSI-SQL, a declarative language, is the standard for most relational databases and it is the most popular database language in the world. It consists of DML, DDL and DCL elements (data manipulation, data definition and data control language) and also supports transactions.

  • As an alternative to relational databases, ISG.EE also offers MongoDB, a NoSQL (nonrelational) JSON-/ object-based database especially suitable with software written in JavaScript. The service is reachable on mongodb01.ee.ethz.ch, on tcp/27017.

  • Note: All database services are accessible from the internal ETHZ networks only. The only exception is the phpMyAdmin web interface, which can be used globally after user authentication.


CategoryDB

Programming/Libraries/DatabaseProgramming (last edited 2023-10-16 11:35:10 by alders)