2
votes
1answer
95 views

Which one is a better data design or object model?

Overview I am designing a mechanism for generating dynamic controls in an ASP.NET MVC application that uses ADO.NET Entity Framework. However, my question has nothing to do with MVC and a little to ...
0
votes
0answers
41 views

Single DB vs Multiple DB [closed]

I've recently launched my first website, complete with Entity Framework 4.3/SQL 2008 Web Edition database. I'm now looking to add further functionality to the site, however I've got limited knowledge ...
0
votes
4answers
63 views

t-sql single default value for multiple records

I have an MSSQL Server 2008 table that associates multiple photos to houses, as follows: HouseID - with foreign key to House table PhotoID - with foreign key to Photo table It's all working great, ...
-1
votes
1answer
41 views

Representing Id's based on a prefix Microsoft SQL Server 2008 [closed]

I have a database with a table with companies ID's and prefixes. Currently when I query the DB for information I organize it by the company ID's, I want to also display the prefixes associated with ...
1
vote
1answer
33 views

Good architecture for app with variable list of attributes

We are breaking a large asp.net web forms app into chunks and one of the pieces will be rebuilt using asp.net mvc. There are 2 primary types of orders (lets say types A and B). Each order has ...
0
votes
1answer
60 views

Triggers or T-SQL?

