Blog with ORACLE related posts (mainly PL/SQL programming) and some personal thoughts
Blog com artigos sobre ORACLE (principalmente sobre programação PL/SQL) e alguns pensamentos pessoais.
Showing posts with label PL/SQL. Show all posts
Showing posts with label PL/SQL. Show all posts
2012-07-20
Um patch para o SQL Navigator 6.7
Para quem usa o SQL Navigator 6.7 e tem notado que "às vezes" prende, tal parece ter origem na "feature History" que guarda os SQL (tec..) efetuados e permite uma pesquisa nos mesmos. É possivel efetuar uma "limpeza dos comandos efetuados" antes de uma data data ou toidos de modo a evitar que o ficheiro fique muito grande (parece que apartir de 600K é que o problema é encontrado)
"Before you deleting your history file, you can have a backup if needed, the history file is in:
xp: C:\Documents and Settings\UserName\Application Data\Quest Software\SQL Navigator 6.6.0\Unified Editor\history
win7: C:\Users\UserName\AppData\Roaming\Quest Software\SQL Navigator 6.6.0\Unified Editor\history"
Hoje, no entanto, foi libertado um patch:
"We would like to provide you the new binary which fixes the hang issue with the history file as reported.
The new v6.7 binary build 2375 is now available for download:
http://sqlnavigator.inside.quest.com/shares/sqlnavigator/sbin/GA/6_7_Patch/2375/sqlnavigator.zip (8MB)
Please rename your current v6.7 .exe file, then copy the new sqlnavigator.exe into v6.7 installation folder.
Much appreciated if you could please let us know you are all happy with the changes."
Esperemos que a correção funcione a 100%.
Boa codificação!
Categorias / Labels:
Oracle Blues,
PL/SQL,
SQL Navigator
2012-05-09
2012-03-28
SQL Navigator 6.7 Beta available
Quest Siftware released to the community a beta version for SQL Navigator 6.7.
If you have a previous beta version installed, you can upgrade it with this build.
You can (and should) install this side by side with your current 6.6 (or previous) version.
Read all about it
Categorias / Labels:
Oracle Blues,
PL/SQL,
SQL Navigator
2012-02-06
Oracle Magazine January-February 2012 online versions
Categorias / Labels:
Leituras,
Oracle Blues,
Oracle DB,
PL/SQL
TIOBE Programming Community Index for February 2012
PL/SQL is on the 17th place TIOBE Index (February 2012).
It's was 32nd in February last year (February 2011)!
In 2008 and 2007 in February it was in 13th position in the index.
It's was 32nd in February last year (February 2011)!
In 2008 and 2007 in February it was in 13th position in the index.
Categorias / Labels:
Oracle Blues,
PL/SQL
2011-12-15
SQL Navigator 6.6 released
The most usefull new feature is in the history search (where you can search the runned scripts/commands for an expression) to filter the commands by type.
Check the Release Notes and the Known Issues List.
Categorias / Labels:
Bug,
Oracle Blues,
PL/SQL,
SQL Navigator
TIOBE Programming Community Index for December 2011

