Archive for the 'Databases' Category
Tuesday, August 4th, 2009 by Peter Lorenzen
Logica Denmark is proud to announce an free full day APEX seminar. Come by and hear Anthony Rayner from the APEX Development team introduce the product and demo some of the features coming in release 4.0. Erik Birklund Andersen and Peter Lorenzen will talk about Logica’s experience with APEX and the business opportunities they see. [...]
Popularity: 739 points
Posted in Apex, Databases, Oracle, PL/SQL | 1 Comment »
Friday, October 10th, 2008 by Roel
In the afternoon of November 3 Oracle guru Tom Kyte will talk about “11 Things about 11g” at the Logica office in Amstelveen (near Amsterdam). I have attended this presentation at ODTUG this year and I assure you it’s worthwhile! After his presentation Tom will also do an AskTom Live session. So a great opportunity [...]
Popularity: 786 points
Posted in Announcements, Databases, Events, Guru4Pro, Oracle | No Comments »
Friday, September 19th, 2008 by Jasper
APEX is famous for it’s useful applications, so when the idea poped into my head that I would like to track my personal contracts, APEX was first in line to develop such an application.
The purpose of this app is to be able to track longrunning contracts with their renewalperiods. One month before you should end [...]
Popularity: 742 points
Posted in Apex, Databases, General, Oracle, PL/SQL | No Comments »
Wednesday, October 3rd, 2007 by Jasper
An eyeopener for me when constructing sql queries in a complex environment was the use of analytic functions. As appose to aggregated functions, you can use more analytic functions on one table instead of constructing multiple inline views to accomplish “the same”.
For those of you who like to see examples:
select job_id
, sum(salary)
from employees
group by job_id;
has [...]
Popularity: 575 points
Posted in Databases, PL/SQL | 2 Comments »
Tuesday, October 2nd, 2007 by Yuri van Buren
This was my second time at the Miracle Conference at Lalandia in Denmark.
Again it was “power-pact”.
Mogens Norgaard explained that a lot of conferences have about 80% information and only 20% networking possibilities. This conference is different. Mogens managed to increase the 20% networking up to 80% while still remaining 80% of usefull information. The way [...]
Popularity: 698 points
Posted in Databases, Oracle Infrastructure | No Comments »
Tuesday, September 25th, 2007 by Yuri van Buren
In Oracle 11g you now can modify gather_database_stats default values with set_global_prefs, set_database_prefs, set_schema_prefs, set_table_prefs in the dbms_stats package.
An even greater new feature is that in Oracle Database 11g, you can separate statistic gathering from statistic publishing.
This allows you to control when new statistics are published. Everybody must have run in to this once, [...]
Popularity: 798 points
Posted in Databases, Oracle Infrastructure | No Comments »
Friday, August 31st, 2007 by Yuri van Buren
In Oracle 11g you can enable the built-in Password Complexity Checker function.
Background info can be found in the Database Security Guide.
The Oracle Database provides a sample password verification function in the PL/SQL script UTLPWDMG.SQL
(located in ORACLE_BASE/ORACLE_HOME/RDBMS/ADMIN) that, when enabled, checks whether users are correctly creating or modifying their passwords. The UTLPWDMG.SQL script provides two password [...]
Popularity: 925 points
Posted in Databases, Oracle Infrastructure | 2 Comments »
Friday, August 24th, 2007 by Yuri van Buren
DBA’s can finally use the Automatic Interval Partitioning option.
Test steps following the Oracle By Example (OBE) scripts available at
http://otnbeta.us.oracle.com/db11gr1/trng/obes/index.htm:
– create interval partitioned table
create table newsales
( prod_id number(6) not null
, cust_id number not null
, time_id date not null
, channel_id char(1) not null
, promo_id number(6) not null
, quantity_sold number(3) not null
, amount_sold number(10,2) not null
)
partition by range [...]
Popularity: 673 points
Posted in Databases, Oracle Infrastructure | No Comments »
Monday, August 20th, 2007 by Yuri van Buren
The new 11g SQL plan management feature enables the optimizer to maintain a history of
execution plans for a SQL statement. Using the execution plan history the optimizer is
able to detect a new plan representing a plan change for a SQL statement. When the
optimizer detects a new plan, it stores the new plan and marks it [...]
Popularity: 566 points
Posted in Databases, Oracle Infrastructure | No Comments »
Friday, July 27th, 2007 by Yuri van Buren
The 11g Oracle DBA can now apply an invisible performance patch (an Invisible Index)
on a non-performing query on a production system, without any impact on other queries.
Invisible indexes are not considered by the optimizer. These indexes are only used with a hint.
Here is a demo.
SQL> conn scott/tiger
Connected.
SQL> select * from cat;
TABLE_NAME [...]
Popularity: 490 points
Posted in Databases | 4 Comments »