You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
1.3 KiB
17 lines
1.3 KiB
|
|
|
|
|
|
ALTER TABLE `dpm_reporting`.`zahlung` DROP INDEX if exists `idxnrfaktura`, ADD INDEX `idxnrfaktura` (`Nrfaktura`) USING BTREE;
|
|
ALTER TABLE `dpm_reporting`.`zahlung` DROP INDEX if exists `idxvaluta`, ADD INDEX `idxvaluta` (nrfaktura,valuta,status) USING BTREE;
|
|
ALTER TABLE `dpm_reporting`.`zahlung` DROP INDEX if exists `stat`, ADD INDEX `stat` (status) USING BTREE;
|
|
ALTER TABLE `dpm_reporting`.`privat` DROP INDEX if exists `pat`, ADD INDEX `pat` (nrprivat) USING BTREE;
|
|
ALTER TABLE `dpm_reporting`.`faktura` DROP INDEX if exists `nrbehandlu`, ADD INDEX `nrbehandlu` (nrbehandlung) USING BTREE;
|
|
ALTER TABLE `dpm_reporting`.`faktura` DROP INDEX if exists `nrfaktura`, ADD INDEX `nrfaktura` (nrfaktura) USING BTREE;
|
|
ALTER TABLE `dpm_reporting`.`leistung` DROP INDEX if exists `cc`, ADD INDEX `cc` (nrbehandler) USING BTREE;
|
|
ALTER TABLE `dpm_reporting`.`leistung` DROP INDEX if exists `ccc`,ADD INDEX `ccc` (`Nrbehandlung`, `SSO-Nummer`);
|
|
ALTER TABLE `dpm_reporting`.`behandlu` DROP INDEX if exists `nrbe`,ADD INDEX `nrbe` (`nrbehandler`);
|
|
ALTER TABLE `dpm_reporting`.`behandlu` DROP INDEX if exists `nrbe1`,ADD INDEX `nrbe1` (`nrbehandlung`);
|
|
ALTER TABLE `dpm_reporting`.`behandlu` DROP INDEX if exists `nrpat`,ADD INDEX `nrpat` (`nrpatient`);
|
|
ALTER TABLE `dpm_reporting`.`behandlu` DROP INDEX if exists `stat`,ADD INDEX `stat` (`status`);
|
|
|
|
|