Clean database schema with inheritance
It is very common way of usage that when ever you need some new attribute for your model objects/table you add a new column to the related database table. After several requirements you will notice: Read more
Posts Tagged ‘ Database ’
It is very common way of usage that when ever you need some new attribute for your model objects/table you add a new column to the related database table. After several requirements you will notice: Read more
I found it very interesting that these two methods are not working same
SELECT add_months(TO_DATE(’28-FEB-2007′), 1) FROM dual = 31-MAR-2007
while
java.util.Calendar c=..//28-FEB-2007
c.add(Calendar.MONTH,1); // gives 28-MAR-2007
which one is true ?
for the situation I am dealing java calculation is correct !
java vs Oracle and again winner is java !!!!
Image via Wikipedia
I change my development database to postgres SQL for a several reasons :
Since I am very new to postgres I am playing with it. looking for new features and trying to solve compatibility problems
One good referance for people like me :
PS:
since I am using hibernate and so on no development required for this migration…