A relational database is a database consisting of relation variables (which are also called *relvars*, *R-tables* or just *tables*). The definition, manipulation and integrity rules of relational databases are based on relational operations equivalent to or similar to the Relational Algebra and ...

learn more… | top users | synonyms

0
votes
0answers
12 views

Which of these Database Designs For Role Permissions is better?

I'm new in database designing. I'm not sure which schema is more convenient and efficient to use? Model 1 Model 2 Admins of each group in the social network are able to define several ...
0
votes
1answer
15 views

Relational database show fields from different tables in view, rails

I have 4 tables, customer, customer_site, site and connection. customer and site have many customer_sites and a site has many connections. This has all been set up in my models. Now i'm trying to have ...
0
votes
1answer
23 views

Saving Many-Many In The Assignments Table Yii

I know that this is a battered topic but, I am a complete newbie and I have been trying to get my head around this problem for quite a while now but haven't been able to get it. I have two tables : ...
0
votes
1answer
24 views

Does Rails 3.2+ require a join table *in addition to* declaring the has_and_belongs_to_many relation?

I have a number of many-to-many relationships in my app. I do not need to store information about the relationships themselves, so am using the has_and_belongs_to_many relation in my models. I've ...
0
votes
1answer
24 views

Operations performance analysis in logical design of relational database

In my Database project I'm doing a logical restructuring and I'm evaluating the price of the operations to detect which need improvement making an access count for every operation. However I have not ...
-1
votes
0answers
14 views

Need a simple example on time-stamp protocol in concurency control (both read and write)? [closed]

I've seen the conditions for read and write operations in this time stamp protocol but its implementation using an example will make things clear ! thanks.
0
votes
1answer
24 views

Overwrite value of the Database, independent of the

Context: Ebean, play-Framework, Model, Optemistic Locking Is it possible to set an annotation to a value of a model, which tells ebean that it shouldn't throw a "optemistic locking exception" for ...
0
votes
1answer
18 views

Which DB for storing geolocation (coordinates) for many users and checking if they are close to each other in real time?

IOS app will send from time to time coordinates to server through REST api. On server inside DB registered users are stored with their coordinates. Each user may have many friends which he want to ...
0
votes
0answers
28 views

Repository vs. relational database

Most document repositories have version control built-in and some nice features like that. If you are storing relational data (objects related on one another), however, some repositories don't ...
0
votes
0answers
25 views

MySQL many to many relation [migrated]

Sorry is this seems a stupid question, but I have a table of server addresses and a second table with a list of hardware devices which use the addresses, it is possible for multiple devices to use the ...
0
votes
1answer
44 views

only remove 1 record from duplicated (access database)

im making a reservation system, but i'm stuck at the moment. Microsoft acces 2010 Tables: -drinks -ordered_drinks structure tables: -id, -.., -..., drinks: -id, -title, -price, ordered_drinks: ...
2
votes
1answer
25 views

Database Historical Data

How would I go about keeping track of a history of a database? I would use it almost completely for statistical purposes. For example it is easy enough to query the database to find out how many ...
0
votes
1answer
28 views

Hibernate does not create Table in the database

I am using PostgreSQL and I am trying to run a simple Hibernate application, in particular the application decribed in the page. My hibernate.cfg.xml file is: <?xml version="1.0" ...
0
votes
1answer
44 views
+50

MySQL Database Schema for role based system

We are developing a platform for NGOs (N) to get their work done via Individual Volunteers (V) or Volunteers via a Company (C) NGO An NGO can come signup for an account and create a profile. It ...
0
votes
0answers
7 views

Best model to “override” default items in a relational database?

I have a generic list of items saved in a table ITEM. I have a few relation tables for these items, for example ITEM_IMAGE (n:n), etc. Now I have to add the possibility to override items with country ...
1
vote
1answer
39 views

Pull data from multiple records into one row

