answersLogoWhite

0

📱

Database Programming

Databases are collections of tables that maintain and display information, often collaboratively; this information can be used for interaction with an application or gaining general knowledge. Questions about database engines and modifying or using them belong in this category.

8,803 Questions

What is fuzzy database?

fuzzy database manages the uncertainty and vagueness associated with either entities, attributes and relationships. this can be implemented in relational database model (fuzzy extension) or using object oriented databse model.

Which database object does NOT contain data?

Database indexes do not contain data; they are structures that improve the speed of data retrieval.

What are the advantages and disadvantages of system analysis?

Advantages of system analysis are:

  • The data is reliable.
  • You can see exactly what is being done.
  • It is inexpensive compared to other techniques.

Disadvantages of system analysis are:

  • Being watched may make people uncomfortable and they may work differently.
  • The observations may not be typical of a normal day's work.
  • Workers who violate normal procedures may not do that while being watched.

What problems associated with storing data in a list is avoided by storing data in a relational database?

Relational databases provide support for complex queries and relationships between data tables, which is not easily achieved when using a list data structure. Additionally, relational databases offer features like data integrity constraints (such as unique keys and foreign keys) that help ensure data consistency and accuracy. Scalability and performance can also be better managed in a relational database compared to using a list for storing data.

When a data field is private it is said to be?

When a data field is private, it is said to be accessible only within the class where it is defined. Other classes cannot access or modify it directly. This helps to maintain data encapsulation and restrict external interference with the data.

What types of computerized information or records are stored in a database?

A database can store various types of computerized information or records such as customer data, employee information, sales transactions, inventory levels, website content, and financial records. The type of information stored in a database depends on the needs and requirements of the organization using it.

What are databases people use?

There are many databases used... this website is most likely stored in a database. When you play a CD on a computer, the means of automatically retrieving the performer and song list is stored in a database. The results from a google search are found in a database.

What part of database holds only one type of information?

A database table is a structured collection of records or rows that hold data organized in columns, with each column representing a specific type of information. Each table in a database typically stores data related to a specific entity or concept, such as customers, products, or orders.

What links two tables using a common field in both tables and extracts the relevant data from each?

A join operation links two tables using a common field and extracts relevant data. By specifying the common field in the ON clause of a SQL query, the database can combine rows from both tables based on matching values in that field. This allows data to be retrieved from multiple tables in a single query.

What are queries used for in database?

Queries are used in databases to retrieve specific information from the database based on certain criteria. They allow users to search, filter, and manipulate data to generate meaningful results. Queries help users analyze data, make decisions, and extract useful insights from the database.

What is the lowest data model?

The lowest data model is the physical data model. It represents how data is stored on a specific type of hardware and helps optimize storage and retrieval. It is the closest to the physical implementation in a database system.

How Data warehousing and Data Mining is useful in terms of MIS?

Data warehousing and data mining contribute to Management Information Systems (MIS) by providing a centralized location for storing and accessing data, enabling users to run complex queries and generate reports for strategic decision-making. Data mining techniques help uncover patterns and trends in the data, allowing organizations to gain valuable insights and make informed decisions based on the information retrieved from the data warehouse. Ultimately, these tools enhance the effectiveness of MIS by facilitating more efficient data analysis and interpretation.

Why are Database queries useful?

Database queries are useful because they enable users to retrieve specific information from databases quickly and efficiently by filtering and sorting data based on desired criteria. This allows for targeted retrieval of information, reducing the time and effort needed to access relevant data. Additionally, queries can help optimize database performance by minimizing the amount of data that needs to be processed.

How DBMS overcomeTFBS?

DBMS (Database Management Systems) typically overcome TFBS (Transaction Failure Before System) by using transaction management techniques such as ACID properties (Atomicity, Consistency, Isolation, Durability). These ensure that transactions are either fully completed or reverted to their original state in case of failure, maintaining data integrity. Additionally, DBMS often implement logging and recovery mechanisms to help recover the database state in case of unexpected failures.

What are the disadvantages of 1NF and 2NF?

First Normal Form Disadvantages:

  • It cannot support multi valued attributes.
  • It does not suffer from redundancy and having no limit to placed on a number of values

What is a SQL Intrusion Detection System used for?

It's used to identify SQL injection that has sucessfully bypassed the WAF and the web application. These rogue SQL statements are "knocking at the door" of the database but may not have sucessfully breached the database yet.

What is a database and how do you create one?

A database is a collection of information stored on a computer. There are several database programs you can use to build your own database; one of the simpler ones is Microsoft Access (part of some versions of Microsoft Office). There are also specialized databases that have been set up for a specific purpose (for example, you might find a database program for storing information about your record collection).

What is the difference between physical data model and logical data model in systems analysis?

The Logical Data Model (LDM) is derived from the Conceptual Data Model (CDM).

The CDM consists of the major entity sets and the relationship sets, and does not state anything about the attributes of the entity sets.

The LDM consists of the Entity Sets, their attributes, the Relationship sets, the cardinality, type of replationship, etc.

The Physical Data Model (PDM) consists of the Entity Sets (Tables), their attributes (columns of tables), the Relationship sets (whose attributes are also mapped to columns of tables), along with the Datatype of the columns, the various integrity constraints, etc.

Erwin calls the conversion / transformation of LDM => PDM as Forward Engineering which further leads to the actual code generation and the conversion of Code => PDM => LDM as Reverse Engineering!

Though the question says specifically about Erwin, the above explanation is independent of the datamodeling tool used for the purpose.

What are the 2 major types of databases?

The two major types of databases are relational databases and non-relational databases. Relational databases store data in tables with predefined relationships, while non-relational databases use flexible data models like key-value pairs, documents, graphs, or columns.

What is a complete data called?

A complete dataset contains all the necessary information without any missing values or errors. It provides a comprehensive view of the subject being studied and allows for accurate analysis and interpretation.

What is datasource?

A datasource is a location or facility from which data is collected or stored in a systematic way for retrieval or analysis. It can be a database, a file, a service, or any other repository that provides data for use in applications.

Why is a database called a database?

It comes from the words "data" and "base." A base, in this definition, is a place where something is gathered or grouped together to carry out a particular activity, in the same vein as a "military base" is the place where the military gathers and performs its core activities. The term "data" (singular is "datum") is a set of information. One might literally translate this as "a place where related information is grouped together and acted upon."

What are the limitation of Thomson's model?

Thomson's model does not account for the existence of positively charged particles within the atom. It also does not explain the stability of the atom or the arrangement of electrons within the atom. Additionally, it fails to describe the presence of different energy levels in the atom.

How can a database be more effective?

A database can be more effective by optimizing queries to improve performance, properly indexing tables to speed up data retrieval, and maintaining data integrity through proper normalization and validation techniques. Regular maintenance such as backup and recovery processes can also help ensure the database runs smoothly and efficiently.