Cade Roux

16,646
reputation
922 views

Registered User

name Cade Roux
member for 1 year
seen 13 mins ago
website
location New Orleans, LA
age 38
Just a Programmer
Stack Overflow CV
19m
awarded  Enlightened
44m
accepted The anti-DRY pattern
46m
revised The anti-DRY pattern
deleted 7 characters in body
1h
answered What format should I use for scanned invoices in SQL Server?
1h
revised The anti-DRY pattern
deleted 2 characters in body
1h
answered Check for arithmetic overflows in computed columns?
1h
comment Check for arithmetic overflows in computed columns?
OK, I know you're in a tough spot. Building a database within a database is always hard. I'm not sure when it will get easier. It seems like there might be a market for a database compiler product which still produces a SQL database, but with your own extensions for things like EAV and complex derived columns. I'll add another answer regarding UDFs (which I think is complete FAIL for large datasets, which is why I didn't suggest it.).
1h
comment The anti-DRY pattern
@Will, yes definitely, I think this is just a first step to stop the repeated code and then a more OO refactoring could commence, potentially moving the configuration and control into an object (I will avoid using the term "inversion of control" for fear of people confusing the basic design paradigm with the plethora of frameworks for implementing IOC). I added a note in my last edit.
1h
comment The anti-DRY pattern
And I thought it was taking me forever to reformat all that code ;-)
1h
awarded  Nice Answer
2h
comment The anti-DRY pattern
@gbianchi, yes, thanks for the spot.
2h
revised The anti-DRY pattern
deleted 17 characters in body; added 609 characters in body
2h
accepted Check for arithmetic overflows in computed columns?
2h
answered The anti-DRY pattern
2h
comment How many significant digits should I store in my database for a GPS coordinate?
Yes, it takes up space in the database, but the space required in the database for a given DECIMAL specification always allows a sign. I'm not familiar with the internal storage requirements of MySQL, but for SQL Server, a decimal takes 5 bytes (1-9 digits)/9 bytes (10-19 digits)/13 bytes (20-28 digits) /17 bytes (29-38 digits) depending on digits of precision specified (it is independent of scale, obviously).
2h
revised How many significant digits should I store in my database for a GPS coordinate?
clarified about sign availability for DECIMAL
3h
answered How many significant digits should I store in my database for a GPS coordinate?
4h
revised Forbidden to use for loop!
deleted 1 characters in body
4h
answered Forbidden to use for loop!
4h
comment How to append a date in batch files
Posted the code, hope it helps.
4h
revised How to append a date in batch files
added 4731 characters in body
21h
comment Check for arithmetic overflows in computed columns?
Making it part of the database schema means that different customers would have different schemas - a complete nightmare to keep in sync, test and manage.
21h
comment Check for arithmetic overflows in computed columns?
Nope. Why is putting this into the database a good idea? I don't want anyone doing a SELECT * anyway. I don't even let users do SELECT if I can avoid it and usually not on a TABLE (maybe a VIEW), since they only have EXEC rights on certain user-exposed SPs. When users are allowed to do arbitrary calculations (and change those definitions on a regular basis), I put that responsibility in a report writer, or put the formula in a configuration space where it is interpreted by the application, where changes to it can be caught with an audit trail.
1d
answered Check for arithmetic overflows in computed columns?
1d
answered Databases and DVCS
2d
comment get max from table where sum required
I think you need to clarify your question a bit. Why does displayOrder 3 return 2? What do you mean by displayOrder (presumably you would use ROW_NUMBER() with an ORDER BY, but what is the order?) and where does the 2 come from?
Dec
19
comment SQL Select Condition Question
How are you passing the IDs to the query? A single comma-separated variable or a table?
Dec
19
comment SQL Select Condition Question
State the full problem with the expected inputs and behavior. If three are in the query and it has to match all three or what?
Dec
19
comment SQL Select Condition Question
This might be preferable to my answer (for maintenance and performance) with the variable lists requirement (review execution plan, of course), but will also fail in the case of 3 matches. I think the requirement of varying input has to be better defined to understand an appropriate final solution.
Dec
18
answered SQL Select Condition Question
Dec
17
comment How to use parameter with LIKE in Sql Server Compact Edition
SQLCE (or, more likely, the provider) must have a problem with the inline expression - that might be why the provider throws the error. I don't have a testbed for SQLCE and didn't even notice this was really a SQL CE question until I had already posted my first answer :-(
Dec
16
revised How to use parameter with LIKE in Sql Server Compact Edition
added 193 characters in body
Dec
16
comment How to write a query for SQL Server 2008 that returns the dependencies of an object (Exactly what Management Studio shows with the “View Dependencies” menu)
No problem - you asked how to qrite a query - not give me one! ;-)
Dec
16
revised How to write a query for SQL Server 2008 that returns the dependencies of an object (Exactly what Management Studio shows with the “View Dependencies” menu)
edited tags
Dec
16
answered How to write a query for SQL Server 2008 that returns the dependencies of an object (Exactly what Management Studio shows with the “View Dependencies” menu)
Dec
16
answered How to use parameter with LIKE in Sql Server Compact Edition
Dec
16
comment How to fill a square with smaller squares/rectangles?
I don't see why fabric art on the walls is any less up to fire code than cubicle wall cloth. People still have their secret space heaters anyway ;-)
Dec
16
comment How to fill a square with smaller squares/rectangles?
It would be more productive for them if they would just let you paint the walls or hire an interior designer instead of spending your time programming this and rearranging the decoration over and over ;-)
Dec
16
comment SQL repeat events by timer
Numbers on Wall Street don't change - new numbers are added for new times. If you have a timestamp column, you could get the latest quote for a stock ticker. This would bemore realistic.
Dec
16
comment Why do Open Source Software devlopers give their work away for free?
Even in communism, people work and receive compensation.
Dec
16
accepted Is using a table inheritance a valid way to avoid using a join table?
Dec
16
accepted SQL 2005 Pivot Query
Dec
16
accepted Declaring reused variables at class or method level when theyre required
Dec
16
answered Alternative TSQL
Dec
15
answered SQL 2005 Pivot Query
Dec
15
accepted ASP.NET Design Consideration
Dec
15
revised ASP.NET Design Consideration
added 1 characters in body
Dec
15
revised ASP.NET Design Consideration
edited tags
Dec
15
answered ASP.NET Design Consideration
Dec
15
comment Batch commit on large INSERT operation in native SQL?
This was ultimately the strategy I used.