0
votes
3answers
40 views
SQL design for survey with answers of different data types
I am working on an online survey. Most questions have a scale of 1-5 for an answer. If we need to add a question to the survey, I use a simple web form, which does an INSERT into t …
5
votes
8answers
95 views
Do you use the OUTER keyword when writing left/right JOINs in SQL?
I often see people who write SQL like this:
SELECT * from TableA LEFT OUTER JOIN TableB ON (ID1=I2)
I myself write simply:
SELECT * from TableA LEFT JOIN TableB ON (ID1=I2)
T …
2
votes
9answers
151 views
How to best implement a 1:1 relationship in a RDBMS?
Yesterday while working on a project I came up on a peculiar 1:1 relationship which left me wondering - how to best implement this (clearly, we had done it wrong :D)
The idea is t …
3
votes
4answers
104 views
What is the problem with foreign key cascade multiple paths and cycles?
In MSSQL 2005 I just struck the infamous error message:
Introducing FOREIGN KEY constraint XXX on table YYY may cause cycles or multiple cascade paths. Specify ON DELETE NO AC …
7
votes
17answers
292 views
SQL portability gotchas
My company has me working on finishing a back end for Oracle for a Python ORM. I'm amazed at how much differently RDBMSes do things even for the simple stuff. I've learned a lot …
17
votes
12answers
660 views
What are views good for?
I'm just trying to get a general idea of what views are used for in RDBMSes. That is to say, I know what a view is and how to make one. I also know what I've used them for in the …
3
votes
4answers
277 views
What are the disadvantages of having many indices?
I recently sped up a complicated query by an order of magnitude by giving SQLite a good index to work with. Results like this make me wonder if I should index a lot of other fields …
2
votes
10answers
307 views
What is the best way to generate an ID for a SQL Insert?
What is the best, DBMS-independent way of generating an ID number that will be used immediately in an INSERT statement, keeping the IDs roughly in sequence?
