| bio | website | |
|---|---|---|
| location | New Jersey | |
| age | 51 | |
| visits | member for | 3 years, 1 month |
| seen | 2 days ago | |
| stats | profile views | 30 |
|
May 16 |
comment |
.NET Serilization/Marshaling similar to Apache Cammel: Bindy? The XML parser is ugly, but the biggest problem is its only one way, it will generate XML from the fixed format messages but I cannot generate the fixed format from XML with it. Going the other way is much more complex because of the need to validate that the class data will fit in the fixed format. |
|
Apr 26 |
comment |
Moving a project tree within SVN repository? So mv moves history, not from this revision forward. |
|
Mar 18 |
comment |
xslt template match on child element value with specific attribute? The 2nd is exactly what I'm looking for. It's also one of the iterations that I tried. It appears most of my trouble was related to a catch-all match on a default template (for unknown content) that was matching with a higher precedence. |
|
Feb 1 |
comment |
Merge multiple Lists into one List with LINQ Yes, care is very important to keep them in sync. Fortunately in this application you've already thrown exceptions if the lists are the wrong size and/or the checksum is wrong. Even if they are the same size the answer ends up terribly wrong even if they're not all in the correct order. Its never pretty trying to put together related, but distinctly separate objects. |
|
Jan 5 |
comment |
Workaround for no SCD0 in SSIS Dimension Merge SCD Component? ALSO, the SCD0 and SCD1 columns do not exist in the source. They are all the result of multiple lookup operations. |
|
Jan 5 |
comment |
Workaround for no SCD0 in SSIS Dimension Merge SCD Component? DMSCD is part of the overall ETL strategy across multiple packages where it also captures and logs statistical data as well as maintaining audit data on the rows. Merge may be what I resort to but first I'm going to try and beat DMSCD into submission. |
|
Jan 4 |
comment |
Workaround for no SCD0 in SSIS Dimension Merge SCD Component? That would be true if the "row" were considered to be SCD0, however, this question refers to a row where certain columns are SCD0 and certain columns are SCD1. |
|
Dec 15 |
comment |
Issue with inferred member using SSIS Dimension Merge SCD Component No luck getting the test to work. |
|
Dec 15 |
comment |
Issue with inferred member using SSIS Dimension Merge SCD Component The first project for this morning to to create a very simple test case with just a handful of rows and test a few different scenarios. One thing that concerns me is the SCD2 columns are marked as "Optional" on the "Update" output. These can not be optional if "InferredMember" support is implemented. |
|
Dec 15 |
comment |
Issue with inferred member using SSIS Dimension Merge SCD Component Thanks, no nothing is being altered after the fact and the sort order is correct. I'm expecting it to see the inferred member flag and update SCD2 columns on the existing row, but it created new rows; it did the SCD2 insert as if it never saw the inferred flag... and it did it consistently on all 14 dimensions. |
|
Apr 27 |
comment |
Elmah always logs two identical exceptions: any idea why? hmmmm, come to think of it I have been using example code from the whocanhelpme project as part of the elmah implementation and they just happen to be throwing in the Application_OnError and even have a comment to that effect... obviously this is responsible for one copy. Of course now the question would be "what were they thinking when they wrote this." I need to look at this a little closer. |
|
Mar 27 |
comment |
Preserve leading zeros when mapping NUMERIC(5,0) to string That's reasonable. |
|
Mar 27 |
comment |
Preserve leading zeros when mapping NUMERIC(5,0) to string Representing numeric strings as the strings that they are is a domain concern. You would not fix a source system data translation issue 100 times in 100 views, you’d fix it once in the domain. Making it a display concern is also impractical because at the view level values like Zip Code are alpha numeric because of the inclusion of Canadian and UK postal codes at the service layer. Additionally, web service calls have no display concern and no format string. Seeing translation logic like this is the display or service layer is a code smell. |
|
Mar 27 |
comment |
Preserve leading zeros when mapping NUMERIC(5,0) to string I would tend to disagree that it’s a display concern. The source system makes liberal use of the numeric data type to represent numeric string data, Zip Code is but one example of a myriad of cases where this has been done. Changing the source system to be more accommodating to this project is out of the question; anyone who works in IT understands the political and monetary reasons for this. |
|
Nov 17 |
comment |
Implementing a complex query in NHibernate? Yes, SP or a view would have been the way to go if it were allowed. Since its not a named query is the next best thing. But, Right now I'm fighting the NHibernate configuration that's throwing an exception related to configuration when it tries to create a session. I may update the question with that if I can't fix it shortly. |
|
Nov 16 |
comment |
Implementing a complex query in NHibernate? Legacy System = NO touch! |
|
Nov 16 |
comment |
Implementing a complex query in NHibernate? Thanks, my problem with the documentation and most examples is they are fairly anemic. Its hard to see the impact of Common Table Expressions, Group By, and Sub Queries. The documentation seems to imply that there are specific ways a join needs to be expressed, even in native SQL, but nothing comes close to dealing with the details involved in the query above. |
|
May 9 |
comment |
System.NullReferenceException with WhoCanHelpMe Unit Test I've gotten far enough to see that ServiceLocator is returning null but not throwing any exceptions either. This eventually results in the null Validator reference. |