Database IT Blogs

Articles, tips and tricks for databases
Tags >> oracle database
MySQL Channel

Some key differences for DBAs between Oracle and MySQL database servers include:Different tools used to manage and monitor database servers.Oracle architecture is process based, MySQL architecture is thread based.Different tools used for backup and recovery.


SQLDeveloper Mentat Technologies is happy to announce the new version of DreamCoder for Oracle version 4.1, a powerful oracle database tool for administration and development.

Its flexibility and compatibility, in addition to a low price-point, make it a must-have tool for application developers who are increasingly working with oracle databases.

SQLDeveloper  Mentat Technologies announces the new minor update of DreamCoder for Oracle version 4.0.7.0.

Tagged in: oracle database
Peter Tesone

This is a very useful script when you need drop all the objects in a schema.

Execution process in the DreamCoder for Oracle.

1. Open the script in the SQL Editor.
2. Open the SQL output
3. Execute the script with F9.

 


Peter Boekelaar
Why this script?
Most of the FK's defined in an Oracle DB, are not created using the on delete cascade option, since that is (most of the times) not wanted at all.
But sometimes records must be deleted while it is not allowed to do so, because there are child records (or a complete tree of child records) present.
For cases like that I use a script that searches the DB for child recs, using the SYS views.

Peter Tesone  One of the most frequent questions we are asked is; how to manipulate the XML Types for DreamCoder for Oracle. Before it was a complicated task to manipulate this type of field since DreamCoder only recognized XML types as a simple text field and only  enabled the edition option in the form view.

Tagged in: XML , oracle database
Peter Tesone DreamCoder for Oracle  includes many changes, such as the way objects are described with the SQL and PL/SQL editor.  

The new DreamCoder for Oracle includes a new way to describe objects or alias when using the SQL and PL/SQL editor, just combine CTRL + CLICK on the object. The advantage of this new option is that the object opens in edition mode, therefore the programming process is quicker. If you are opening a method package, when opened the cursor will be pointing to the method.

Patrick Barel I am comparing tables in two different schemas. Since I am doing the same thing over and over again I created a small script which might be useful to you too.

Patrick Barel All data types in the Oracle database implement the null value. Null is a very special value which means ‘Unknown’. That means that the value is really unknown. Null is not equal to null, because both are not known. Therefore you cannot compare them to each other.

Patrick Barel I came across the need to define the first day of next month based on the current systemdate. I can do this using the following code:

add_months(to_date(’01'||to_char(sysdate,’MMYYYY’),’DDMMYYYY’),1)

But the I remembered that there was a post on the oracledeveloper.nl forum with similar date functions.

Advertisement

Featured Links:
DreamCoder for MySQL Enterprise at USD 69.95
Powerful and easy MySQL IDE tool for Developers & DBAs.
DreamCoder for Oracle DBA at USD 99.95
The top IDE for Developers & DBAs for Oracle Databases.
DreamCoder for PostgreSQL Enterprise at USD 69.95
Powerful IDE for PostgreSQL Databases.

Tags