I am trying to make notification system for my website: This is the table structure notification ----------------- id (pk) userid notification_type (for complexity like notifications for pictures, ...
1
vote
1answer
100 views

Database Design Has A relationship with Surrogate Key

First I want to be able to update all attributes/fields and there is no single unique key. I have a hierarchy like each PC can be categorized as PC1/PC2/PC3 can't give example and each PC has Network ...
-5
votes
1answer
67 views

non first normal form [closed]

When should I prefer non first normal form to normal forms,how can I understand I should use non first normal form? Can I build a non first normal form database in SQL SERVER 2008 R2? If yes how ...
1
vote
0answers
17 views

DB Design for subsystem context - KVP vs columns

In complex systems, is it quite common to have generic sub-systems that relate to several entities. An example might be a workflow engine where a Requisition, Job and Assessment might each have their ...
1
vote
1answer
68 views

Polymorphic database design : does this approach have a name?

I have a base enitiy (items) that will host a vast range of item types (>200) with totaly different properties. I want a clean portable and fast solution and have come up with an idea that maby has a ...
0
votes
1answer
48 views

Order Tables Schema Issue

I have two tables Order_Primary and Order_Complete the problem is when I want to generate the bill there could be multiple products in the bill in the Order_Primary table, so it will generate OrderId ...
0
votes
3answers
168 views

cannot connect to pc-name\SQLEXPRESS

while trying to connect to sql server 2005 standard edition through sql management studio 2005 getting the following error i put all my effort to solve this problem but there is no solution. On ...
0
votes
1answer
232 views

How to generate database diagram to a PDF in Microsoft visio?

I am trying to generate database diagram in visio in the folowing way., Start--> Microsoft visio -->File-->New-->Template Categories (DataBase and Software) -->Data Base Model Diagram, Now in this ., ...
1
vote
1answer
67 views

Two types of invoice numbering (2 tables with 0..1 relationship)

I have table invoices - PK is year+document_type_id+number (this is current numbering, and i can't change it). So, the data is like this: year document_type_id number 2013 351 ...
2
votes
2answers
93 views

Adding Customer Specific Record in Master Table

I have the following table designed already. Now the new requirement is i need to show some Category for all the tenants. Also each tenant should able to add their new Category into the ...
1
vote
2answers
62 views

database desigining for city details from multiple web service

I am working on travel application, so we have to deal with different web services like GTA, Gallileo, Kuoni etc . for getting information regarding Hotel details. Each web service has its own list ...
1
vote
3answers
203 views

Designing a simple database that respects the third normal form

I'm trying to accomplish 3NF or third normal form for a small database homework. I have Students, Classes and Parents. Here are the tables I need to make: Student: id, name, grade (avg) Class: ...
0
votes
4answers
108 views

SQL Server: Many columns in a table vs Fewer columns in two tables

I have a database table (called Fields) which has about 35 columns. 11 of them always contains the same constant values for about every 300.000 rows - and act as metadata. The down side of this ...
-2
votes
2answers
91 views

SQL Table for Timesheet creation

I'm creating a timesheet using Infopath. The data will be stored in the database, so for that I have to create a table. This timesheet will be used for the whole year. I need help in creating a SQL ...
0
votes
4answers
81 views

A single non-clustered index on two columns or a separate index on each column?

Let's say I have the following table: Table: RelationshipType ============================================================ | ID (PK) | ParentID | ChildID | RelationshipType | ...
0
votes
1answer
53 views

Personal Protective Equipment Database Structure

I have been asked by my manager to design a Personal Protective Equipment Database for the procurement dept,using SQL Server.In gathering my requirements for the database,I came up with 5 PPE ...
1
vote
2answers
67 views

Handling numerous lengthy text fields

I'm designing an SQL Server database that needs to have quite a few (roughly 15) long varchar fields, most of which I want to allocate a length of at least 1024 or 2048. Since this will obviously go ...
0
votes
0answers
400 views

How create SQL Server table for asp.net dynamic menus and pages (just DB structure and design tables)

I want to create the admin panel of website. I need to create dynamic menus and sub menus, and also dynamic pages. I have these tables: Menu News Articles Gallery ContentPage (for creating content ...
2
votes
3answers
171 views

Should I Put An XML Blob Into A Separate Table?

I'm designing a transactional table which will have a lot of records. It will have a lot of reads and writes. There will be one point at which the user uploads an XML file, and I store this in a ...
0
votes
2answers
123 views

A table with many null value vs 2 separate tables

I have a table (X) with with 10 columns, 6 of which are nullable foreign keys (bigint data type) and in every row 5 of them will be NULL. SOLUTION: Divide table (X) into 2 tables: (X) and (XType) so ...
1
vote
1answer
85 views

Create a summary table with MS SQL 2008

This is how I create a summary table in MySQL, how can I do the same thing in MS SQL 2008? The idea is to create a summary table that only has dates (not time), and has summed the kWh for each meter ...
4
votes
1answer
90 views

Alternatives to FK SET NULL design that causes cycles [duplicate]

Possible Duplicate: Foreign key constraint may cause cycles or multiple cascade paths? I have a database of contact details that contains four primary tables: Organisations Departments ...
1
vote
2answers
127 views

When is a SQL Server foreign key table too much?

When I have the below two tables, would the StatusTypes table be considered as overkill? i.e. is there more benefit to using it than not? In this situation I don't expect to have to load these ...
0
votes
0answers
296 views

How to design/create rules table with criteria in SQL Server 2008

I don't have much experience with SQL Server and I'm pretty much lost when it comes to anything more advanced than simple INSERT/SELECT statements. My task is to create table which hold 'criteria' ...
0
votes
0answers
66 views

How to add rows in between rows in edit 200 mode in SQL Server 2008

I am new to SQL and I am stuck in my project for sql part while working on one task. I know it can be done with less effort. Apologies If I am asking simple thing. Here is scenario: I have table ...
-1
votes
1answer
144 views

Best practice when deleting records from a database

What is the best practice when deleting records from a database? For example, if you have got this online booking tours application. You have a tour table with a record to be removed, but the tour ...
1
vote
1answer
163 views

Database designing for a bug tracking system in SQL

I am an ASP.NET developer and I really dont do such of database stuff. But for my open source project on Codeplex I am required to setup a database schema for the project. So reading from here and ...
0
votes
0answers
38 views

DB with multiple connections to different tables or just once connection

I have posted a few questions on this before and since then I have had to change my code because I was not processing data fast enough. I have about 2 years coding experience and I need to get this ...
0
votes
2answers
223 views

multi client database design : is separation by schema a good design?

I am designing a multi-client database (think SAS) in SQL server 2008 R2. During my research in this forum I found that segregating cient data using different database is preferred in the long run ...
0
votes
2answers
74 views

One table with redundant data in one column vs Multiple tables

I have a scenario wherein I have users uploading their custom preferences to the conversion being done by our utility. So, the problem we are facing is should we keep these custom mappings in one ...
-1
votes
2answers
71 views

How to generate the mapping table in a many to many insert

I have a table of trades for Companys in an exchange. So for a given day I can have many trades for a company. I now want to take these trades and group them into positions. A trade can below to many ...
0
votes
0answers
67 views

Bug Tracking How to design Project Access in Sql Database schema

I am working on a small open-source project on Bug Tracking. I am a little confused on something which I need help with. I have two tables, one is Users and other is Projects. Users UserId ...
2
votes
2answers
36 views

Creating a view that contains a view - performance hit?

When composing a view - should I stick with the base tables or can I feel confident that including a view within a view will not hurt performance. I want to include the view because it would allow me ...
0
votes
1answer
61 views

what is the risk of using sparse columns instead of normal relational tables?

I have three table that related to one table,in my new design I want to replace the relationship by using sparse columns. you Can see diagram below. I know I would have Redundancy.but i want to ...
0
votes
2answers
58 views

Table design with joining tables or separate ID in main table

I'm designing a database that has a couple of tables; FAQ's, Bulletins, and Attachments. Bulletins and FAQ's could have an attachment associated with them, so my initial thought was to create a ...
2
votes
2answers
79 views

Is it a good idea to add a table with only one column (an auto incremented identity)? [closed]

I'm developing a multilingual web application and I'm having some difficulties deciding what would be the best way to handle a particular scenario in the database (SQL Server 2008). Let's say users ...
0
votes
1answer
127 views

Storing distance matrix as VarChar(Max) in SQL Server database

I'm developing a fleet scheduling application and look for an effective way to store distances between geographic locations. The application-code accesses the matrix as a two-dimensional array ...
0
votes
1answer
63 views

Find efficient way of joining tables

Here is the problem: We have 3 tables (MS SQL 2008 R2): Table 1 FILMS (table with films) Table 2 Songs (table with songs) Table 3 Titles Since “Films” and “Songs” can contain more than one title ...
0
votes
2answers
48 views

How to accomodate a database for 2 unique identifiers?

I currently have a table that has an IDENTITY field. The field is declared as an INT type. The problem is that I have some new unique values, but they are not INT, they are alpha-numeric, so I can't ...
0
votes
1answer
165 views

What columns to include on filtered index?

Let's say there is a table called T1 CREATE TABLE T1 ( GID INT NOT NULL, Attrib1 BIT NOT NULL, Attrib1Date DATE NOT NULL, Attrib2 BIT NOT NULL, CONSTRAINT PK_T1 PRIMARY KEY (GID) ) Now, ...
0
votes
1answer
75 views

Table design for Holiday with alternate working day

I have a table design for Holiday list. if any illegal holiday comes (say All India bundh) we need to give altenate working day. how to design the table for alternate working day? SELECT [HolidayID] ...
1
vote
1answer
109 views

Using bit datatype as part of composite primary key, good or bad?

I just wanted to check if using column of type of bit (SQL Server 2008) and a guid to form a composite primary keys is bad practise or not. i.e. id1 (GUID) pk id2 (GUID) pk id3 (int) pk isTrue (bit) ...
0
votes
2answers
127 views

SQL Server DB size - why is it so large?

I am building a database which contains about 30 tables: The largest amount of columns in a table is about 15. For datatypes I am mostly using VarChar(50) for text and Int og SmallInt for numbers. ...
0
votes
2answers
222 views

Database design for hierarchical department structure

I am trying to develop a database to store and retrieve dynamically created hierarchical department structure. Each department can have a set of child departments or a set of child attributes but can ...
0
votes
2answers
247 views

SQL Server 2008 change tracking and primary keys

I needed to set change tracking in sql server 2008 table to true but it gave an error that the table has to have a primary key Is there a way to enable change tracking without setting a primary key ...

1 2 3 4 5 6