Database Administration & Monitoring Get trace file from server to client 20.08.2017 by Oracle Team By Franck Pachot . The old way to get a user dump trace file, for sql_trace (10046), Optimizer compilation trace (10053), lock trace (10704), Optimizer execution trace (10507),... is to go to the server trace directory. But if you don't(…)
Database Administration & Monitoring Replicating specific tables in PostgreSQL 10 Beta with mimeo 15.08.2017 by Oracle Team By Mouhamadou Diaw In this blog I am going to test the extension mimeo with PostgreSQL 10 beta. Mimeo is a replication extension for copying specific tables in one of several specialized ways from any number of source databases to(…)
Database Administration & Monitoring OUD 11.1.2.3 – How to recover a lost entry in a replicated OUD environment 10.08.2017 by Oracle Team By William Sescu . By accident, it could happen that someone dropped an OUD entry in your replicated environment and of course, the entry is deleted on all replicas as well. And besides that, you got no logical ldif(…)
Database Administration & Monitoring, SQL Server SQL Server on Linux: Introduction to DBFS experimental tool 09.08.2017 by Microsoft Team A couple of months ago, Microsoft announced two additional command line tools for SQL Server that are mssql-scripter and DBFS. The latter has drawn my attention because it exposes live data from SQL Server DMVs as(…)
Database Administration & Monitoring MariaDB – How to migrate quickly MySQL to MariaDB over different hosts with mydumper/myloader and ncat 09.08.2017 by DevOps A lot of possibilities exist to migrate MySQL to MariaDB. In this blog I would like to show a scenario where I migrate MySQL 5.7.19 with a lot of databases to MariaDB 10.2.7, which is on a different host. The(…)
Database Administration & Monitoring MariaDB – Speed up your logical MariaDB backups with mydumper 07.08.2017 by Oracle Team By William Sescu Per default, MariaDB is shipped with a utility called mysqldump for logical backups. For more information, please take a look at the following link. https://mariadb.com/kb/en/mariadb/mysqldump/ The mysqldump has advantages, e.g. it is easy to use and(…)
Database Administration & Monitoring Developer GUI tools for PostgreSQL 04.08.2017 by Daniel Westermann There was a recent thread on the PostgreSQL general mailing list asking for GUI tools for PostgreSQL. This is question we get asked often at customers so I though it might be good idea to summarize(…)
Database Administration & Monitoring A wonderful PostgreSQL feature: default privileges 04.08.2017 by Daniel Westermann Imagine this scenario (which is not so uncommon): You have a lot of objects in a user schema and you want to grant another user access to that tables. You can easily do this by granting select(…)
Database Administration & Monitoring Re-assigning all objects from on role to another in PostgreSQL 31.07.2017 by Daniel Westermann From time to time it might be required to move objects (tables, indexes, whatever) from one user to another user in a database system. You could do that by dumping all the objects with pg_dump and then(…)
Database Administration & Monitoring Setting up default parameters for roles in PostgreSQL 28.07.2017 by Daniel Westermann As you might know you can set various parameters on the session level in PostgreSQL by using the "set" command: postgres=# h set Command: SET Description: change a run-time parameter Syntax: SET [ SESSION | LOCAL ] configuration_parameter { TO(…)