Tagged Questions

5
votes
9answers
192 views

Writing a C# desktop application that needs to embed an encrypted database. What type of database should I use?

Hey SO'ers, I'm making a C#/WPF app that needs to access a number of tables to generate some of the xaml code I will use in the app. The tables will also contain some floating poin …
0
votes
3answers
38 views

SQL design for survey with answers of different data types

I am working on an online survey. Most questions have a scale of 1-5 for an answer. If we need to add a question to the survey, I use a simple web form, which does an INSERT into t …
1
vote
4answers
103 views
+550

Can I set up a filtered, star-pattern database replication?

We have a client that needs to set up N local databases, each one containing one site's data, and then have a master corporate database containing the union of all N databases. Ch …
2
votes
9answers
151 views

How to best implement a 1:1 relationship in a RDBMS?

Yesterday while working on a project I came up on a peculiar 1:1 relationship which left me wondering - how to best implement this (clearly, we had done it wrong :D) The idea is t …
0
votes
0answers
12 views

MySQL: Has anyone used the TokuDB storage engine?

Has anyone used the TokuDB storage engine for MySQL? The product web site claims to have a 50x performance increase over other MySQL storage engines (e.g. Innodb, MyISAM, etc). He …
0
votes
2answers
26 views

app engine and data caching (looking for a data solution)

I've just started playing with Google App Engine using php via Quercus. I'm not going to be moving my complete app over to app engine, but am thinking of serving up some widgets a …
0
votes
2answers
40 views

What are the Different types of Keys in RDBMS ?With example..

difference is very good to know?
3
votes
4answers
132 views

Moving away from MS SQL Server to open source RDBMS

So I'm an MSSQL guy and I have been for a while because it's what I've always used in my workplaces. So when I create a new project I'm usually inclined to just grab a copy of SQL …
1
vote
1answer
47 views

What is the difference between column-oriented and row-oriented databases?

What are examples of column-oriented DBMSs? Is there any difference in querying (do both use SQL?)? Performance? Data modeling? When and why should I use one over the other?
1
vote
4answers
101 views

Is there a benefit to storing street address data distinctly instead of just as a string?

Currently we store our address data like so: string suiteNumber (ie. unit number) string streetNumber (building number) string streetName string streetDirection (N/NW/S/etc.) stri …
4
votes
1answer
41 views

How to divide responsibility between LDAP and RDBMS

I'm a lead developer on a project which is building web applications for my companies SaaS offering. We are currently using LDAP to store user data such as IDs, passwords, contanc …
0
votes
1answer
65 views

Why don’t the mainstream DBMSs have graph functionality?

Relational databases are frequently used to store graphs in all their many flavors (trees, directed graphs, undirected graphs, ...). Why then do none of the major DBMSs (Microsoft …
2
votes
6answers
219 views

Why aren’t OODBMS as widespread as RDBMS?

Why are relation databases more common than object-oriented databases? If the Object Oriented Programming paradigm is so widespread, shouldn't we see lots of OODBMS? Wouldn't they …
0
votes
9answers
77 views

Database “pointers” to rows?

Is there a way to have "pointers to rows" in a database? for example I have X product rows, all these rows represent distinct products but many have the same field values except t …
1
vote
7answers
88 views

How universal is the LIMIT statement in SQL?

I'm in the process of generalizing a Django DB replication app and it uses the statement: SELECT %s FROM %s LIMIT 1 to fetch 1 row and use the Python DBAPI to describe the field …

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