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 the future of Magnetic Computer Storage?

As flash drives are developed more they will be used less and less

Who is known as the father of Relational Databases?

Edgar Frank "Ted" Codd invented the relational model for database management while working for IBM. His first public paper on the subject "A Relational Model of Data for Large Shared Data Banks" was issued in 1970.

What is the difference between SQL Server 32-bit and SQL Server 64-bit application and how do you know whether a computer is 32-bit or 64-bit?

64 bit computers process data in larger chunks than 32 bit computers. This means a number of things, but the big 2 are:

1) When programs are written to support 64-bit processors, those programs will generally perform faster than on a 32-bit processor of the same speed. This is partially because 32-bit computers must handle 64-bit numbers in two steps, whereas 64-bit computers only need to use one step.

2) 64-bit processors can address more memory than 32-bit processors. This means your server can have more RAM, and therefore can store more data in memory, making memory-intensive programs like databases faster.

What are types of mis?

Management information systems are those systems that allow managers to make decisions for the successful operation of businesses. Management information systems consist of computer resources, people, and procedures used in the modern business enterprise. The term MIS stands for management information systems. MIS also refers to the organization that develops and maintains most or all of the computer systems in the enterprise so that managers can make decisions. The goal of the MIS organization is to deliver information systems to the various levels of corporate managers. MIS professionals create and support the computer system throughout the company. Trained and educated to work with corporate computer systems, these professionals are responsible in some way for nearly all of the computers, from the largest mainframe to the desktop and portable PCs.

Management information systems can be used as a support to managers to provide a competitive advantage. The system must support the goals of the organization. Most organizations are structured along functional lines, and the typical systems are identified as follows:

Accounting management information systems: All accounting reports are shared by all levels of accounting managers.

Financial management information systems: The financial management information system provides financial information to all financial managers within an organization including the chief financial officer. The chief financial officer analyzes historical and current financial activity, projects future financial needs, and monitors and controls the use of funds over time using the information developed by the MIS department.

Manufacturing management information systems: More than any functional area, operations have been impacted by great advances in technology. As a result, manufacturing operations have changed. For instance, inventories are provided just in time so that great amounts of money are not spent for warehousing huge inventories. In some instances, raw materials are even processed on railroad cars waiting to be sent directly to the factory. Thus there is no need for warehousing.

Marketing management information systems: A marketing management information system supports managerial activity in the area of product development, distribution, pricing decisions, promotional effectiveness, and sales forecasting. More than any other functional area, marketing systems rely on external sources of data. These sources include competition and customers, for example.

Human resources management information systems:Human resources management information systems are concerned with activities related to workers, managers, and other individuals employed by the organization. Because the personnel function relates to all other areas in business, the human resources management information system plays a valuable role in ensuring organizational success. Activities performed by the human resources management information systems include, work-force analysis and planning, hiring, training, and job assignments.

Weakness of manual payroll system?

there is no specific answer what i want to. there is no specific answer what i want to.

What is the difference between a file manager and a database-management system?

"http://wiki.answers.com/Q/What_is_the_difference_between_a_file_manager_and_a_database-management_system"

How do you do many to many relationships in database?

check out microsoft.com for step by step guide on how to do this

What are the advantages of database system?

these are some of the advantages of database management systems

1.allows remote login.

2.eases the problem for mobility because of number1(remote login)

3.allows sharing of research and other works.eg like we are doing now(sharing)

3.makes it for the database administrator to monitor user activities.

4.provides necessary security to protect the data stored.eg data encryption.

5. e.t.c

What is data accuracy?

Data accuracy is generally expressed as a confidence interval (CI). For most credible studies the confidence interval is set at no less than 95 percent. This (if i remember correctly) means that 95 percent or more of the information collected can be trusted as valid and free of confounding variables. To get more information about Isolation levels in SQL Server including Locks and its impact on database in detail with examples, refer the below link: http://www.sqllion.com/2009/07/transaction-isolation-levels-in-sql-server/

Is there a protocol for when to delete a contact record from a Customer Relationship Management CRM Software system?

Records and text history do not take much memory space; so why the need to delete?

Never delete but clean the database by move records to mirror databases like:

- faulty records

- not interested

- black list

- etc

In this way the day-to-day database remains lean and mean.

Simply try to keep as much as possible. Reasons why to clean data from primary database:

- core data is no longer true

- latest contact moment is quite some time ago.

So first check whether data is correct or can be corrected.

If not correct and not able to correct -> move to mirror database 'faults'

If corrected and contact no longer of intrest -> movo to mirror database 'no interest'

TIP:

See CRM as storing Commercial Relevant Moments. Only actions aims to sell or facts which might be needed for legal discussions. Do not start storing every transaction, contactmoment etc.

What is a COB transaction?

A transaction which is posted at the Close Of Business for that day. "CoB" might be used on an informal basis to mean Close of Business but, in health and dental insurance, COB refers to Coordination of Benefits. Coordination of Benefits occurs when a person has coverage through two or more policies. This happens most often when two spouses have coverage provided by their employers. COB is regulated by state insurance law when the policy is through a licensed insurer. This is important because large employers often have plans that are provided under the terms of a federal law, ERISA, which allows them to set their own terms. These employer-sponsored ERISA plans, don't follow COB. Under COB laws the state determines which insurer pays 1st, and which pays 2nd. The insurance policy and contracts with the doctor/dentist determine what is paid. The law provides that the patient or his/her doctor/dentist will be paid up to the total charge--not more than 100%.

What are the features of Advanced RDBMS?

to implement data of the specifically desginnated advance excel Microsoft to enable user needs to comply with all data protection act and copyright laws and exemplify the end users specification and relatioal RDBMS

What does a database displays both entity integrity and referential integrity mean?

Entity integrity ensures that each record in a database table has a unique identifier, usually a primary key, while referential integrity ensures that relationships between tables are maintained through foreign key constraints, preventing orphaned records and ensuring data consistency. Displaying both entity and referential integrity means that the database is structured to enforce these rules, helping to maintain data accuracy and reliability.

What are the differences between primary key foreign key and candidate key?

A primary key is a column which uniquely identifies the records in a table. In a broad sense, a primary key is the mixture of a unique key and an index: A column with a primary key is indexed to deliver a faster query, and doesn't allow duplicate values to ensure specific data. Most programmers recommend all tables having a primary key (and only one) to enhance the speed of queries and overall database performance. An example of a primary key may be found in a table named "departments," which might have a column named "department_number" that uniquely identifies each department in the table with a number.

A foreign key is a column (the child column ) in a table which has a corresponding relationship and a dependency on another column (the parent column ) that is usually in a different table. Parent columns can have multiple child columns, but a child column can only have one parent column. The child column is the column with the foreign key; the parent column does not have the foreign key "set" on it, but most databases require the parent column to be indexed. Foreign keys are made to link data across multiple tables. A child column cannot have a record that its parent column does not have. Say a table named "employees" has 20 employees (rows) in it. There are 4 departments in the "departments" table. All 20 employees must belong to a department, so a column in the "employees" table named "department" would point to the primary key in the "departments" table using a foreign key. Now all employees must belong to a department as specified by the "departments" table. If a department isn't specified in the "departments" table, the employee cannot be assigned to it.

A candidate key would be any key which could be used as the primary key, which means that the combination of the columns, or just the single column would create a unique key. You would then need to determine which of these candidate keys would work best as your primary key.

Explain the method of translation of historical institutional term?

"Explain the method of translation of historical institutional term?" Institutional term and National institutional term? "Explain the method of translation of historical institutional term?"

Difference between management system and management information system?

Management system is usually referring to Operations, MIS is usually computer or database specific