0
votes
12answers
94 views
Select * vs Specifying Column Names
What are the performance differences between using SELECT * FROM SOMETABLE versus SELECT COL1, COL2 FROM SOMETABLE when you want the same number of columns from both statements? Is …
2
votes
6answers
56 views
Should I model with an association table for future flexibility?
This is a database modeling question.
I normally model one-to-many with a standard parent-child table setup, and I normally model many-to-many with an association table between th …
5
votes
9answers
91 views
Database design for a survey
I need to create a survey where answers are stored in a database. I'm just wondering what would be the best way to implement this in the database, specifically the tables required. …
2
votes
7answers
180 views
Is a one table 9 GB database good design?
I was asked to think about a database for our application. There are about 7 different data need to be stored. One is identification data which may contains an unique serial number …
0
votes
2answers
74 views
SQL Server: One Table with 400 Columns or 40 Tables with 10 Columns?
I am using SQL Server 2005 Express and Visual Studio 2008.
I have a database which has a table with 400 Columns. Things were (just about manageable) until I had to perform bi-d …
0
votes
2answers
27 views
Relating two tables in a database
I have a "Student" table which should have name column. But I made another table "StudentsName" for name since names have three parts: firstname, middlename and last name.
Now my q …
1
vote
2answers
87 views
How do i merge two or more rows based on their foreign key?
I have three tables which are:
A(a1, a2, a3)
//This tbl (Table) can have multiple instances of a1, but cause of its dependence on b1,
//we have a unique record each time
B(b1, a …
1
vote
3answers
36 views
Storing Revisions of Relational Objects in an Efficient Way
I'm not sure if this type of question has been answered before. In my database I have a product table and specifications table. Each product can have multiple specifications. Here …
1
vote
3answers
41 views
indexing pros cons in sql server 2008
I am working on social networking site. now our team decide to store user profile in denormalized manner. so our table structure is like this
here attribute it means one fields fo …
0
votes
2answers
17 views
multiple attribute
Hi, How can i define multiple attribute in database. Suppose the name field. It has three parts: Firstname, Middlename, Lastname. And the Address Attribute:
Street Address
City
S …
0
votes
12answers
127 views
Is the usage of stored procedures a bad practice?
Hi,
We have an application that is written in C# that is connected to a ms sql server.
We use to make a stored procedure for every database call, but then we've noticed that using …
0
votes
1answer
38 views
How do you create a Dynamic Database?
Question, I am using Oracle 10g and my client wants me to create a Dynamic Database. Are there instructions that I can use to create one? What is the difference between a Relationa …
0
votes
5answers
29 views
Diagrams for Data Flow?
I'm a database programmer, but I have never used data flow/diagram program. I would like to explain some Data Diagram to a client.
Question - what is a program that will allow me …
2
votes
5answers
51 views
How to Represent Rules using a MySQL Table?
I have a table of 100,000s of USERS (name, age, gender, phone, company, street, city, state, country, zipcode, etc).
I also have a table of thousands of PROMOTIONS which are offer …
1
vote
2answers
27 views
Are data-snapshots of line item prices better than calculations in all cases?
I've often seen line_item tables for orders or invoices that copy one or more fields from other tables in order to take a snap-shot of a customer's product order when it was placed …
