[ latest ] [ categories ]
Please use the contact form to include your blog here, suggest a feed, or give feedback.
If your blog is aggregated on OraFAQ, you may want to display this image on your blog:
Follow us on Twitter
Aggregator feed:

|
Aggregator[ latest ] [ categories ] Please use the contact form to include your blog here, suggest a feed, or give feedback. If your blog is aggregated on OraFAQ, you may want to display this image on your blog:
Follow us on Twitter Aggregator feed: ![]() |
Security BlogsPete Finnigan webinar "The right way to secure Oracle"I am going to give my successful presentation "The right way to secure Oracle" as a webinar tomorrow in conjunction with Sentrigo. The registration details are here . Come along and listen....[Read More] Posted by Pete On 21/07/09 At 10:00 AM
Categories: Security Blogs
Escalate privileges to SYSDBA with CREATE USERPaul emailed me the other day to send his new paper that shows how he was able to exploit a problem with Oracles namespace resolution. The idea is that because a user may have the CREATE USER privilege so he....[Read More] Posted by Pete On 16/07/09 At 11:08 AM
Categories: Security Blogs
Latest Oracle CPU is outThe latest in the reasonably long line of Oracle quarterly CPU's is now out. It was available yesterday evening UK time. I was out teaching my two day class for the last two days so missed it until this morning....[Read More] Posted by Pete On 15/07/09 At 11:28 AM
Categories: Security Blogs
Poor mans database vaultI got an email from Chet Justice the other day talking about some free software he is creating called "poor mans database vault". The description from his site: The goal is simple, have a simple, easy to use version of....[Read More] Posted by Pete On 08/07/09 At 10:14 AM
Categories: Security Blogs
A new database security auditing and scanner product, some BBED, ASM and AVWell, it has been a very long time since my last post. I keep wanting to write a post but my time is so extremely limited at the moment that its hard to keep on top of work, emails, familly....[Read More] Posted by Pete On 06/07/09 At 03:43 PM
Categories: Security Blogs
Materialized View ReplicationThis post is for my friend Gerry, who - as a newby to Oracle - has to support a replicated environment. Gerry is my successor at Kanton Luzern. Management didn’t look for a new DBA because they said it’s hopeless to find somebody. Instead they decided to give somebody inhouse the opportunity. Gerry is highly motivated to learn Oracle. He took the chance. Kanton Luzern uses LiveLink for web content management. LiveLink websites are stored in an Oracle database. Kanton Luzern hosts 144 websites. Whenever a content manager wishes to publish new or edited content to the live webserver he may trigger replication just by clicking on a button inside the content management tool. This is not a standard feature of LiveLink Content Manager. I wrote an extension for Content Manager, and a stored procedure to control replication. Materialized View Replication has been introduced with Oracle 8i. Back then it was called Snapshot Replication. For a quick overview of materialized views read Duncan Davies’ post. hpfuchs@hplnbk:~> sqlplus /nolog SQL*Plus: Release 11.1.0.6.0 - Production on Sun Jan 13 10:18:18 2008 Copyright (c) 1982, 2007, Oracle. All rights reserved. SQL> CREATE TABLE tab1 AS SELECT * FROM dict; Table created. Step 1 - Materialized View Log at Master Site SQL> CREATE MATERIALIZED VIEW LOG ON tab1; Ups! Materialized view log can’t be created on tables with no primary key. Let’s create primary key for tab1. SQL> desc tab1; SQL> ALTER TABLE tab1 ADD CONSTRAINT pk_tab1 PRIMARY KEY (table_name); Table altered. SQL> CREATE MATERIALIZED VIEW LOG ON tab1; Materialized view log created. Step 2 - Set up Materialized View Site SQL> connect system/***** User created. SQL> GRANT connect, resource, create materialized view, create database link TO otherdb; Grant succeeded. Step 3 - Database Link SQL> connect otherdb/***** SQL> CREATE DATABASE LINK orcl.kt.lunet.ch@orcl CONNECT TO hpfuchs IDENTIFIED BY ***** USING ‘orcl’; Database link created. Step 4 - Materialized View SQL> CREATE MATERIALIZED VIEW mv1 REFRESH FAST AS SELECT * FROM tab1@orcl.kt.lunet.ch@orcl; Materialized view created. Materialized views can be indexed. SQL> CREATE INDEX ix_mv1_objecttype ON mv1 (table_name); Index created. Step 5 - Refresh Group SQL> BEGIN PL/SQL procedure successfully completed. Step 6 - Refresh At Will SQL> exec dbms_refresh.refresh(name => ‘mv1_refgroup’); PL/SQL procedure successfully completed.
Categories: APPS Blogs, Security Blogs
SOX Compliance Journal: Identity Governance Framework
An article written by myself and Marco Casassa Mont of HP on Liberty Alliance's IGF initiative addressing privacy and SOX is featured in ...
Categories: APPS Blogs, Security Blogs
Consent, Control, and Minimal Disclosure
Last Saturday I posted some screen shots showing some interesting help text included in the Microsoft Cardspace client. ...
Categories: APPS Blogs, Security Blogs
Oracle Community Giving and Oracle History
James McGovern asks : Have you visited: We Are Microsoft ? They are sponsoring a three day event that matches developers with charities to develop ...
Categories: APPS Blogs, Security Blogs
Why Be An Identity Provider?
There has been a lot of talk on the role of the Identity Oracle and the value or motivation for Identity Providers in a user-centric system. ...
Categories: APPS Blogs, Security Blogs
|