| Thread | Last Post | Replies |
|
| Stumped on terminology | 30 Jan 2006 00:45 GMT | 4 |
I am starting to compile the system documentation for a fairly complex database system. Part of the documentation will present ER diagrams for closely related groups of tables, with some discussion of their usage and
|
| What is wrong with this simple SQL code | 27 Jan 2006 14:09 GMT | 7 |
I want to find the name and age of the oldest sailor. In a slide I read it says that this code: Select S.sname, Max(s.age) from Sailors S
|
| Good list/forum for PostgreSQL? | 27 Jan 2006 09:09 GMT | 2 |
I'm a PostgreSQL novice looking for good forum or list to read/post PostgreSQL-specific stuff. Any suggestions would be much appreciated! Thanks! kj
|
| What's wrong with triggers? | 27 Jan 2006 03:53 GMT | 16 |
I recently saw a comment by CELKO regarding SQL Triggers that advised to "...avoid triggers whenever possible.". This is the first time I'd ever heard anything bad said about triggers and was wondering if someone could give me some insight behind that advise?
|
| Design Query | 26 Jan 2006 01:37 GMT | 2 |
I wish to design a database to track product subscriptions. Products will be available Daily, Weekly or Monthly. I have my products table which will contain: - id
|
| Impossible Relationship? Referential Integrity on tables with on From Date and To Date | 23 Jan 2006 22:21 GMT | 8 |
I am currently on a project which the source data come into the databases is always dirty (not surprisingly); however, due to the design of the database, it is very difficult to impose referential integrity (esp. Foreign Keys) on these tables. Am I just not thinking
|
| Best bit fields implementation under postgres | 23 Jan 2006 19:57 GMT | 2 |
Hello. I'm working on a database (postgresql) structure and some of the tables in it must store bit fields. Later on it must handle queries like "give me all rows in this table that have bit N set to 1 AND bit M set to 0 AND
|
| Oracle - MySQL decision | 22 Jan 2006 16:13 GMT | 7 |
About to embark on a new project... no customer at this time. I've narrowed the backend choices down to MySQL and Oracle (partly a tech decision, partly a market reality decision). In a world without constraints, I'd choose Oracle since I have used it since version 7 and
|
| natural join | 21 Jan 2006 03:10 GMT | 7 |
I never had access to a dbms that supports the "natural join". AFAICT those that do (which are they BTW?) define a natural join via the column names. Wouldn't it make much more sense to use foreign key constraints to define
|
| trying to wrap my mind around 1NF & 2NF | 20 Jan 2006 21:46 GMT | 5 |
greetings all... If someone could provide me with some insight as to how I should break up and normailze these tables I'd be most appreciative. I am struggling with putting my own tables in order, although I do understand the concepts of normaization.
|
| Increasing loading | 20 Jan 2006 18:03 GMT | 8 |
what would be the sql statement for increase loading data, im looking for way of incremental loading data to datawerhouse. regards Peter
|
| Is MySQL File Format Identical to SQL File Format? | 20 Jan 2006 05:42 GMT | 5 |
A client has asked me to move some data into SQL file format, and I was wondering if I could use MySQL to do it. Is MySQL file format identical to SQL file format? Thanks in advance for the info. -Vik
|
| CROSS JOIN | 19 Jan 2006 11:12 GMT | 15 |
Can the keywords "CROSS JOIN" always be replaced by a comma or are there circumstances in which they are necessary.
|
| "$1", "$2", etc. in SQL? | 18 Jan 2006 18:18 GMT | 2 |
The SQL generated by the PostgreSQL utility pg_dump includes statements like ALTER TABLE ONLY foo ADD CONSTRAINT "$2" FOREIGN KEY (bar) REFERENCES baz(quux) ON UPDATE NO ACTION ON DELETE NO ACTION;
|
| Full text search and Nullable column in query | 17 Jan 2006 22:13 GMT | 1 |
This is a question about query performance. I'm looking at one table with two columns, one of which a text column, the other a decimal. CREATE TABLE Q (
|