martedì 26 marzo 2013

Beauty: Champu Terminados

Hoy quiero hablar de los champus que he estado usando durante los últimos meses.
  • L'Oreal Ever Fuerza
  • Quise probar esté champú sin fosfatos, para intentar usar algo menos químico en mi pelo. A pesar de que se diga que está pensado para cabello fino y debilitado, no he notado ningún beneficio para mi pelo. Además, aporta muy poca hidratación y tampoco es económico. No repetiría.
     

              •  Elvive Arginina Resist
              • Es un champú de supermercado. Se puede conseguir en cualquier Mercadona y a un precio muy asequible. El Arginina es uno de los aminoácidos esenciales y su efecto debería ser lo de dejar el pelo más fuerte y resistente. Supongo que es mi tipo de pelo, demasiado fino (por eso me decidí a darle un chance al Arginina) que no soporta bien los champus Elvive en general. Es un buen champu, lava bien, pero es bastante agresivo. Cuidado las que teneís un pelo delicado.
              • Champus Aussie
                Son mis champus favoritos desde hace un par de años. Los descubrí en Inglaterra cuando vivía en Londres y desde entonces no los he abandonados. Se pueden encontrar en el Corte Inglés o en perfumeria.
                Tanto los champus como los acondicionadores garantizan maxima idratación. El pelo es brillante y se desenreda muy facil. Muy recomendables todos. Único defecto: el precio, alrededor de 7 euros. El secreto: buscar las promociones! 



              P.D. Las opiniones expresadas son personales y los productos han sido comprado por mi misma. 

              mercoledì 20 marzo 2013

              Tip: DATE and DATETIME in OBIEE

              I must admit that I am new to the OBIEE world and I really wish I can help people that are starting with this Oracle product to save some precious time when dealing with Calendar dimensions.
              I have created a Calendar dimension in my database with a field "DIA" to be DATE. This dimension is meant to replace one that was already in place, same content, but more fields. I have imported the table in the physical layer, mapped it to the logical layer, but when I run the dashboard I kept on seeing date fields with DD/MM/YYYY hh:mm in the calendar prompts.
              I spent quite a lot of time (call me dumb!) to find out that the answer was as simple as replacing the DATETIME field with DATE.


              venerdì 15 marzo 2013

              Tip: Reverse Engineering in Oracle Data Modeler

              I am currently building a Data Warehouse using OWB as integration tool. I have almost finished and now comes what I like the less about my job... documentation!
              During the development process, you usually create a number of staging tables. Oracle Data Modeler allows you to import tables from a schema. This way it is much easier writing down your documentation and you also have a visual presentation ready to use.
              Let's go through the reverse engineering process:
              1) Go to File -> Import -> Data Dictionary


              2) Add a new connection if you haven't set up any yet

              3) Select your Schema/Database


              
              Personally I find the filter option pretty useful for retrieving quickly the Schema you are looking for.

              4) Select the objects you want to import


              5) Click on Finish

              If everything goes ok, you have your Model imported in Oracle Data Modeler and you can export images of your diagrams or generate your DDL code to attach to your documentation.  



              lunedì 4 marzo 2013

              Oracle Tip: Find locked objects in Oracle Database

              Tipically I end up locking objects by executing an Oracle Warehouse Builder (OWB) mapping and then stopping it because I realize I have forgotten a join condition. If you abruptly kill the session, the object may stay locked until the rollback is completed or endlessy if the session is killed before any action against the target table is taken.
              In order to find out which object has been locked (and beg your DBA to kill the associated session or free the locks), run the following query:

               SELECT c.owner, c.object_name, c.object_type, b.SID, b.serial#,
                               b.status, b.osuser, b.machine
               FROM v$locked_object a, v$session b, dba_objects c
               WHERE b.SID = a.session_id AND a.object_id = c.object_id;

              The output will look like this:


              In case you are the DBA (and you have DBA privileges), then get the SID and the SERIAL# and run the following:


               alter system kill session 'SID,SERIAL#';

              mercoledì 27 febbraio 2013

              Tip: Reset Oracle Sequence

              Yesterday I was working on an ODI interface, a pretty easy one, which was supposed to insert new rows  into a table using a <SEQUENCE>.NEXTVAL for populating the primary key.
              The primary key was set NUMBER(4). The last value inserted had 17 as primary key. I was expecting new items to start from 18, but I was constantly getting: 


              SQL Error: ORA-12899: value too large for column

              After spending  a considerable amount of time for finding out which column was making my ODI interface fail, I have executed the following: 

              SELECT MY_SEQ.NEXTVAL
              FROM DUAL; 

              which returned me: 124586!!!
              Something has obviously gone wrong with that sequence and I needed to restore it to 17. So basically I have executed the following: 

              ALTER SEQUENCE MY_SEQ INCREMENT BY -(124586-17)

              and then execute: 

              SELECT MY_SEQ.NEXTVAL
              FROM DUAL; 

              to restore MY_SEQ.CURRVAL to 17
              Then you reset the correct increment by executing
                
               ALTER SEQUENCE MY_SEQ INCREMENT BY 1


              venerdì 22 febbraio 2013

              Beauty - Productos terminados

              Este blog se llama Glamourous Oracle, pero de glamouroso todavía no tiene nada. Vamos a empezar con el primer post de productos terminados.
              La verdad es que empezamos mal. De los producto terminados, no volvería a comprar ni uno.
              El primero ha sido un regalo de una amiga farmacista. Se trata del Lierac Soin Eclat Express Masque Lifting. ¿Que es? Por la descripción parece ser un primer con un efecto lifting. La textura es como de gel, pero de efecto lifting no he notado nada. Tarda bastante en secarse y, si te descuidas y te hechas demasiado, resulta pegajoso y tarda muchisimo más en secarse. Me ha costado horrores terminarlo, pero tengo que decir que alisa bastante la piel y rellena las pequeñas lineas de expresion.
              ¿Porque no volvería a comprarlo? Primero por el precio. Alrededor de 20€ me parece demasiado para un producto que no me ha dejado encantada. Segundo porque no suelo llevar primer y ese en concreto no me ha hecho cambiar de opinion.
              El segundo producto terminado es una mascara de pestaña. A mi me encantan las mascaras con efecto "drama queen" y eso buscaba en Lancome Hypnose Drama. La mascara no está mal, tiene un sepillo curvado peculiar, pero el efecto no llega a ser el mismo del famoso Essence I Love Extreme y sinceramente no volvería a gastarme casi 30€ cuando puedo tener el mismo efecto, o incluso mejor, con 3 euritos.




              El verdadero fracaso en tema de mascaras de pestañas ha sido el Volume Mascara de Lavera. Los 13€ peor gastados de los ultimos tiempos. No tiene ningun efecto volumizante y encima no se seca NUNCA. La aplicación es un autentico desafío. Terminas manchandote porque el producto se queda liquido. Un desastre.

              Terminamos con un eye-liner. Admito que los único eye-liners que puedo usar son los que tienen un pincel muy finito y flexible. Compré en Sephora el Eye Liner  Long Tenue. Tiene un acabado negro muy brilliante y se aplica bien, pero todavia no es el eye liner perfecto. Ese tampoco volveré a comprarlo. Ya os hablaré más adelante del eye liner que estoy usando en estos días, pero me parece que ninguno llegará a gustarme tanto come el eye liner de Number 7 que me compré en Boots cuando vivía en Inglaterra.


              My first post on the Avanttic Blog

              Recently I have started working for a new Oracle partner and yesterday I was invited to write a post for the company's blog.
              The post is a comparison between OWB and ODI. Unfortunately, the blog is in Spanish. I hope to have some time for translating it in the future.

              http://blog.avanttic.com/2013/02/15/owb-vs-odi/#more-8210