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 are the differences between distributed systems and distributed database systems?

Distributed systems refer to a network of independent computers that work together to achieve a common goal, while distributed database systems specifically involve databases that are spread across multiple locations. Distributed database systems focus on storing and managing data across various nodes in a network, whereas distributed systems are more general and encompass a broader range of functionalities beyond data management.

Which sentence segment contains a punctuation error?

"Let's go to the movies at 10 pm." - This sentence segment is correctly punctuated.

What does a field and a table have in common?

A field and a table are both components of a database system. A field represents a single piece of data within a record, while a table is a collection of related records organized in rows and columns. Tables consist of fields that define the structure of the data stored within them.

When was a data base invented?

The first database management system (DBMS), known as the Integrated Data Store, was developed by Charles Bachman in 1963. This marked the beginning of modern database systems.

What is instances in dbms?

Instances is collection of the Information store in the databaseat a particular moment is called InstancesThis answres form Vishal N Dobariya

Which SQL statement is used to delete data from a database?

The SQL statement used to delete data from a database is DELETE FROM table_name WHERE condition;. This statement deletes rows from the specified table based on the condition provided. Make sure to use caution when using DELETE statements as they permanently remove data from the database.

What is record in dbms?

A record in a database management system (DBMS) is a basic unit of data storage containing information about a single entity or item. It is composed of fields that represent specific attributes or characteristics of the entity being stored. Records are organized within database tables and can be accessed, updated, or deleted using SQL queries.

Why the role of database in computer-based information systems is important in such information systems?

Database is an organized collection of facts and information. Most managers ans executives consider a database one OS the mos valubale part of a computer-based information system because contains facts and information on customers, employees, inventory competitor's sales, on line purcharse and more.

What is a database field format?

A database field format refers to the data type and structure used to define a specific field within a database table. It determines how data is stored, validated, and interpreted within that field, such as text, numbers, dates, or binary data. Common field formats include VARCHAR for variable-length text, INT for integers, and DATE for dates.

Inference rules in DBMS?

The inference rules in DBMS describes the New functional Dependency derived from two existed entity which are functionally dependent.

For example: let two entities X and Y, if X belongs to Y and Y belongs Z then X must belongs to Z. This rule called transitive rule.

Thanx

Subhash(820740207)

PTU 4th Semester

Patel nagar Delhi

What is reconciliation and safety data reconciliation in clinical data management?

What happens, once patient experiences any serious adverse event at investigational site then the investigator is suppose to fill SAE form and send it to the drug safety department of the company, and there the drug safety department will enter that SAE form in their safety database. At the same time investigator have to mention that serious adverse event in the CRF of that patient and then send it to the clinical data management dept. CDM role is to merge or reconciliate the safety database and clinical database of that particular patient in the oracle clinical dabase system.

What is database query?

A database "query" is basically a "question" that you ask the database. The results of the query is the information that is returned by the database management system. Queries are usually constructed using SQL (structured query language) which resembles a high-level programming language.

Is data administrator and database administrator are same in DBMS?

No, a data administrator is responsible for ensuring the overall management of an organization's data assets and defining data policies, while a database administrator is responsible for managing and maintaining the organization's databases, ensuring they are secure, available, and performant. Both roles are critical in maintaining a well-functioning database management system (DBMS).

What does sql stands for?

SQL stands for Structured Query Language. SQL is a standard language used to access data in Database Management Systems. Almost all databases implement the standard version of SQL, making it portable across database management systems.

What kind of data should be stored?

Data that is necessary for achieving the objectives of a system or organization should be stored, such as customer information, product details, transaction records, and relevant metrics. It is important to consider data privacy and security regulations when determining what data to store. Additionally, only data that will be actively used or analyzed should be stored to prevent unnecessary clutter.

What do you do if your data does not support your data?

If your data does not support your initial hypothesis or conclusions, you may need to reconsider your research question, methodology, or analysis. It is important to critically evaluate your data to identify any biases, errors, or limitations that may have influenced the results. You may also consider conducting further research or seeking alternative explanations for the findings.

The collection of informations stored in a database at particular moment is called?

The collection of information stored in a database at a particular moment is called a database snapshot. It provides a point-in-time view of the data captured during the snapshot creation. This snapshot can be used for reporting, analysis, or backup purposes.

What is attribute data?

Attribute data can be defined differently depending on the aspect applied,in GIS(geographical information System) attribute data defined as those data that can be stored in tabular form(table).

What are database field names and data types?

Database field names are the column headers that define the type of information stored in that column. Data types in a database specify the kind of values that can be stored in a particular field, such as text, numbers, dates, or Boolean values. Common data types include VARCHAR (variable-length character strings), INT (integer), DATE (date values), and BOOLEAN (true/false values).

What are the disadvantages of parallel databases?

Some disadvantages of parallel databases include increased complexity in design and maintenance, higher implementation costs due to specialized hardware and software requirements, and potential issues with data consistency and synchronization across multiple nodes. Additionally, parallel databases may require specialized skills to optimize performance effectively.

Where are databases found?

Databases are found in a wide range of systems, such as computer applications, web platforms, cloud services, and enterprise servers. They are essential for storing, managing, and organizing structured data in various industries, including finance, healthcare, e-commerce, and more.

Which SQL statement is used to update data in a database?

The SQL statement used to update data in a database is the "UPDATE" statement. It allows you to modify existing records in a table by specifying the column and value you want to update based on certain conditions. Additionally, you can use the "SET" keyword to assign new values to specific columns in the table.

What is explicit data and implicit data?

Explicit data is data that is clearly stated or defined, while implicit data is implied or hinted at. Explicit data is typically straightforward and directly provided, whereas implicit data requires context or interpretation to understand its meaning. In the context of programming, explicit data is data that is clearly declared and specified, while implicit data is data that is inferred or derived.

What are the Classification of data model?

Data models can be classified into three main categories: conceptual data model (high-level view of the data and its relationships), logical data model (detailed structure of the data and relationships), and physical data model (implementation of the database design on a specific database management system).

In dbms what is indexes and hashing techniques?

Indexes in DBMS are data structures used to quickly retrieve data based on specific columns in a table. They allow for faster query processing by reducing the number of records that need to be scanned. Hashing techniques in DBMS involve converting data into a hashed value using a hash function, which is then used to index or organize the data for faster retrieval. Hashing provides quick access to data by generating a unique location for each record based on its hash value.