Categories
- Business Objects (3)
- Best Practices (2)
- Fusion Charts (5)
- Main (3)
- SQL Server (1)
- SSIS (1)
- Uncategorized (1)
- Universe Design (3)
- Web Intelligence (4)
- Xcelsius (7)
- Design Practices (1)
- Excel (1)
- Tips and Tricks (2)
- Workarounds (1)
Archives
- February 2010
- January 2010
- October 2009
- August 2009
- April 2009
- March 2009
- January 2009
- December 2008
- November 2008
- October 2008
Tag Cloud
auto increment
best practices
bonavista
bulletgraph
Business Objects
charting
charting package
conditional formatting
content management
dashboard
datatable
dianne sawyer
dom
Excel
expand
fannie mae
fix
flash charts
fred carter
frederick carter
free
Fusion Charts
grid component
imt slider
inovista
java
javascript
Java Wrapper
microcharts
pathway technologies
populate dimension table
ripoff
scam
sorting
sparkline
SQL Server
SSIS
table
tree grid
universe
User Access
User Management
Web Intelligence
wrapper
Xcelsius
Latest Tweets
-
Guide on Business Objects access levels posted http://davidlai101.com/blog/2010/02/19/understanding-business-objects-access-levels/ - posted on Feb 19, 2010
-
FusionCharts wrapper 1.0 online guide now available - posted on Feb 03, 2010
-
FusionCharts Java Wrapper 1.0 released
Go to http://davidlai101.com/blog/2010/02/02/fusion-charts-java-wrapper-updated/ to check it out! - posted on Feb 02, 2010
-
The future is in sixth sense technology http://www.youtube.com/watch?v=mzKmGTVmqJs&feature=youtube_gdata - posted on Jan 26, 2010
-
Blog has been upgraded to Wordpress. Enjoy! Http://www.davidlai101.com/blog - posted on Jan 24, 2010


Auto Incrementing a dimension primary key in SSIS
While working with SSIS to generate star schemas, a common problem I faced was populating a dimension table from another table that did not contain any ids for the items being inserted. If you would try to insert the dimension data without any keys, an error would be thrown since the id field cannot be null.
An easy solution is to have a script populate the id column.
In this example we take a table that does not have any ids related to the dimension that we want to populate. First we aggregate the items that we want inserted into the dimension.