By continuing to use the site, you agree to the use of cookies. more information
The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.
Monat: Juni 2015
Nachfolgend befindet sich ein Script, das bei Ausführung die MySQL Datenbank überprüft und gegebenenfalls repariert: (farbig markierte Stellen bitte anpassen) #!/bin/bash #====================================Head======================================= #Autor: Tobias Zweifel #Beschreibung: automatisches ueberpruefen der MySQL Datenbank #Erstellt am: 28.05.2015 #Aenderungen: 28.05.2015 #====================================Head======================================= #————————————-Start————————————- DATEVAR=date +20\%y\%m\%d_\%H\%M\%S IGNORE=”hier zu ignorierende Datenbanken hinzufügen“ password=”deinrootpasswort“ DBS=”$(/usr/bin/mysql –user=root –password=deinrootpasswort -Bse ‘show databases’…
Nachfolgend werden die meistverwendeten Storagetypen beschrieben: Storage Typ Beschreibung/Merkmale MyISAM Tabellen MyISAM (My Indexed Sequential Access Method) ist eine Storage-Engine des Datenbankverwaltungssystems MySQL. Sie baut, um einige Erweiterungen ergänzt, auf dem älteren ISAM-System auf und war bis MySQL 5.1 Standard-Storage-Engine. Seit Version 5.5 wurde sie durch InnoDB als Standard-Storage-Engine abgelöst. HEAP und MEMORY Tabellen The…
Datenbanktyp Beschreibung Beispiel Einzeltabellen Datenbanken Die einfachste Datenbankart welche nur eine einzige Tabelle zur Abspeicherung aller Informationen verwendet. Excel Relationale Datenbanken Eine relationale Datenbank dient zur elektronischen Datenverwaltung in Computersystemen und beruht auf einem tabellenbasierten relationalen Datenbankmodell. SQL Objektorientierte Datenbanken Eine Objektdatenbank oder Objektorientierte Datenbank ist eine Datenbank, die auf dem Objektdatenbankmodell basiert. Im Unterschied…
By continuing to use the site, you agree to the use of cookies. more information
The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.