In this video, James Gosling, best known as the father of the Java programming language, provides some wisdom about Java and software development for students. In short, Java is easy to learn especially to people who have not done software programming before.
Comments Off | Filed in Oracle | Tags: java, video
Frustrated with soft deletes in SQL, Reeditor writes:
In the past, I’ve added a deleted_at (datetime) column and appended “WHERE deleted_at IS NULL” to every query involving that table. But it’s a total pain in the ass, and it’s complicated as shit: there’s always a few queries that are missed, a few developers that forgot or didn’t know they had to check that the record wasn’t deleted, denormalized counts are hard to keep in sync, etc. etc. It always turns into an embarrassing fiasco rather than something you add once and then don’t have to worry about.
Good discussion followed which included a couple of interesting links: What is the best way to implement soft deletion? and The trouble with soft delete.
So, if there is a business need to retain deleted records, do you go soft or hard?
Comments Off | Filed in Oracle | Tags: sql
“Hello World” is the first program one usually writes when learning a new programming language. The first Hello World program appeared in chapter 1.1 of the first edition of The C Programming Language, in 1978. Since then, Hello World has been implemented in just about every programming language on the planet.
The Hello World collection includes 428 Hello World programs in many more-or-less well known programming languages, plus 63 human languages.
Can you name the programming language based on its Hello World syntax? Take this quiz and let us know. (via)
2 Comments | Filed in Interesting Stuff | Tags: programmingA good overview of the most common types of database backups and how they compare to each other.
Comments Off | Filed in Oracle | Tags: backup, video