The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
5answers
79 views

Why does this number gets detected as bool?

I'm checking if value ir between 0 and -0.2 like so: float value = -0.1; if (0 < value > -0.2f) { } But I get error operator '>' cannot be applied to operands of type 'bool' and 'float'. I ...
0
votes
0answers
16 views

POP3 client featuring a Relational Database [closed]

I'm searching for a POP3 client software which saves the incoming emails within a Relational Database. Email attachments and embedded images should be saved as normal files within the regular file ...
0
votes
0answers
28 views

EER to Relational Model - Disjoint subclass and relationships between subclass entities

I've tried searching for this but I failed to find something. That could be a problem with my search strategy, or this could just be a simple question with a simple answer. I've drafted an EER model ...
0
votes
1answer
25 views

Written forms to sql including multiple yes, no other

I am designing a database for written forms that are filled out each time a person visits an office. i already have: patient: patient_id, fname, lname, gender etc adult *patient_id*, occupation etc ...
0
votes
2answers
35 views

Relational Database emergency person + contact number?

I'm trying to design a normalized relational database where a patient has a *contact person* (person who is contacted in case of emergency). I also have a table called contact_num which takes ...
0
votes
2answers
76 views

Should I use relational database or no-sql database? [closed]

I am working on my learning project which is a job website. I am a newbie so not sure that I should use relational or non-relational database. Also I have no experience with no-sql database so its ...
1
vote
4answers
46 views

The meaning of operators >> and << in processing

In processing what is the meaning of this operator? << and >>
0
votes
1answer
61 views

SharePoint Advanced List Relations

Ok - so here's the preface. I realize that SharePoint isn't really the best solution for this, and if I have to use SharePoint, then coding this would be preferable. However, my wings are clipped ...
0
votes
0answers
24 views

knockout binding with related/heirarchial observable arrays

While what I have 'works' as is, I'm looking for more bindings that this model won't support without excessive (find) iterations through one of the arrays as I bind to my main array. ...
0
votes
1answer
70 views

Better to create connections between related db columns using 'Index' or using a query?

I'm wondering what would be the best way to create connections between related db columns - in a query or by using Index? I know that the primary concern with using Index is performance speed, and I ...
0
votes
0answers
72 views

How to convert this SQL to Relational algebra

I've got the following query which I'm trying to convert into relational algebra: SELECT B.staffID FROM Rooms R, RoomBookings B WHERE R.buildingName = ‘London' AND B.year = '2012' AND R.roomNumber = ...
0
votes
1answer
94 views

Specify range for textfield in java applet

This is the code which i had posted: import java.awt.*; import java.awt.event.*; import java.applet.*; /* <applet code="front" width=500 height=500></applet> */ ...
0
votes
1answer
60 views

Relationship between entity and relation in ER model and relational model?

Can I set a relation between an entity and a many to many relationship on ER model? If so, how do you represent it? I read ER data model (connecting 2 relations) this but it just speaks about ...
1
vote
1answer
56 views

Database Design NBA

I am new to database design so sorry if this is obvious beginner question. I use python and sqlalchemy though I don't think that is relevant (the sample code below is psuedo code), though may be ...
0
votes
1answer
33 views

Free relational DB to output query in JSON

I realized some data stored on a DB, accessed by a site I developped, would be more effective if they were turned into Json files - avoiding acessing the db itself(I pay per API call!). The data ...
0
votes
1answer
139 views

parse.com cloud nested functions

I am trying to write cloud code on parse.com for the following. I have three classes User, Brand and Campaign. I keep LastLoginTime in the User class. Brand class has a relation named Campaigns to ...
3
votes
4answers
85 views

DELETE a record in relational position in MySQL?

