Databases
Business Intelligence Forum 2010
Submitted by carlos on 19 May, 2010 - 12:27- Search an retrieval of information
- Business Performance Management
- Analysis
- Data warehouse
- Data mart
- Reporting
- Dashboard
- Business Intelligence
- ETL
- Data Normalisation
- Data Quality
- Data Integration
- Alterian
- Business Objects
- Powercenter
- SQL Server
- Business Intelligence
- SAS
- Data Mining
- Databases
- Alterian
- Analysis
- Business Intelligence
- Business Objects
- Business Performance Management
- CRM
- Dashboard
- Data Integration
- data mart
- Data Mining
- Data Normalization
- data quality
- Data Warehouse
- Databases
- ETL
- IT
- methodology Performance
- PowerCenter
- reporting
- SAS
- SQL Server
On Wednesday May 12 celebrated the 10th Forum of Business Intelligence, which has been Dataprix Media Partner and I had the opportunity to attend.
The event was quite interesting, and it was a good opportunity to learn first-hand opinions and impressions of deployments responsible for business intelligence projects.
I find it very appropriate that most of the interventions were responsible for the area of IT or business data warehouse, as the vision and how to communicate to the person who runs a project internally is often the most realistic and that can best explain the needs, problems and what actually can be considered at the level of business success or failure of a technology project.
- Read more
- 386 reads
-

Informatica 9, a complete data integration platform
Submitted by carlos on 7 May, 2010 - 12:22- Data profiling
- Datacleansing
- Master Data Management
- Deduplication
- ETL
- Data Normalisation
- Data Quality
- Data Integration
- Powercenter
- Informatica
- Data Integration
- Databases
- B2B Data Exchange
- B2B Data Transformation
- Data Archive
- Data Cleaning
- Data Explorer
- Data Integration
- Data Normalization
- Data Privacy
- data profiling
- data quality
- Data Subset
- Databases
- Deduplication
- ETL
- identity
- Identity Resolution
- Informatica
- Informatica 9
- MDM (Master Data Management)
- PowerCenter
- PowerExchange
In the market for a Data Integration is a leading manufacturer Informatica. This company is the first independent provider of data integration software. His best-known tool and the heart of his platform is Informatica PowerCenter, which has gone through many versions, and is a reference in the world of integration.
But apart from PowerCenter, Informatica also has other tools that focus on more specific purposes, while that are integrated into the platform, and always in the context of Data Integration.
- Read more
- 569 reads
-

The error ORA-30926 as a result of a Merge
Submitted by carlos on 17 February, 2009 - 01:00ORA-30926 error usually occurs when performing merge operations, and typically we leave something descolocados as the description of it does not give too much information about what is happening:
ORA-30926: unable to get a stable set of rows in the source tables.
Normally this error occurs when the merge operation to target a row to be updated on it more than one row in the table source. As the engine does not know what to choose register returns an error. It is a problem of duplication in the origin table.
Example:
-
We have:
TABLA_ORIGEN with the values
ID Description
1 'The first value'
1 'The value with duplicate id'
2 'Another value'
- Read more
- 3114 reads
-

Searching for user passwords in Oracle
Submitted by carlos on 14 August, 2007 - 21:12For obvious security reasons we can not see clear the password of the users of the database, but as an administrator user SYSTEM does have privileges to view the encrypted password:
SQL> select password from dba_users where username='SCOTT';
PASSWORD
-----------------------------
F894844C34402B67
The usefulness of this is that as we return the SELECT can be used in a sentence of password change;
SQL> alter user scott identified by values 'F894844C34402B67';
GRANTS WITH GRANT OPTION: The transitive property granting privileges
Submitted by carlos on 23 June, 2007 - 00:00
Grant command is used to grant to user's databases generic privileges or permissions over objects.
It's syntax is:
GRANT [system_privileges | roles]
TO [user | role | PUBLIC] {WITH GRANT OPTION}
to grant generic privileges
- Read more
- 524 reads
-
