Questions tagged [databases]

A database is an organised collection of data. It is the collection of schemas, tables, queries, reports, views, and other objects. Designers typically organise data to model aspects of reality in a way that supports processes requiring information. Use this tag on questions which ask about database aspects of Continuous Delivery, Continuous Deployment or general DevOps approaches to databases.

A database is an organised collection of data. It is the collection of schemas, tables, queries, reports, views, and other objects. Designers typically arrange data to model aspects of reality in a way that supports processes requiring information.

Types of Databases

Databases can be broken down into several different types of databases:

  • Relational Databases or RDBMSs - store data regarding its relation to other pieces of data, held in a strictly enforced schema.
  • Document Databases - store data regarding single, generally hierarchical, documents. Schemas are available but may not be enforced or may support versions.
  • Key-Value Stores - stores keys and their values in a highly efficient hash table like structure.

Further Reading

Related tags:

58 questions
3
votes
1 answer

Zero Downtime Deployment with Database Backward Compatibility

Question Does anyone have experience with Database Backward Compatibility to achieve Zero Downtime Deployment? Are there good links or references that I can read? Reason I am working with a monolithic application where the code base is tightly…
1
vote
1 answer

Is it possible or common to use a Proxy server to refer to a database

From my experience I have used proxy servers to refer to different servers (nginx). I have previously worked on building a mvc framework. Basically there were 8 databases with 10 accounts each. The main database had the server addresses and db…
Kar19
  • 113
  • 4
1
vote
1 answer

File transfer from Application server to Db Server without a shared folder access but using Service Account

I am working as a Business Analyst for an IT firm. My team has stumbled upon a certain feature where they are required to use Service account. We are working for a Bank and they have strong policies of keeping no Shared folder on Db server, for…