I want to pull out the data from multiple records and insert them into different fields of a single record in another table. The work I am doing requires me to pull the cw_cat_total field(which is the ...
1
vote
3answers
80 views

Performance of Graph vs. Relational databases

I am working on a project where tons of graph operations are performed in near real-time. We are currently using Hibernate, MySQL and EhCache but considering moving all the graph-related persistence ...
0
votes
1answer
22 views

How Can implement FriendShip with CakePHP Model?

In the CakePHP Documentation they implement this as below !! class Message extends AppModel { public $belongsTo = array( 'Sender' => array( 'className' => 'User', ...
-1
votes
1answer
14 views

A lucky draw system [closed]

I am creating a lucky draw system whereby the participants' username will be stored in either a file or a database and later one of the username will be picked as the winner. Each product has many ...
0
votes
1answer
44 views

primary key to foreign key to foreign/primary

there are tables in database like tbl_items item_id item_batch item_name (primay key = item_id+item_batch) tbl_transaction(orders)_header ordre_id employe_id date ...
1
vote
1answer
30 views

Is it well designed relational database just with one table?

I have MySQL database containing just one table, having 100 rows and 12 columns: ID (primary key), NAME, LATITUDE, LONGITUDE, TYPE, COUNTRY, CONTINENT, DESCRIPTION_PATH, STORY_PATH, PICTURE_PATH, ...
0
votes
1answer
12 views

How to invoke a stored procedure from DbUpdate Activity from the Workflow Designer

I open my rehosted workflow Designer, then I open my workflow which includes a DpUpdate Activity (for information on DbUpdate Activity you can use the following link ) ...
3
votes
1answer
44 views

Is there any such thing as a JSON Builder?

Overview I am currently faced with a situation involving scientific data with numerous one-to-many relations. The user base would like to be able to submit the data for import via a Microsoft Excel ...
0
votes
0answers
18 views

Doctrine 1.2 query and sort multiple joined relations using one DQL

Using Doctrine 1.2, is it possible to sort and limit each relation independently using one single DQL? Suppose there is a table named Person with one-to-many relationships Activity and Transaction. ...
0
votes
3answers
33 views

Grails: Delete relation Domain

I want to asked about my project. I Have Two Domain like this class Group { String Name String Description } class GroupDetails { Group group User user } My trouble is, How can if i ...
0
votes
2answers
42 views

How is a table like a mathematical relation? [closed]

I have been recently been reviewing Codd's relational algebra and relational databases. I recall that a relation is a set of ordered tuples and that a function is a relation that satisfies the ...
0
votes
0answers
23 views

[Database Design]:How to share resources among accounts?

Using google doc, I am able to share my documents with others. I wonder how they implement it underlying in terms of DB design? The simplest way I imagine is to use a joining table which keeps a ...
3
votes
1answer
52 views

Modeling a tree-like structure in db with EF

I have a huge performance problem with EF shoveling my data out of the database. Let's say I have a class hierarchy like this (imagine these are all EF generated): public partial class Container { ...
0
votes
1answer
36 views

Best approach for tracking 'end_time' value for a table with 'start_time' and 'duration' columns

I have a preexisting 'events' table that includes an event_datetime column and an event_duration_minutes column. The two columns are datetime and integer, respectively. I've recently come across the ...
1
vote
1answer
33 views

Two unstable queries performance

I'm really confused about this two queries, they are have unstable query speed. Here is my two table scheme; Posts table: (id, title, date etc...) [date index] Relationships table: (news_id, ...
0
votes
3answers
31 views

Rails: Trouble with has many through relationships

I've been having a bit of difficulty understanding the whole has many through concept and how it works in Rails, I presume it does the leg work for you, as I'm used to building the associations ...
1
vote
1answer
25 views

Difference between has_one and belongs_to on a 1 to many relationship in Ruby on Rails

The idea is that i have a table users and a table customers. Each user has many customers that are related only to them. Actually Im using this model. So every customer that will be created will also ...
0
votes
1answer
33 views

MySQL Trigger - Update relation table with extra values

What I'm trying to achieve is, I want to automate the values of the table between the users and folders table. Since it's a many-to-many relationship I created the user_folders table. Currently the ...
1
vote
1answer
23 views

Select data from two tables. one table is parent/child and I need to get the parents without a relation

I have two tables products id | catID | UID -------------------- 1 | 3 | 3 categories id | cat_name | parent -------------------------- 2 | XYZ | 0 3 | abc | ...
1
vote
1answer
30 views

Sharing databases between web applications design pattern

I have several different web applications with their own separate databases. All of these different web applications also use a common database for authentication which contains the list of all of my ...
-1
votes
2answers
27 views

Relational database one to many relation

I am using Access to create a database. I have two tables with the following data. Car CarID - PK CarName CarPrice CustomerID Customers CustomerID -PK Username Password CarID I wish to have the ...
-2
votes
0answers
30 views

Product database design for relations [closed]

We're trying to design a database and system for products. We have a products table: Products_table ProdID|OtherInfo We have a supplier table. Supplier_products_1 ID|Price|OtherInfo ...
0
votes
2answers
55 views

Why does a Derby database take up so much space?

I am new to databases and I love how easy it is to get data from a relational database (such as a Derby database). What I don't like is how much data one takes up; I have made a database with two ...
1
vote
0answers
25 views

How to safely provide free query access on an open database

Background: My state government has a website that provides financial data in the name of "government transparency", but I'm quite unhappy with the way it is presented. It's an awkward old-fashioned ...
1
vote
1answer
26 views

How should I model the database schema to accomodate many dependent columns with flexibility to easily add new ones?

I have a relational database where I'm storing Seller information in a table called (naturally enough) Seller. In that table, I have a column called industry. I also have many attributes about the ...
0
votes
4answers
45 views

MySQL - turning data points into ranges

I have a database of measurements that indicate a sensor, a reading, and the timestamp the reading was taken. The measurements are only recorded when there's a change. I want to generate a result ...
-2
votes
0answers
58 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 ...
0
votes
2answers
53 views

Create table whose columns properties are rows of another

First of all please do not mark this as duplicate as I am not asking for selecting but for a new table creation. To be more clear I have a table like: CREATE TABLE Attributes ( Col_Name ...
0
votes
1answer
14 views

How to select from separate subclasses' tables?

I have a pretty simple database. The idea is that Student and Teacher both inherit from "Person" which is made of id and name. create table Student ( id int, name text, year int ); ...
-1
votes
0answers
19 views

Data migration and consolidation best practices? [closed]

You have multiple similar but not identical sets of relational data and need to consolidate in to one database. What are the most important considerations and are there any serious gotchas or pitfalls ...
0
votes
1answer
58 views

Generalized way to extract JSON from a relational database?

Ok, maybe this is too broad for StackOverflow, but is there a good, generalized way to assemble data in relational tables into hierarchical JSON? For example, let's say we have a "customers" table ...
0
votes
1answer
49 views

What does “Conversion of the ER diagram into a minimal set of relations” mean?

I am supposed to "Convert the ER diagram into a minimal set of relations". I have an ER diagram, not the best, but sufficient, which includes entities, attributes, relations, etc. Am I supposed to ...
0
votes
3answers
48 views

Database usage in a Java program

I have found out, from multiple sources, that object serialization is primarily for storing objects so that they could be sent across a network, to be remade. It even has to be tested: ...
1
vote
2answers
32 views

mysql - select posts all that are not tagged hidden

So I have three tables, one is posts , having columns id,title,content,timestamp . Other is tags, having columns id,tag and third posttags describes one to many relation between posts and tags , ...
1
vote
1answer
56 views

Look-up vs relationship Microsoft Access

I'm developing a Microsoft Access 2013 based information system. One of the demand of the client was is to simplify data entering process by using combobox with available values. For example, instead ...

1 2 3 4 5 39