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.
Database IT Blogs
Articles, tips and tricks for databases
Tags >> oracle database
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.
Tagged in: oracle database
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.
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.
Tagged in: XML , oracle database
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.
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.
If you don’t know where to start your with your program, recursion might be an option. I am working on some (perhaps useless) package code to convert an integer into a boolean representation. When I am converting the integer, I don’t know where to start my conversion. If the integer is relatively small and I start with a high bit (too big) then the overhead is relatively big.
Advertisement
Blogger
| Patrick Barel (20) |
|
| Peter Tesone (6) |
|
| SQLDeveloper (6) |
|
| Peter Boekelaar (2) |
|