A relational database management system (RDBMS) is a database management system (DBMS) in which data is stored in tables and the relationships among the data are also stored in tables.
0
votes
1answer
18 views
Having data stored across tables representing individual data types - Why is it wrong?
Say I have lots of time to waste and decide to make a database where information is not stored as entities but in separate inter-related tables representing INT,VARCHAR,DATE,TEXT, etc types.
It would ...
0
votes
2answers
52 views
SQL JOIN vs. multiple SELECT statements
Every developer working with databases has this problem.
And often you can not estimate how many records a table will have in x years.
LEFT JOIN vs. multiple SELECT statements
performance - single ...
0
votes
0answers
21 views
Performance of RDBMS vs file system using multiple search keys
I have an 8 GB file consisting of roughly 30 million US address records. I need to perform fast queries on these records for address matching purposes. Splitting this file into files containing unique ...
0
votes
0answers
16 views
SQL Server automatic transaction log truncation [migrated]
Have looked through msdn but cant find answers to these:
Any help much appreciated:
In simple recovery mode:
Is there any TSQL or alternative functionality that will provide a notification either ...
0
votes
0answers
36 views
MySQL stopped accepting writes
I'm a beginner in MySQL and would like to know is it possible that MySQL locks the table for writes? And if yes how to avoid this.
My current situation is I'm trying to wtite data to MySQL table ...
0
votes
1answer
44 views
Neo4j vs (Neo4j + Postgres)
I am developing an recommendation engine and was thinking of saving actual data (email, name, password, etc) in Postgres and saving relationship in Neo4j. But was wondering if this gives any advantage ...
0
votes
2answers
25 views
Does SQLite's VACUUM preserve key relations?
PRAGMA foreign_keys is enabled.
Table foo has no explicit INTEGER PRIMARY KEY.
Table bar has foo_rowid INTEGER with FOREIGN KEY (foo_rowid) REFERENCES foo(rowid).
Row f in foo has a rowid of x and ...
0
votes
2answers
23 views
MySQL: Produce a list of people that have more than one item
Say I have a table of people...
person:
-----------
id | person
---+-------
1 | Jim
2 | Bob
3 | Frank
...and I have a table of items...
item:
----------------
id | item | type
---+------+-----
...
0
votes
0answers
12 views
How to mix relational database and APIs?
Suppose your data is (more or less) the union of relational data and data from (RESTful) APIs. There are probably a lot of problems arising, first of all: Foreign keys for some tables are becoming ...
2
votes
0answers
38 views
In Memory Database for high transaction and volume spikes on a website [closed]
I am looking at the IA for a hypothetical application scenario, for example:
A high demand application such as an online ticketing website where there can be demand for 100,000 tickets to be ...
-3
votes
1answer
48 views
How can I get 20 users and 5 articles from each user? [closed]
Users can have many Articles.
I want to get 20 of the most recent users and for each user, 5 articles.
I was reading on http://wiki.postgresql.org/wiki/Find_recent_activity but this seems overly ...
-1
votes
1answer
32 views
Best way to store large demographic datasets
I need to store a lot of demographic data that I am collecting for my research in database. I am trying to find out what would be a good solution to store data such as this:
...
0
votes
1answer
42 views
Single table inheritance, EAV or NoSQL?
I'm looking for a good sane approach for my application's data model.
Most threads focus on e-commerce products and my scenario is somewhat different.
The goal is storing received items from ...
0
votes
1answer
25 views
What is the disadvantages of star schema?
What is the cons of using the star schema in database design for big data?
Is the large size of fact table is a problem? Or we can consider that the disk space is cheap and and large size of the fact ...
0
votes
0answers
29 views
Optimizing a Directory Structure on the File System ( referenced through database )
After searching around for a while regarding the consensus over how to handle multimedia content for website (using native fileSystem or Database blobs), mainly here:
MySQL Binary Storage using BLOB ...
0
votes
0answers
26 views
Finding original codd rules
I've been cruising the web on the subject of Codd's 12 rules for a long time now. I've read what amounts to about 50 articles and hundreds of posts on the subject. If you compare the rules from all ...
0
votes
2answers
70 views
Why RDBMS can't scale-out and Why Nosql is not good for transactions [closed]
Sorry I'm new for database. Sorry for my stupid question.
Yes, someone told me that because RDBMS have ACID. Beside that when
Scaling-out mean that tables are partitioned and it hard to join
and ...
0
votes
1answer
12 views
Data storage solution for a Build Server
I'm drafting a proof-of-concept build server and what got me thinking is how to store all the data it produces. For example, I'd like to store
Unit test results: which tests were run, how much time ...
0
votes
0answers
10 views
Entity-Relational Diagram Roles
In ERD roles that
strong text*Entity sets of a relationship need not be distinct*strong text
What is meaning ?
0
votes
0answers
12 views
What is the best way to model a row with an indefinite number of ordered foreign keys?
I am working on an application that will allow users to proofread texts via a web interface. The user will be able to correct errors in the text and submit the results back. Multiple users will be ...
1
vote
2answers
22 views
can a multi column fk reference multiple tables?
I have 3 tables
part, build, & buildpart
buildpart is m:m.
I was wondering if i could include the two columns of buildpart that are referencing part & build respectively in a single fk & ...
0
votes
1answer
69 views
Error in writing dynamic query in MySQL
I am new bee at RDBMS, I want to get a row from one of the five tables and the name of table is value of one of the fields of another table. So I am trying to store the value in one variable from one ...
0
votes
1answer
62 views
Is it a bad idea to maintain a separate login sessions in MySQL and Code Behind?
I have an application with C# code behind, which maintains a session state and has a value set for timeout and some redirect on session timeout logic in place.
Additionally, I have a MySQL ...
1
vote
1answer
62 views
how to strip XML data
<ps>
<p pdid="47" pv="x@xx.net" />
<p pdid="49" pv="07827100000" />
<p pdid="57" pv="dfdfdf Armstrong" />
<p pdid="29" pv="[(null)]" />
<p pdid="1" ...
0
votes
2answers
39 views
Which is better in performance client side joins or server side joins
If I have 2 tables employee and department
1) to join data at the server side
SELECT * FROM employee CROSS JOIN department;
we use only one connection here to grab the data
2) to join data at ...
0
votes
0answers
17 views
Database events log or history
I want to ask: -
What is Database events log as a concept ? and using for what ?
Any example of event log and what store inside it.
2
votes
2answers
64 views
Difference between Primary key and Candidate key
I have read about Keys in RDBMS.
http://stackoverflow.com/a/6951124/1647112
I however couldn't understand the need to use a candidate key. If a primary key is all that is needed to uniquely identify ...
1
vote
1answer
23 views
Historical Databases in RDBMS
What is Historical Databases in RDBMS ?
I don't found any material in Internet that explain in concept the Historical Databases in RDBMS
So can any body explain to me that or give me any link ...
0
votes
2answers
96 views
comment system rdbms vs nosql
What is the best way to implement a commenting system (huge data writing)?
1) Use a RDBMS database such as MySQL, 2 tables one for the topics and one for the comments
Pros is that the insertion of ...
0
votes
1answer
34 views
What are Sqoop's dependencies for?
These are dependencies of Sqoop 1.4.2 (libs inside sqoop/lib):
ant-contrib-1.0b3.jar
ant-eclipse-1.0-jvm1.2.jar
avro-1.5.3.jar
avro-ipc-1.5.3.jar
avro-mapred-1.5.3.jar
commons-io-1.4.jar
...
0
votes
2answers
25 views
How to store the results in table?
I have a one table A and that contains values
NAME AGE
Loga 18
Anitha 20
Saranya 13
I was test the table values like if condition using case statement case when AGE>=18 then 'major'
...
1
vote
1answer
102 views
How to improve performance of this query?
With reference to SQL Query how to summarize students record by date? I was able to get the report I wanted.
I was told in real world the students table will have 30 Millions of records. I do have ...
-1
votes
1answer
78 views
Extendible hashing for file with given search key values for records
I know that SO might be the wrong place to look for answers to questions such as these, but at the moment I need the answer and how to work it out step by step urgently.
Suppose that we are using ...
0
votes
0answers
58 views
java.sql.Connection.TRANSACTION_READ_COMMITTED - any API for OPTIMISTIC/PESSIMISTIC policy?
I need to accommodate a DIRTY_READ intolerant use case.
Most data server products provide a native SQL mechanism to set the transaction READ_COMMITTED's locking policy as either OPTIMISTIC (i.e. ...
1
vote
0answers
22 views
Suggestion for a way to design a document changes, versioning and merging database
I'm tasked to develop a web application that track document changes, versions and merges. The following are the details involved:
Agency / Organization details
Legislation details
Document details ...
0
votes
1answer
35 views
Do cross-database joins additionally hurt performance?
If I have the following RDBMS with the following databases and tables:
pets_database
dogs
cats
bunnies
wild_animals_database
bears
wolves
cheetahs
If I have a query that ...
0
votes
2answers
71 views
What is the advantage of READ COMMITTED over READ UNCOMMITTED in Database Isolation level OR Why Dirty Read is considered so bad
I think choosing an Isolation level for a trasaction depends on the nature of transaction. But as far I have seen it is always advised to avoid (or say 'restricted') using READ_UNCOMMITTED. Most ...
3
votes
4answers
71 views
SQL - Grouping results by custom 24 hour period
I need to create an Oracle 11g SQL report showing daily productivity: how many units were shipped during a 24 hour period. Each period starts at 6am and finishes at 5:59am the next day.
How could I ...
1
vote
1answer
22 views
Query Handling Sql Server
Please help me regarding query. I am pretty weak in DBMS.
I have a table TBLParent which has some rows as follows
pkParentId FKProductId Name
1 5 P1
2 ...
1
vote
1answer
49 views
Why is an RDBMS bad to store a considerably big graph?
I started using a graph database to store a big graph that im generating. But im not convinced as to why to use a graph database to do my job, and why not do what i want with a conventional RDBMS. My ...
0
votes
1answer
31 views
What constitutes a user in Oracle (and in DBs in general) in relation to transactions?
I usually see references to locks being held by a user. Does this mean a single connection, all logged in connections by a user account, etc...?
How does this apply to Oracle and DBs in general?
If ...
0
votes
0answers
46 views
Wrap an RDBMS scheme inside a RESTfull API
This is a general question on how to implement a Relational DB Scheme inside a RESTfull API so you can use it along with a Javascript Framework, say Backbone.js
If i had a Many-To-Many relation ...
1
vote
1answer
52 views
MySQL Global Triggers for a connection
Is it possible to create a trigger that will listen for any insert or update for one database connection/instance (all schemas)?
Here is my business case:
I have multiple schemas on one MySQL ...
0
votes
0answers
48 views
Unable to map 1:N Unidirectional relation using JDO
I need to map 1:N Unidirectional relation using JDO Annotation (DataNuecles). I'm having a pre-defined database.
Relation is, 'User' can have a Set of 'UserDescriptions'. I already having two tables ...
0
votes
1answer
69 views
Can Sqoop export create a new table?
It is possible to export data from HDFS to RDBMS table using Sqoop.
But it seems like we need to have existing table.
Is there some parameter to tell Sqoop do the 'CREATE TABLE' thing and export data ...
0
votes
1answer
16 views
How do i temporarily delete records from my Database?
How do i design my Database( using DDL & DML statements), wherein i have some records in Table 'A', and i want to delete a record, furthermore, i wanna recover that deleted record into the same ...
0
votes
0answers
38 views
There is any cloud storage provider like dropbox built in relational database system? [closed]
There is any cloud storage provider like dropbox built in relational database system and not in NoSQL?
0
votes
1answer
36 views
Data access abstraction with Hibernate [closed]
Folks, we are developing a game server in Java. First there was JPA/Spring Data/Hibernate, then we've given up (thanks god) and we decided to use Hibernate directly. At this point I can say we are not ...
0
votes
1answer
70 views
Database Relationship Transaction and Reference Table
Hi I have some questions regarding what i'll do with foreign data if deleted
i have: a transaction table and it has foreign keys to user and branch
so if a delete a user thats being referenced by ...
3
votes
5answers
127 views
Fastest way to find distinct matching records
I have two tables A and B. Both have same structure. We find matching records between these two. Here are the scripts
CREATE TABLE HRS.A
(
F_1 NUMBER(5,0),
F_2 NUMBER(5,0),
F_3 NUMBER(5,0)
);
CREATE ...




