Tagged Questions
The rdms tag has no wiki summary.
2
votes
1answer
116 views
Should I use NoSQL instead of MySQL?
I'm using PHP to develop web applications. I've used MySQL as my RDMS. For many things an RDMS works, and many problems can be solved by normalization, among other things. But some situations just ...
2
votes
2answers
95 views
Basic set-based operaions using a document database (noSQL)
As with most, I come from and RDMS world trying to get my head around noSQL databases and specifically document stores (as I find them the most interesting).
I am try to understand how to perform ...
2
votes
4answers
3k views
Auto generate key on JDBC insert in SQL Server
Is there a general, cross RDMS, way I can have a key auto generated on a JDBC insert? For example if I have a table with a primary key, id, and an int value:
create table test (
id int not null,
...
1
vote
4answers
146 views
Storage engine for specific case
What database can you recomend for such case:
Very lot of inserts and updates
Sophisticated queries (SQL or something like it)
Lot of data, but small amount of frequently accessed (can be in memory)
...
1
vote
1answer
321 views
Best free database management system for beginners (with capability for 20gb DB)
I'm trying to "open" (?) a 20gb database with a .sql extension and can't find any documentation for beginners that doesn't already assume database access. I think as a first step I need some database ...
1
vote
2answers
486 views
.Net 4.0 Memory-Mapped Files verses RDMS Storage
I'm interested in people's thoughts comparing storing data in a traditional SQL based Database or utilising a Memory-Mapped File such as the one in the new .Net 4.0 runtime. The data in question ...
1
vote
3answers
608 views
Database design issue - multiple scores in different categories
Say I have a database of clothing products. In addition to many other fields, the database needs to store ratings (marks out of 10) on different categories for each product.
For example, one ...
0
votes
1answer
64 views
Application Features Persistence Alternatives - NoSQL or a RDBMS?
I'm making a system with some features of a social network. And I want to know what your thoughts on the persistence technologies that best apply to certain features.
Let's take three basic features ...
0
votes
1answer
45 views
Daemonless Relational Database Management System
Does anyone know of a Java compatible Relational Database Management System, like Microsoft Access, that doesn't require a server side daemon to manage concurrent IO?
0
votes
1answer
324 views
Connecting to DBMS server via iOS
I have to connect to a RDBMS (locally and remotely) via iOS. I have seen the solution ( http://odbcrouter.com/ipad), but for that we have to buy a server side program to run but its very expensive and ...
0
votes
1answer
308 views
Challenge!! Example of a valid 4th normal form relation that can perform 5th normal form decomposition
According to my professor in Intro. to Database Theory, there are NO examples in exisitance to show when this occasion would arise which seems a little bizarre considering its a specific part of the ...
0
votes
1answer
124 views
Storing News in a Distributed DB vs RDBMS
Hi all: If I am storing News articles in a DB with different categories such as "Tech", "Finance", and "Health", would a distributed database work well in this system vs a RDBMS? Each of the news ...
-1
votes
1answer
35 views
Searching for a solution of high load access logging for PHP
I'm searching for a high accessing logging solution.
My "table" has this structure:
| ID | Hits | LastUsed
______________________________________
| XYNAME | 34566534 | LastUsedTimeHere
...