Show Posts
|
|
Pages: [1] 2 3 ... 9
|
|
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.
|
|
|
|
|
5
|
Databases / Oracle / Re: Typical queries on Emp table
|
on: November 08, 2010, 10:17:11 am
|
First one totally not working..!  Works just fine here.  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 - 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 ?
|
|
|
|
|
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
|
|
|
|
|
9
|
General Category / General Discussion / Re: New look to Forum
|
on: September 21, 2010, 10:02:48 am
|
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. 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". New look to forum is very nice  I'm glad you all like it.
|
|
|
|
|
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 - 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 - 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.  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.
|
|
|
|
|
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. 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 - chown :group1 file1
|
|
|
|
|