The PARTITION BY clause sets the range of records that will be used for each "GROUP" within the OVER clause.
(That didn't help very much did it!)
In your example SQL, the column DEPT_COUNT will return the number of employees within that department for every employee record. (It's as if your de-nomalising the emp table - you still return every record in the emp table)
emp_no, dept_no, DEPT_COUNT
1, 10, 3
2, 10, 3
3, 10, 3 <- three because there are three "dept_no = 10" records.
4, 20, 2
5, 20, 2 <- two because there are two "dept_no = 20" records.
If there was another column for say, state, then you can count how many departments in that state.
It's like being able get the results of a GROUP BY (SUM, AVG etc) without the aggregation of the result set.
It's very useful when you use the "LAST OVER" or "MIN OVER" functions to get say, the lowest and highest salary in the department and then use that in a calulation against this records salary WITHOUT A SUB SELECT. Much faster.
For more information see:
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:3170642805938
Hope this helps.