Data Warehousing Community Forum
February 08, 2012, 09:58:27 am

  Show Posts
Pages: [1] 2 3 ... 9
1  Data Warehousing / Data Warehousing Concepts / Re: theoretical understanding problem of the Core Data Warehouse on: May 27, 2011, 03:49:13 pm
How is the Data organized in the Core Data Warehouse? Is it just a copy of the whole operational Data or is it also multidimensional organized (via Star or Snowflake schema)?
It can be either (or both).
But usually the latter.

In the literature they always just write about the Data Marts wich are organized multidimensional. And when they come to the CDWH they all just say "it holds the operational Data"? iam confused!
There's so much terminology, it's almost as if it was meant to be confusing !
This is an excellent article for beginners (translated from German, so pardon a few mistakes)
2  Data Warehousing / Data Warehousing Concepts / Re: build a message driven (HL7) real time data warehousing on: May 27, 2011, 03:41:47 pm
In case of a real time message driven warehouse, the primary challenge arises out of it being "real time" - not because of it being "message driven" (push based)

This is an excellent article - http://dssresources.com/papers/features/langseth/langseth02082004.html

Data cleansing & integrity challenges you'll face, no doubt.
But no more than you would when building a traditional data warehouse.
3  ETL Tools / Informatica / Re: Question on Joiner Transformation on: March 28, 2011, 10:01:58 am
As reported by user sh_2, the link to Powerpoint presentation file is not working at the moment (the website seems to have run out of bandwidth for the month).

We don't have a shortage of bandwidth, so I'm attaching a copy of the file in this post. (downloaded from Google cache)

edit - Should have mentioned before ... post attachments are visible/available only to registered users.
4  Reporting Tools / Crystal Reports / Re: Is there any function in Crystal Reports same as initcap() in oracle? on: February 24, 2011, 09:45:03 am
ProperCase()

Available in Crystal Reports v9 and higher.
5  Databases / Oracle / Re: Typical queries on Emp table on: November 08, 2010, 10:17:11 am
First one totally not working..!  Undecided

Works just fine here. Lips sealed
Code:
CREATE TABLE Employee
(
Emp_id int,
Emp_name varchar(200),
Salary money,
Mgr_id int
)

INSERT INTO Employee (Emp_id,Emp_name,Salary,Mgr_id) VALUES (1,'ABC',50000,NULL)
INSERT INTO Employee (Emp_id,Emp_name,Salary,Mgr_id) VALUES (2,'XYZ',10000,1)

SELECT e.Emp_id, e.Emp_name, e.Mgr_id, m.Emp_name AS Mgr_name
FROM Employee e
LEFT OUTER JOIN Employee m ON e.Mgr_id = m.Emp_id

Result -
Code:
Emp_id Emp_name Mgr_id Mgr_name
------ -------- ------ --------
1      ABC      NULL   NULL
2      XYZ      1      ABC

(2 row(s) affected)

What DBMS are you running ?
6  General Category / Introductions / Re: Hello :) on: October 23, 2010, 12:54:54 pm
Welcome to the community, Black-Wolf !

We look forward to sharing data warehousing knowledge and experiences with you.
7  Databases / Oracle / Re: Typical queries on Emp table on: October 20, 2010, 10:10:38 am
These haven't been tested, just typed in quickly. Hopefully, they'll still work -

1)
SELECT e.Emp_id, e.Emp_name, e.Mgr_id, m.Emp_name AS Mgr_name
FROM Employee e
LEFT OUTER JOIN Employee m ON e.Mgr_id = m.Emp_id


2)
SELECT e.Emp_id, e.Emp_name, e.Salary
FROM Employee e
INNER JOIN Employee m ON e.Mgr_id = m.Emp_id
WHERE e.Salary > m.Salary
8  ETL Tools / Informatica / Re: Informatica Production related Issues on: October 14, 2010, 02:08:21 pm
Praveen -
You should have posted this one as a new thread.
New thread created.

Thanks Allegra ! Cool
9  General Category / General Discussion / Re: New look to Forum on: September 21, 2010, 10:02:48 am
Quote from: Allegra
Earlier forum logo dispaly was very meaningful.
The earlier logo was just an "open book with a globe" - not the most relevant to Data warehousing.

Quote from: Allegra
And user info is hardly visible for a user.
You mean this "user info" ? Looks pretty much the same even now -

Or did you mean this "user info".

Quote from: Allegra
New look to forum is very nice
I'm glad you all like it. Smiley
10  ETL Tools / Informatica / Re: Question on Joiner Transformation on: September 15, 2010, 10:29:22 am
Each row of "Master" is compared against the "Detail".
Fewer rows in "Master" means fewer iterations of the transformation.

Also, fewer rows in "Master" means a smaller Data/Index cache.

Reference - http://www.lsp4you.com/seminars/Cache.ppt
11  Operating Systems / UNIX / Linux / Re: Change permissions - Unix Directories on: August 19, 2010, 10:15:59 am
Any clue how to change permissions for directories and low-level directories.

You can use the command chmod to change permissions on a file/directory. For example -
Code:
chmod 0755 /root


Eg - under /root; I have direcotories /root/ABC , /root/DEF/ and /root/XYZ/ and other levels also.

If you wish to change the permissions recursively, use "-R" argument with chmod. For example -
Code:
chmod -R 0755 /root
12  Data Warehousing / Data Warehousing Concepts / Re: DW/BI in Oracle or Sql Server 2008? on: July 29, 2010, 10:51:13 am
Which DW/BI technology is best?Oracle or MSSQL?
Where should I start?
Which documentation/Tutorial/Book/Site/Video  would you recommend?
The jury is still out on the absolute "best" technology ... but Oracle+Informatica has a bigger market share than MSSQL - that's probably a good indicator.  Wink

A good place to start would be to master the basic concepts of DW. Do that, and it's more than half the job already done.

Personal suggestion - MSSQL BI products come with a very good sample DW implementation called "Adventure Works" - even if you're not focusing on MSSQL, that is a good place to learn the abstract DW basic concepts and their practical implementations.

p.s. - Oracle might have something similar to Adventure Works, but I'm not really an Oracle person.
13  General Category / Introductions / Re: Hi all on: July 29, 2010, 10:43:44 am
Hello Thierry !

Welcome to DWforum.net ... hope you have a pleasant knowledge sharing experience here.
14  ETL Tools / Informatica / Re: Informatica Scenario for routing Duplicate records on: July 27, 2010, 10:16:16 am
There are 2 target tables T1 and T2. I would be needing all the unique records in T1 and one instance of the duplicate row in other even if it has more than 2 rows in the i/p database.
Why not do this with a simple query against your source DB, instead of trying to do this in Informatica ?
15  Operating Systems / UNIX / Linux / Re: Changing group ownership on: July 23, 2010, 05:40:42 pm
Google says command chgrp will do that, but no proper examples for changing at root level.
chgrp is meant for non-privileged users.

Superusers can use chown.

Code:
chown user1:group1 file1
Changes the owner of file1 to user1 and owner group to group1

If you only want to change the group, you can skip the user1, like so -
Code:
chown :group1 file1
Pages: [1] 2 3 ... 9