Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-08-02 Thread Michael Bayer
On Aug 1, 2014, at 6:57 AM, Wolfgang Keller wrote: >> Celko's books are great but surrogate integer PKs are an unavoidable >> practice within relational databases, they are a requirement of most >> DBAs I've dealt with > > Those guys don't even have a faint clue how clueless they are. > > In

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-08-01 Thread Jonathan Vanasco
On Wednesday, July 30, 2014 12:18:03 PM UTC-4, Michael Bayer wrote: > > Typically a UNIQUE constraint is placed on the “natural” key to prevent > dupes. > Sidenote on this: If the field isn't case-sensitive, then you are often better off using a function on the constraint if the database all

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-08-01 Thread Wolfgang Keller
> Celko's books are great but surrogate integer PKs are an unavoidable > practice within relational databases, they are a requirement of most > DBAs I've dealt with Those guys don't even have a faint clue how clueless they are. In fact this very issue is *THE* "litmus test" question I ask people

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Rich Shepard
On Wed, 30 Jul 2014, Michael Bayer wrote: You make a single explicit UniqueConstraint object that specifies all three. Thanks, Mike. I missed that in the docs. Next question will appear only after a thorough search of your book. Rich -- You received this message because you are subscrib

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Michael Bayer
You make a single explicit UniqueConstraint object that specifies all three. Sent from my iPhone > On Jul 30, 2014, at 2:30 PM, Rich Shepard wrote: > >> On Wed, 30 Jul 2014, Michael Bayer wrote: >> >> Typically a UNIQUE constraint is placed on the "natural" key to prevent >> dupes. > > I can

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Rich Shepard
On Wed, 30 Jul 2014, Michael Bayer wrote: Typically a UNIQUE constraint is placed on the "natural" key to prevent dupes. I can see this when the natural key is a single column, but wonder how a compound natural key is represented if a serial integer is used as the surrogate 'id' key. For exa

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Rich Shepard
On Wed, 30 Jul 2014, Michael Bayer wrote: With that, plus the predictable indexing, I'm always going to use them. But, I think there's a fair degree of preference still here. With natural PKs, the biggest issue is how much space indexes are going to take up considering that everything that FKs t

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Michael Bayer
On Jul 30, 2014, at 12:28 PM, Rich Shepard wrote: > On Wed, 30 Jul 2014, Michael Bayer wrote: > >> Celko's books are great but surrogate integer PKs are an unavoidable >> practice within relational databases, they are a requirement of most DBAs >> I've dealt with as they perform predictably in

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Rich Shepard
On Wed, 30 Jul 2014, Michael Bayer wrote: Celko's books are great but surrogate integer PKs are an unavoidable practice within relational databases, they are a requirement of most DBAs I've dealt with as they perform predictably in terms of indexing and space requirements, especially considering

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Michael Bayer
On Jul 30, 2014, at 9:04 AM, Rich Shepard wrote: > On Wed, 30 Jul 2014, Werner wrote: > >> I don't like using 'name' columns as primary keys I would instead use an >> 'id' column and would set 'index=True' on the name column. > > Werner, > > The use of natural keys (such as a vehicle VIN, th

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Rich Shepard
On Wed, 30 Jul 2014, Werner wrote: His book looks very interesting. Werner, And quite useful. I can see the advantage these things, but not sure on 'agency_contacts'. I agree. But, it is unlikely that there would be two staffers with the same last name in the same district office of a

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Werner
Hi Rich, On 7/30/2014 15:04, Rich Shepard wrote: On Wed, 30 Jul 2014, Werner wrote: I don't like using 'name' columns as primary keys I would instead use an 'id' column and would set 'index=True' on the name column. Werner, The use of natural keys (such as a vehicle VIN, the US's SSN, or

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-30 Thread Rich Shepard
On Wed, 30 Jul 2014, Werner wrote: I don't like using 'name' columns as primary keys I would instead use an 'id' column and would set 'index=True' on the name column. Werner, The use of natural keys (such as a vehicle VIN, the US's SSN, or equipment serial number) is prefered over an artifi

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-29 Thread Werner
Hi Rich, I don't like using 'name' columns as primary keys I would instead use an 'id' column and would set 'index=True' on the name column. On the primary key also define a Sequence: Column('id', Integer, Sequence('tablename_id_seq'), primary_key=True) http://sqlalchemy.readthedocs.org/en/r

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-29 Thread Rich Shepard
On Tue, 29 Jul 2014, Rich Shepard wrote: CheckConstraint(org_lvl("org_lvl IN ('Federal', 'State', 'County', 'City', 'Local', 'Regional')") Oops! that first 'org_lvl(' comes out. Rich -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-29 Thread Rich Shepard
On Tue, 29 Jul 2014, Simon King wrote: Hope that helps, Simon, and others: As a check that I understand the basics please check the syntax of this set of three related tables: class Agencies(Base): __tablename__ = 'agencies' org_name = Column(String(48), primary_key = True) ac

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys [RESOLVED]

2014-07-29 Thread Rich Shepard
On Tue, 29 Jul 2014, Simon King wrote: Sorry, I don't know the answer to this, but based on the "attrib" example, I would guess that the string is passed directly to the database, so you would write something like: agency_name.CheckConstraint("agency_name IN ('Federal', 'State', 'County', 'City

Re: [sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-29 Thread Simon King
On Tue, Jul 29, 2014 at 2:40 PM, Rich Shepard wrote: > I'm starting to learn SQLAlchemy; have 0.9.7 installed on Slackware-14.1 > with Python-2.7.5, wxPython-3.0.0.0, and postgresql-9.3.4. > > 1) In the docs I see a row constraint example using an integer comparison > attrib.CheckConstraint('

[sqlalchemy] Specifying a Row Check Constraint and Compound Primary Keys

2014-07-29 Thread Rich Shepard
I'm starting to learn SQLAlchemy; have 0.9.7 installed on Slackware-14.1 with Python-2.7.5, wxPython-3.0.0.0, and postgresql-9.3.4. 1) In the docs I see a row constraint example using an integer comparison attrib.CheckConstraint('attrib>5'). What is the syntax for a list, such as this postgr