Skip to main content

Questions tagged [database-development]

Filter by
Sorted by
Tagged with
2 votes
1 answer
430 views

I am developing a diagramming application and want to optimize operations with the Nodes and Relations of the diagram. Currently, I am using a relational database with tables for diagrams and nodes. ...
Maksim Murza's user avatar
0 votes
1 answer
590 views

I am building a database, and have implemented a transaction log system to ensure that writes are atomic, idempotent & consistent. When a transaction is 'committed' it is appended to a log file ...
Albert's user avatar
  • 103
1 vote
1 answer
122 views

I want to learn firestore and to this end I created small project which replicates instagram. Not all functionalities of course, just the very basics - photo sharing, comments and the possibility to ...
newbie coder's user avatar
0 votes
0 answers
72 views

I plan to have a cloud web application(CWA) and several local web application(LWA), let's assume 3 LWAs and 1 CWA. CWA === LWA. This web application would consist of a database server, file storage ...
Olamide226's user avatar
1 vote
2 answers
198 views

...to prevent messing up with data updates, such as prices, titles, of the products that are placed in an order. Namely, a customer buys 3 items: for $5, $10 and $33 and pays for them. All is well. ...
Dajaku's user avatar
  • 31
2 votes
4 answers
1k views

I have a schema containing contracts, sub-contracts, services offered by each of those, and sub-services. I also have an application that allows me to extend the duration of the contract and to modify ...
Andrei Stanciu's user avatar
53 votes
8 answers
15k views

I am diving in the domain driven design (DDD) and while I go more deeply in it there are some things that I don't get. As I understand it, a main point is to split the Domain Logic (Business Logic) ...
Leonardo Mangano's user avatar
0 votes
2 answers
91 views

I am seeing bad practices occurring in our version control where my colleagues are creating their own versioning system with stored procedures so that they can compare results before/after changes and ...
mhep's user avatar
  • 245
-1 votes
2 answers
118 views

I'm implementing my own simple database with disk storage, and I'm not sure how to go about modifying and deleting entries. The problem is that as you delete a record from arbitrary position within ...
Violet Giraffe's user avatar
3 votes
2 answers
133 views

From what I understand, no-SQL databases differ from SQL databases because they allow the developpers to designe the tables to fit the usage, rather than fitting the model. Which means most of the ...
Vulpo's user avatar
  • 141
0 votes
3 answers
349 views

An application has types Game (and other business units) and Message. (Message is not a simple class with text, but a composition of a variable number of blocks like texts, images, and videos). ...
automatix's user avatar
-6 votes
1 answer
774 views

Say, I have a table Categories. On a page I have a header and for each category the colour of a header varies. A colour is of the presentation level and I've heard that what's related to the UI/...
Kakki's user avatar
  • 83
-1 votes
1 answer
656 views

On my website there's a new subscription form. And users can also register and subscribe to news after. When an anonymous user subscribes to the news, how should I better handle that? Should I create ...
Kakki's user avatar
  • 83
37 votes
8 answers
41k views

What's a correct format of a geographical address/location which is a good fit for any address on the Earth? At the moment I have: country city street number text data (for simplicity) zip lat/lng But ...
Xwaro's user avatar
  • 411
0 votes
1 answer
61 views

I have several postgres DB, on distant sites, two in China, 1 in India , one in Korea, one in Germany, one in France and one in Mexico. All dbs, regardless of their site, have one table that is part ...
Andy K's user avatar
  • 285
1 vote
2 answers
146 views

Our company code base still has some code that will create the database, tables, stored procedures and the like.Coding the SQL stored procedures line by line in Java, in string format is a real pain. ...
Harriet's user avatar
  • 139
0 votes
3 answers
118 views

I am trying to implement the use of two database in my application, sqlite and mysql. Currently i added references to both database connection library, and duplicate all first checking which database ...
Smith's user avatar
  • 643
0 votes
2 answers
87 views

So my problem is, I have users entering their data(names, address) in a mixed form- some with first letter in caps and some without, some inserting more than necessary spaces and so forth. Also, ...
Kaushik Gopalan's user avatar
3 votes
1 answer
1k views

In the book Database Fundamentals, Silberschatz. It is explained that aggregate functions can be calculated on the march. This make sense. What it means is that for calculating the maximun, average ...
jgomo3's user avatar
  • 336
4 votes
1 answer
457 views

I know the basics of why a database uses a transaction log - fulfilling ACID properties, ability to rollback/restore, etc. The basic algorithm that I see for a transaction is as follows: transaction ...
bobroxsox's user avatar
  • 143
3 votes
1 answer
1k views

I'm building a web application in Spring. I'm using an in-memory (embedded) database for my integration test - HSQL My production database is MySQL. When i setup my integration tests a while back i ...
SoftwareDeveloper's user avatar
3 votes
2 answers
887 views

Is there any point to having a dedicated development database server(s) that all developers can use, i.e. they don't have a local copy of the db in their machines. Quite clearly, this will slow down ...
turntwo's user avatar
  • 131
4 votes
2 answers
432 views

I should preface this by saying that I'm mostly a front end web developer, trained as a musician, but over the past few years I've been getting more and more into computer science. So one idea I have ...
tjb1982's user avatar
  • 249
3 votes
3 answers
3k views

I am implementing an ecommerce database. This is slightly different than most as the 'products' that are for sale are for services provided. For example a user (vendor) of the system may define a ...
GWed's user avatar
  • 3,263
1 vote
1 answer
2k views

I have a reservation table (a user fills out a form to request a reservation). It has two parts that need to be confirmed. isReservationAccepted (decline,accept,waiting) and hasReservationBeenSent (...
datatest's user avatar
  • 113