Hardware & Storage, Oracle Yesterday’s AWR Straight to the Goal 14.04.2015 by Oracle Team By Franck Pachot . Yesterday I was a speaker at Collaborate15 and did my presentation about reading an AWR report. That was great. Many people (and not enough seats). Here are some aswers about questions that came later. I(…)
Database management, Oracle Cloning a PDB from a standby database 13.04.2015 by Oracle Team By Franck Pachot . Great events like IOUG Collaborate is a good way to meet experts we know through blogs, twitter,etc. Yesterday evening, with nice music in the background, I was talking with Leighton Nelson about cloning PDB(…)
Operating systems, Oracle RAC Attack! was another great success at C15LV 12.04.2015 by Oracle Team By Franck Pachot . The RAC Attack – install a RAC in your own laptop – is a great success at Las Vegas. The idea is to help people follow the RAC Attack cookbook which is available at:(…)
Database management, Oracle Dbvisit replicate REDO_READ_METHOD 09.04.2015 by Oracle Team By Franck Pachot . A frequent question about replication is the overhead in the source, because in a lot of cases the source is production. Dbvisit replicate comes with the possibility to do the minimum on the source: only(…)
Database management, Oracle DataGuard wait events have changed in 12c 08.04.2015 by Oracle Team By Franck Pachot . There are several new features in 12c about Data Guard: cascaded standby, far sync instance. But there are also some architecture changes: new processes and new wait events. Here is an example of an(…)
Database management, Oracle Oracle tuning silver bullet: add an order by to make your query faster 01.04.2015 by Oracle Team By Franck Pachot . You have read all Cary Millsap work about Oracle database performance tuning. You know that there are no silver bullets. Reducing the response time requires a methodical approach in order to analyze the response time(…)
Database management, Oracle Index on SUBSTR(string,1,n) – do you still need old index? 27.03.2015 by Oracle Team By Franck Pachot . In a previous post I’ve shown that from 12.1.0.2 when you have an index on trunc(date) you don’t need additional index. If you need the column with full precision, then you can add it(…)
Database management, Oracle Standard Edition on Oracle Database Appliance 25.03.2015 by Oracle Team By Franck Pachot . The Oracle Database Appliance is really interresting for small enterprises. It’s very good hardware for very good price. It’s capacity on demand licensing for Enteprise Edition. But small companies usually go to Standard Edition for(…)
Database management, Oracle 12c: shutdown abort a PDB? 16.03.2015 by Oracle Team By Franck Pachot . Can we shutdown abort a PDB? Let’s try: SQL> show con_id CON_ID ------------------------------ 3SQL> shutdown abort; Pluggable Database closed. But is it really a shutdown abort? The shutdown abort we know in non-CDB – or(…)
Database management, Oracle Index on trunc(date) – do you still need old index? 15.03.2015 by Oracle Team By Franck Pachot . Sometimes we have to index on ( trunc(date) ) because a SQL statement uses predicate on it instead of giving a range from midnight to midnight. When you do that you probably keep the index(…)