It's was 23st in November last year.
It was in 13th in 2008 and 2007 in the same month!
Categorias / Labels:
Oracle Blues,
PL/SQL
2011-12-07
Oracle Magazine November-December 2011 online versions
Categorias / Labels:
Leituras,
Oracle Blues,
Oracle DB,
PL/SQL
2011-11-19
2011-09-05
Oracle Database 11g Release 2 Express Edition Available
Oracle Database 11g Release 2 Express Edition (Oracle Database XE) final version is available.
It's "an entry-level, small-footprint database based on the Oracle Database 11g Release 2 code base.
It's free to develop, deploy, and distribute; fast to download; and simple to administer."
Download
Documentation
Do not forget to check the Open Bugs and Known Issues section.
Categorias / Labels:
Apex,
Oracle Blues,
Oracle DB,
PL/SQL
2011-08-30
2011-07-19
QuestTV
Quest Software site has recently make available a new section in its website called QuestTV with several videos about its services and products. Some of these videos are also available in Quest Software Channel in YouTube.
Most interesting videos for PL/SQL developers:
Using Toad for Oracle with Oracle Instant Client (this series is helpful even for people that do not use TOAD but want to install and configure Oracle Instant Client.
Most interesting videos for PL/SQL developers:
Using Toad for Oracle with Oracle Instant Client (this series is helpful even for people that do not use TOAD but want to install and configure Oracle Instant Client.
- Using Oracle Instant Client
- Configuring a TSNAMES file for Oracle Instant Client
- Removing Oracle Instant Client
- Using SQL Tracker available with TOAD or SQL Navigator
- Common Mistakes in Oracle PL/ SQL Programming
- PL/SQL Best Practices
- Practical Best PL/SQL 1- Overall perspectives on writing software
- Practical Best PL/SQL 2- Establish a foundation of shared code for team development
- Practical Best PL/SQL 2A- Applying coding standards and naming
- Practical Best PL/SQL 2B - SPODify your code - aim for a Single Point of Definition
- Practical Best PL/SQL 2C- Manage exceptions with shared utility
- Practical Best PL/SQL 2D- Break your addiction to SQL - Part 1
- The Path to Unit Testing Happiness
- Code Tester Version 2 new features
Categorias / Labels:
Oracle Blues,
PL/SQL,
SQL Navigator
2011-07-17
2011-07-04
Missing features in PL/SQL
I love PL/SQL but there are some missing features that very annoying:
- Result cache is very nice but restrictions like authid CURRENT_USER (CLOB, BLOB) should only make the cache algorithm not to be applied but not issuing an compilation error (giving only a compilation pls warning) so the code could be prepared for future implementation of the result cache without those restrictions.
The use of VPDs should be 100% transparent with Result cache, i.e. using VPD should not imply a change in the code to work correctly!
- Conditional compilation is nice but cannot check if the oracle version is 11.2.0.2 (or above) only can check 11.2 and oracle implemented new features (like UTL_SMTP using TLS/SSL connection) in that new “patched” version. (here the problem is the missing global constant for anything “below” the minor number or maybe the numbering of that version)
- Automatic detection of "pure" user-defined PL/SQL functions for parallelism (in parallel queries) for functions in packages (like Oracle does for stand-alone (not in package) functions).
BTW: Editions look great but we encounter a bug that “corrupted” the catalog and so the DBAs are not confident to continue to use it for now.
- Result cache is very nice but restrictions like authid CURRENT_USER (CLOB, BLOB) should only make the cache algorithm not to be applied but not issuing an compilation error (giving only a compilation pls warning) so the code could be prepared for future implementation of the result cache without those restrictions.
The use of VPDs should be 100% transparent with Result cache, i.e. using VPD should not imply a change in the code to work correctly!
- Conditional compilation is nice but cannot check if the oracle version is 11.2.0.2 (or above) only can check 11.2 and oracle implemented new features (like UTL_SMTP using TLS/SSL connection) in that new “patched” version. (here the problem is the missing global constant for anything “below” the minor number or maybe the numbering of that version)
- Automatic detection of "pure" user-defined PL/SQL functions for parallelism (in parallel queries) for functions in packages (like Oracle does for stand-alone (not in package) functions).
BTW: Editions look great but we encounter a bug that “corrupted” the catalog and so the DBAs are not confident to continue to use it for now.
Categorias / Labels:
desabafos,
Oracle Blues,
PL/SQL
2011-06-24
Digital version of Oracle Magazine July/August 2011 is available
Categorias / Labels:
Leituras,
Oracle Blues,
Oracle DB,
PL/SQL
2011-06-17
TIOBE Programming Community Index for June 2011

It's was in 13th place last year (June 2010) and 21st last month (May 2011).
It was 14th in June 2008 and 11th in June 2007.
Categorias / Labels:
Oracle Blues,
PL/SQL
2011-06-06
APEX Listener Release 1.1.2 released
![]() |
| APEX Listener Standard Configuration |
It fixes some bugs like:
- Fixed flexible parameter support to handle POSTs without requiring a query string to be present in the submitted URI.
- Fixed a problem with the standalone Listener where the location of the images folder could not be overwritten.
- Fixed a problem with character encoding when consuming HTML forms submitted using the multipart/form-data content-type.
- Fixed a problem with an IllegalStateException being thrown when the path /apex (instead of /apex/) was accessed on the standalone Listener.
![]() |
| APEX Listener Advanced Configuration |
Categorias / Labels:
Apex,
Oracle Blues,
PL/SQL,
WWW
2011-05-14
2011-05-04
SQL Navigator 6.5 released
Quest released a new version of SQL Navigator. Mainly it corrects bugs and some new features (like the filter in the history and the join of the 6.3 DB filter with the 6.4 version).
Check the Release Notes and the Known Issues List.
Check the Release Notes and the Known Issues List.
Categorias / Labels:
Bug,
Oracle Blues,
PL/SQL,
SQL Navigator
Subscribe to:
Posts (Atom)

