Tagged Questions

1
vote
5answers
259 views

Building app to Classify / Describe Products - Overwhelmed somewhere between planning & execution

Greetings! I recently started working for a company that carries a line of 20,000 Surgical Instruments. Our data on all items is currently spotty and chaotic at best. I intend to fix this. I have …
1
vote
8answers
59 views

Table with unknown number of columns

We're in the process of designing a tiny database that will contain data regarding our software's usage. So in our programs/websites we will call a little service that logs some data regarding the …
8
votes
17answers
386 views

Using [0,1] versus [”Y”,”N”] versus [”T”,”F”] in a logical/boolean database field?

Just out of curiosity and lack of a definite answer... I was just looking at some data that is sent from a 3rd party to us, and their "Gender" field is a [0,1] denoting either a Female (0) or a Male …
1
vote
1answer
56 views

How do I represent workday shifts in a database?

I have some business data I'm trying to model in a SQL Server database. I'll try to break it down with approximate counts to aid in discussion: I have 1000 resources. Each resource has an average …
0
votes
5answers
77 views

Are bad data issues that common?

I've worked for clients that had a large number of distinct, small to mid-sized projects, each interacting with each other via properly defined interfaces to share data, but not reading and writing to …
0
votes
2answers
20 views

Database Design: Internationalization of user-generated content (comments, posts…)

Hi there, Let's say I run a website giving the oportunity to users to put content online (some comments for ex...) and that I run this website under several languages / countries (locale). In …
1
vote
0answers
24 views

How would a “NOSQL” database be designed for consumer apps (e.g. social bookmarking)

I've been reading up on a lot of posts about non-relational databases, the whole NOSQL movement, and there's a lot of fresh new activity around it. It seems like a very interesting approach to …
0
votes
1answer
12 views

unique constraint check based on a parameter in the parent table

Table User has (userId, scoreType, ...) @Table(name = "User", uniqueConstraints = @UniqueConstraint(columnNames = userId)) -- scoreType could be either points or percentage Table UserScore …
0
votes
1answer
19 views

Multiple DB Platforms For A Single App

is it generally acceptable to store relational data in an rdbms like mysql, and place, lets say, arbitrary relationship data in a separate graph database system like neo4j? what about primary keys …
3
votes
4answers
140 views

Practical limits of SQL-Server database.

I am setting up a database that I anticipate will be quite large, used for calculations and data storage. It will be one table with maybe 10 fields, containing one primary key and two foreign keys to …
0
votes
3answers
42 views

Database structure of multi-lingual site

I need database structure for storing versions of site's content in different languages. Right now I'm doing it like this: [Item] Id SomeColumn [ItemStrings] ItemId LanguageId Title …
1
vote
1answer
27 views

strategy to filter data according to user access level

we currently have a very simple security schema... we have resources, that roughly maps to tables, we have access to that resources (add, modify, delete, query) and we have groups. each permission …
1
vote
4answers
88 views

Choosing where to attach a foreign key between two tables?

I have a purchase order table and another table to contain the items within a particular purchase order for drugs. Example: PO_Table (POId, MainPharmacyID, SupplierID, PreparedBy) PO_Items_Table …
0
votes
4answers
37 views

SQL SUM() function field

I have a database which contains some numerical fields; now i want to create another field which displays the sum of one of these fields. How can I create that field? thanks
0
votes
1answer
18 views

Problem with FluentNhbernate Mapping

Hi, I am new to all the OOP and ORM stuff, so i would appreciate your help... I have a Team Class: public class Team : IEntity<Team> { public virtual int ID { get; private set; } …

1 2 3 4 5 112 next
15 30 50 per page