Viewing 15 posts - 331 through 345 (of 432 total)
Jeff Moden (1/2/2010)
January 3, 2010 at 6:44 am
I think it's not possible to use the filestream API from SQL CLR code running in the same instance as the target filestream column. You can only use it to...
December 28, 2009 at 3:22 pm
The only information you have mentioned in your description is Stores and Balances. So that sounds like just two columns in a single table. Maybe your actual scenario is more...
December 28, 2009 at 3:14 pm
If low latency is essential then what's the reason for having two databases? Maybe you could just make sufficient bandwidth into the OLTP database so that it can be used...
December 28, 2009 at 3:08 pm
A Data Warehouse should generally be designed to at least Boyce-Codd / 5th Normal Form. That is usually the best way to balance the requirements of flexibility, integrity, data loading...
December 23, 2009 at 7:29 am
tuples if you like the idea better, although tuples and columns are not completely synonymous
They are not synonymous at all. A tuple is a set of named attributes - like...
December 21, 2009 at 7:19 am
Take the better example of a table whose key has three dimensions, the attributes (a,b,c), plus three other attributes (d,e,f). How to convert such a relation into a two dimensional...
December 21, 2009 at 1:27 am
roger.plowman (12/20/2009)
December 20, 2009 at 12:11 pm
RBarryYoung (12/6/2009)
What would that do the DISTINCT, UNIQUE, and Primary Keys don't already do?
It would enable more advanced optimisation of queries and data access. SQL database engines are much less...
December 7, 2009 at 12:45 pm
Jeff Moden (12/6/2009)
SQL Server and all relational databases aren't much more than glorified file handlers.
And OO languages are just syntactic sugar! After all, everything can be done with machine code!...
December 7, 2009 at 7:17 am
Lynn Pettis (12/6/2009)
December 7, 2009 at 12:29 am
All keys are superkeys. Identifying a candidate key of a relvar is purely a matter of interpretation because it depends on what the intended meaning of the relvar is -...
December 6, 2009 at 4:20 pm
RBarryYoung (12/6/2009)How can a relational query "preserve keys" across relational operations like PROJECT and JOIN?
Some examples:
P = PROJECT(a,b) R
If a is a key of R then a is a key...
December 6, 2009 at 3:02 pm
GSquared (11/18/2009)
You still haven't posted the non-SQL relational solution to the problem that you posed.
Here's one I did using Rel (http://dbappbuilder.sourceforge.net/Rel.php)
// Create OrderItem and Order
VAR PurchaseOrder REAL RELATION {
OrderNum INTEGER,
CustomerNum...
November 18, 2009 at 3:20 pm
Leaving aside the well-known disadvantages of procedural code, a trigger is not a substitute for a constraint because it does not enforce the rule. It allows the data to get...
November 18, 2009 at 2:36 pm
Viewing 15 posts - 331 through 345 (of 432 total)