0
votes
2answers
36 views
How to make tasks double-checked (the way how to store it in the DB)?
Hello all!
I have a DB that stores different types of tasks and more items in different tables.
In many of these tables (that their structure is different) I need a way to do it t …
2
votes
2answers
214 views
What changes do I need for my tables to work on AppEngine’s BigTable?
Let's say I have a booking database consisting of users:
user_id
fname
lname
and their tickets
ticket_id
user_id
flight_no
and associated flights
flight_no
airline
departure …
0
votes
3answers
64 views
“Rebuttals” and “Comments” - Two DB-Tables or One?
I'm working on a project for a friend and I've come across a difficult decision. The project consists of essays, each of which can be challenged, and also commented on. The thing i …
1
vote
6answers
341 views
How do I know if CONSTRAINT_NAME is a Primary or Foreign Key?
Using this SQL on SQL Server 2005
SELECT CONSTRAINT_NAME
FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE
WHERE TABLE_NAME = @TableName
AND COLUMN_NAME=@ColumnName
I get the Primary …
3
votes
4answers
256 views
How do I implement threaded comments?
I am developing a web application that can support threaded comments. I need the ability to rearrange the comments based on the number of votes received. (Identical to how threaded …
2
votes
4answers
1k views
Storing SAS data (including table structure) in a single flat file
I need to convert SAS data tables into flat files (or "ASCII files" as they were called once, as opposed to binary files). And only 1 flat file for each original SAS table.
The cha …
3
votes
2answers
1k views
How do I check if a column exists in SQL Server?
How do I check if a column exists in SQL Server 2000?
2
votes
9answers
252 views
One To Many To Itself
How would one structure a table for an entity that can have a one to many relationship to itself? Specifically, I'm working on an app to track animal breeding. Each animal has an …
2
votes
4answers
2k views
MySQL Row Format: Difference between fixed and dynamic?
MySQL specifies the row format of a table as either fixed or dynamic, depending on the column data types. If a table has a variable-length column data type, such as TEXT or VARCHAR …
