Tagged Questions

3
votes
3answers
717 views

Importing/Exporting Relationships in MS Access

I have a couple of mdb files with the exact table structure. I have to change the primary key of the main table from autonumber to number in all of them, which means I have to: Drop the all the …
1
vote
3answers
17 views

Rails ActiveRecord relationships - has many and belongs to associations

I've created 3 models: Article: contains an article Tag: contains tags ArticleTag: meant for associating a many-to-one tags to article relationship. It contains a tag_id and an article_id. The …
1
vote
2answers
115 views

Multi level associations in rails

I am creating an application to track football teams through out the season. but i am stuck on the design of the database. One fixture has a home team and an away team. I have created a fixture model …
1
vote
3answers
86 views

DB Schema Organization

I'm currently in the planning phase of building a scheduling web app (for volunteer staffing of events), and I've got a question for those with more experience. Background: There's a calendar of …
1
vote
8answers
260 views

database relationships

does setting up proper relationships in a database help with anything else other than data integrity? do they improve or hinder performance?
1
vote
1answer
114 views

ROR Model Setup Question: Table Relationships

I'm developing a site that will have a model for users, a model for submissions, and a model for ratings. Each submission may have only one rating per user. My question is how should I set this up in …
1
vote
2answers
227 views

limitations of :finder_sql

In a rails app, I using the :finder_sql option in a has_many declaration. The rails docs say that when I do this, "find_in_collection is not added." What does this mean?
0
votes
7answers
187 views

How can I create multiple columns from one DB Field in SQL Server?

I have a field called PropertyValue in the UserProfile table that can contain information for address, phone number, first name, last name, user name, city, etc... each record in this table is …