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.

learn more… | top users | synonyms

0
votes
0answers
6 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
7 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
19 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
62 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
53 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 ...
0
votes
0answers
24 views

Partitioning MySQL for “expired” transactions to improve performance [migrated]

I am dealing with an existing application that uses the database as a sort of transaction log in several cases, for example orders or payments. These tables are large (20 - 60 million rows) and poorly ...
1
vote
1answer
58 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
35 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.
1
vote
2answers
38 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
21 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
65 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
22 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' ...
-2
votes
0answers
59 views

Best choice moving from RDBMS to NoSQL database [closed]

Probably a question many are asking as they consider NoSQL alternatives to their aging RDBMS based systems. I am looking for the best NoSQL alternative to replace a series of relational databases ...
1
vote
1answer
99 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
50 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
30 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. ...
0
votes
0answers
19 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
26 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
54 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
63 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
21 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
40 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
29 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
43 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
34 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
43 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
47 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
10 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
28 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
30 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
64 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
120 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 ...
-1
votes
3answers
54 views

Some problems in the creation of MySql tables in a PHP script [duplicate]

I am trying to install a php script for the statistic on my server. This script use MySql as database. The problem is that, when I try to install it, seems that can't create the tables in the ...
0
votes
0answers
16 views

Is a table with only 2 columns in 3NF is always in BCNF?

Is a table with only 2 columns in 3NF is always in BCNF ? What about a table with 3 column that is in 3NF ? I need some example with the answer to understand.
2
votes
1answer
107 views

Plain Java persistence and JavaFX presentation layers: approach for class design?

Another novice question. I have an RDBMS table called Services that is declared like this: CREATE CACHED TABLE Services ( serv_id BIGINT GENERATED ALWAYS AS IDENTITY (START WITH 100) ...
-2
votes
1answer
74 views

Is Oracle Database 10g/PL-SQL a good choice as the first RDBMS & query language to learn? [duplicate]

I have decided to go for it as I have it on my computer,but since I am totally new to databases,I want you to confirm if the choice is as good as others.I don't want to be in a situation where I spend ...
-4
votes
1answer
60 views

Where can beginners run their SQL code?If it's a PL,then why it doesn't have a compiler? [closed]

I am totally new to the subject of databases and I have only theoretical knowledge about it.I want to run the SQL commands I read about but totally clueless where to run it.The definition says SQL is ...
0
votes
1answer
62 views

Database with 14 discrete fields - structure (SQLite android)

I'm not sure how to build a database for a form where I have 14 fields with 5 possible fixed answers in each field. Record number may typically vary between 30 - 200 records during runtime. Any more ...
4
votes
2answers
89 views

Is SELECT WHERE [primary key] = [primary key value] O(1)?

Is it right to expect that, for the typical modern RDBMS, querying by one specific primary key is as fast as querying a hashtable by key? Or is there "actual work" done to traverse the table and ...
0
votes
0answers
44 views

Choosing & using an aggregate object for nosql database

Use Case i am building a control panel for an adserver for advertisers,publishers and partners. Requirements Handle a log data getting bigger 500.000 rows daily. Handle 2000+ customers Handle ...
0
votes
1answer
25 views

multivalued attributes in database of transaction

I want to make software for one of local store. I am making table of transaction which have attributes tran_id, name ,mob_no, date_of_sale, ...
1
vote
0answers
44 views

Choose a document oriented database or a relational database for our project? [closed]

Some information about our project: We want to develop an SaaS E-Appointment-platform. Service providers (doctors, hairdresser, whatever) get the possibility to manage their appointments. Customers ...
0
votes
2answers
53 views

What is the relationship between keys, indices, primary keys and clustered keys in RDBMS? [closed]

I am pretty confused about these terms in RDBMS: Keys, and indices: Are they the same concept? For example: CREATE TABLE FOO_TABLE ( THE_KEY INTEGER PRIMARY KEY FOO INTEGER NOT NULL, BAR ...
0
votes
2answers
20 views

Why Should one define his own procedure/function while using a DBMS?

This might be an odd question but I've been wondering, if a database is well architected, why should one define custom procedures/functions ? What are those functions/procedures for ? I think I could ...
1
vote
5answers
54 views

How to avoid SQL statements spreading everywhere in your app?

I have a medium-sized app written in Ruby, which makes pretty heavy use of a RDBMS. As our code grows, I found the ugly SQL statements are spreading to all modules and methods in my app and embedded ...
0
votes
1answer
30 views

RDbms name and version

I m doing a software in c++ that permit to access to some rdbms with qt library. The software is only for pc. The software need to know the name of rdbms and version beacuse the program needs to ...
2
votes
2answers
101 views

JPA vs JDBC vs NoSQL for MMORPG

We are developing a 2D MMORPG space shooter using Libgdx/Netty and we've faced a question we can not resolve concerning the data. If we use JPA and RDBMS we can achieve the ACID and ease the data ...

1 2 3 4 5 17