I am trying to clean up records stored in a MySQL table. If a row contains %X%, I need to delete that row and the row immediately below it, regardless of content. E.g. (sorry if the table is ...
1
vote
0answers
22 views

relational algebra find the top 2 values

Given the following relations, where a, b, c are integer attributes R(a, b), S(b, c). Write relational algebra expression for the following queries: Find the top 2 values of a present in R how do I ...
0
votes
1answer
42 views

General design principle for performance of OneToMany relations in relational model

I notice a pattern which seems pretty obvious now. Need to get your opinion on this. Suppose have a One To Many relationship from table 1 to table 2 in a relational model. For example table 1 could ...
0
votes
1answer
35 views

Order by on relation field using jamierumbelow's codeigniter-base-model

Is it possible to use order_by for a field from a related table? The following does not work: $this->model_m->order_by('relational_field')->with('table2')->get($id);
1
vote
2answers
111 views

SQLAlchemy Using relationship()

I am using SQLAlchemy here, trying to make a couple tables and link them and am having problems implementing this. class Team(Base): __tablename__ = "teams" id = Column(Integer, ...
1
vote
0answers
51 views

Fetching relation data from multiple related tables

I'm working on a database structure for a small game, this game utilizes 'kits' as in armor sets. Currently I have 4 tables: "kit", "kit_armor", "kit_item" and "kit_item_enchantment". The "kit" tables ...
1
vote
3answers
194 views

Logical / Relational Expression Optimization

I need to optimize an expression of the form: (a > b) || (a > c) I tried several optimized forms one of which is as follows: (a * 2) > (b + c) Optimization is not from the compiler's ...
0
votes
2answers
84 views

relational database design for multidimensional matrix questions

I am designing a relational DB for an online survey. However, I am not sure what is the best relational database design for storing multidimensional matrix questions. Let's say, I have the following ...
3
votes
1answer
116 views

SQL two tables and creating a link table

I have two tables: Employee (ID, Name, Address) and Store(ID,Address) and I would like to record information about people who work in each store. I thought of making a new table called Employee_List ...
0
votes
0answers
33 views

What are the relationships of a Relational database?

I want to identify semantics from a relational database, I'm looking for the relationships that can be represented in a Relational Database, I found the association, inheritance, and aggregation ...
0
votes
0answers
44 views

The Chess Tournament database trouble Step 1: Entity -Relational Model (I need to know if I'm right or wrong))

I'm now here, because I'm studying database theory and I've making exercises; but I have doubts about my process and final solution.I need help to get a clearly judgement because I don't know if I'm ...
3
votes
0answers
116 views

Convert To BCNF

I'm given the following relation: R(A,B,C,D,E) and the following Functional Dependencies: F1 - AC -> D F2 - D -> E F3 - E -> A I am attempting to convert this to BCNF form. The first ...
0
votes
1answer
84 views

Relational Table with self-reference and ambiguous column

I'm writing a relational data model for a system which keeps track of a set of boxes rendered in a browser, each of which contains rendered images. Currently, there is one table: Box. Each row has x ...
0
votes
3answers
123 views

Learning NOSQL databases using a single machine?

In relational databases I would just pop in W3Schools tutorial, install mysql in my machine and start practicing! How can I learn non relational databases in a similar way? In most tutorials I read ...
0
votes
0answers
111 views

Relational algebra subquery/count

I have a scenario where i need to: The registration of cars that have had no faults found and im not entirely sure how to write that in relational algebra terms.. do i use some relation and count ...
1
vote
2answers
99 views

Database and program organization in c#

First let me give you some context. I've some data that looks like this: Runner1 | Date1 | Time1 | Laps1 | Time2 | Laps2 | ... | Time50 | Laps50 Runner1 | Date2 | Time1 | Laps1 | Time2 | Laps2 ...
1
vote
1answer
640 views

Relational Algebra - Cartesian Product vs Natural Join?

I am studying for exams and am failing to find a solid criteria by which I can determine if the Cartesian Product x is to be used or if Natural Join |X| is to be used. I had come up with a rough ...
-1
votes
1answer
183 views

How would you create a basic relational database from scratch using java? [duplicate]

I am trying to write a basic, database in Java. It's for the learning aspect and I have researched this question very thoroughly and not found any suitable replies either on stack overflow or via ...
2
votes
1answer
65 views

How do I query three tables based on a single field [closed]

I have three tables in an SQL database. This relational system was designed by someone else but I was asked to create a new query because he no longer works for the company. I will use sample names ...
0
votes
1answer
114 views

relational parse query returning false response

I have a parse.js query that returns all the rows from a table (tableA), which as expected works; but I only want rows returned that contain a pointer to a row in another table (tableB), in which one ...
0
votes
0answers
72 views

Relational database model customer, orders and orderpositions

I am stuck in creating the correct relational model for my h2 database. The structure is like following: One customer owns many orders One order owns many order positions One order positions owns ...
0
votes
1answer
46 views

Database design decision translating requirements to relational models

So I've volunteer to create a Registering system for my local church's education ministry. It should be able to register new students and keep track of their progress. Here are the requirements I've ...
0
votes
1answer
814 views

select statement combining multiple tables into one variable

An input form was designed for me that stores the information in 4 different tables in one database. I now need to recombine these back into one. The primary table is Paintings All variable fields ...
0
votes
1answer
396 views

MySQL foreign keys doesn't cause child table to populate

I'm trying to create relationships in MySQL using forein keys. Everytime I successfully create the forien key, but when I describe the table, the key is considered "MUL". After inserting some records ...
0
votes
1answer
59 views

Relational database design tables with common base

I have a lot trouble finding the best design solution for this situation. I have two tables with a common base. Currently I have designed it like this: I have an order table (the common base): ...
0
votes
3answers
59 views

printf with relational signs [closed]

int i = 5, j = 10, k = 1; printf("%d\n", k > i < j); Why does it print out 1?
3
votes
6answers
141 views

Mysql join query on three tables with multiple colums

I have three tables like this: Specialisation sid | s_name -------------- 1 | test 1 2 | test 2 Person pid | name | sid ------------------ 1 | ABC | 1 2 | XYZ | 2 Timing tid | ...
0
votes
1answer
99 views

Complex query taking too long to run

I have a query (original question that has table structure too) that is perfect, but it creates a temporary table which unfortunately takes like 12 seconds due to amount of data. (1 table has 95k ...
3
votes
1answer
97 views

Can someone explain to me why there is an inequality test with the same operands in the following code from LLVM?

My colleague showed me the following macro from the LLVM source code: #define IMPLEMENT_UNORDERED(TY, X,Y) \ if (TY->isFloatTy()) { ...
0
votes
0answers
30 views

drill-down database browser?

I am looking for a database browsing tool or interface builder that would automatically provide a drill-down feature which when the user click on a record of a father table it will list all related ...
0
votes
1answer
41 views

SQL - Check for dependants of a single table

Lets say you have a table(A) holding a limited amount of data, and one of the fields being a primary key is being referenced by not one, but many foreign keys from other tables. The foreign keys of ...
0
votes
0answers
107 views

Using Solr with a relational database to filter the search results

This is a problem that has been puzzling me for a long time. In brief here's what I'm facing: We have a collection of documents that are indexed on a Solr database based on their text field and their ...
2
votes
2answers
127 views

Doctrine - database relation - many-to-many add status

How do I implement the following scenario the best way in ORM (Doctrine)? Scenario: A user can belong to one or many teams. A team can consist of one or many users. So, the first part is no ...
0
votes
1answer
137 views

Odata to insert data into relational table

I have created OData service for a relational table. I am trying to figure out how my post querey will look like when posting to tables that has foreign key relation and also to reduce number of ...

1 2 3 4 5 6