Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between Database and Data Source

What is the difference between Database and Data Source?

like image 733
ANP Avatar asked Sep 13 '10 05:09

ANP


People also ask

What is the difference between database and data?

Data are observations or measurements (unprocessed or processed) represented as text, numbers, or multimedia. A dataset is a structured collection of data generally associated with a unique body of work. A database is an organized collection of data stored as multiple datasets.

What is an example of data source?

Concretely, a data source may be a database, a flat file, live measurements from physical devices, scraped web data, or any of the myriad static and streaming data services which abound across the internet.

What is difference between database and data warehouse?

What are the differences between a database and a data warehouse? A database is any collection of data organized for storage, accessibility, and retrieval. A data warehouse is a type of database the integrates copies of transaction data from disparate source systems and provisions them for analytical use.

What is data source also called?

In computing, a data source name (DSN, sometimes known as a database source name, though "data sources" can comprise other repositories apart from databases) is a string that has an associated data structure used to describe a connection to a data source.


2 Answers

A data source is simply something your program relies on to get data. A database is a kind of data source that persists data to some digitized form. Other data sources include files, services, etc — these all provide data to your programs.

like image 97
BoltClock Avatar answered Sep 19 '22 17:09

BoltClock


Further to BoltClock's answer, here are example of Databases (or Database Servers) vs various Data Sources.

Databases

  1. SQL
  2. Oracle
  3. MySQL

Data Sources

  1. All of the databases above
  2. XML Files
  3. CSV Files
  4. Web Services
  5. and many many more..
like image 23
Marko Avatar answered Sep 19 '22 17:09

Marko