Database Administration & Monitoring Nulls in composite keys 12.07.2016 by Oracle Team By Franck Pachot . Comparison of NULL can be misleading and it's even worse for unique constraint validation. Having partial nulls in a composite key can be tricky because the SQL ANSI specification is not very easy to understand, and(…)
Technology Survey SQL Server 2016: new T-SQL commands COMPRESS and DECOMPRESS 14.12.2015 by Stéphane Haby In live from the JSS2015 (Journée SQL Server 2015) in Paris, we saw that the CTP3.1 has been available in the night of these 2 days. One new feature available for this release in the T-SQL(…)
Database Administration & Monitoring Parallel sequential scans are coming to PostgreSQL 11.12.2015 by Daniel Westermann It didn’t made it into the upcoming PostgreSQL 9.5 release but it will probably be coming in 9.6: Parallel sequential scans. If you take a look at the development documentation some new parameters showed up: max_parallel_degree: The(…)
Database Administration & Monitoring, Database management Monitoring tools for PostgreSQL – POWA 09.12.2015 by Daniel Westermann The last posts introduced the logging system, pg_stat_statements, pg_activity and pgcluu. This post will look at POWA: PostgreSQL Workload Analyzer. For getting the most out of POWA the following extension(…)
Database Administration & Monitoring Monitoring tools for PostgreSQL – pgcluu 08.12.2015 by Daniel Westermann The last posts introduced the logging system, pg_stat_statements and pg_activity. All of these can be used to monitor sql statements the PostgreSQL server is executing. In this post I’ll look into pgcluu:(…)
Database Administration & Monitoring SQL Monitoring in PostgreSQL (3) – pg_activity 07.12.2015 by Daniel Westermann The last posts looked at how the logging system and the pg_stat_statements extension can be used to monitor sql statements in PostgreSQL. This post will introduce pg_activity which is very similar to(…)
Database Administration & Monitoring SQL Monitoring in PostgreSQL (2) – pg_stat_statements 06.12.2015 by Daniel Westermann The last post looked into how you can monitor queries using the logging system. This post will introduce pg_stat_statements. pg_stat_statements is a module that needs to be loaded and is not available in(…)
Database Administration & Monitoring SQL Monitoring in PostgreSQL (1) – the logging system 05.12.2015 by Daniel Westermann When developing an application as well as when the application is in production there is the need to identify long running queries. In Oracle one tool you might use for that is the SQL Monitor. In this post I’ll(…)
Development & Performance, Technology Survey SQL Server 2016: IF EXISTS is included in the DROP command 09.11.2015 by Stéphane Haby With SQL Server 2016, I’m nicely surprised by the addition of IF EXISTS directly in the T-SQL command DROP. Before this new option, all queries are written with IF EXISTS (SELECT * FROM sys….) DROP object. I have quickly tested(…)
Application integration & Middleware, Enterprise content management Alfresco: some useful database queries 18.05.2015 by Morgan Patou In my previous post, I talked about the Lifecycle of Alfresco Nodes. You may have noticed that I tried to insert in my explanations some elements that are specific to(…)