You have been asked by the Managing Director of DreamHome to investigate the data distribution requirements of the organization and to prepare a report on the potential use of a distributed DBMS. The report should compare the technology of the centralized DBMS with that of the distributed DBMS, and should address the advantages and disadvantages of implementing a DDBMS within the organization, and any perceived problem areas. The report should also address the possibility of using a replication server to address the distribution requirements. Finally, the report should contain a fully justified set of recommendations proposing an appropriate solution.

What will be an ideal response?


A well-presented report is expected. Justification must be given for any recommendations made.

Computer Science & Information Technology

You might also like to view...

Which type of SSIS package task permits the package to interact with other applications?

A. data flow B. scripting C. workflow D. maintenance

Computer Science & Information Technology

Regarding recursion, if a base case is never reached the result is:

(a) infinite recursion (b) iteration (c) termination (d) all of the above

Computer Science & Information Technology

What is displayed by this program?

``` #include void seven(int *xp); int main(void) { int x, y; x = 5; y = 6; seven(&x); seven(&y); printf("%4d%4d\n", x, y); return(0); } void seven(int *xp) { int y; y = *xp + 2; *xp = y * 3; } ``` a. 21 24 b. 21 8 c. 5 6 d. 5 8 e. none of the above

Computer Science & Information Technology

You work in the human resources department of a large company that uses Microsoft Access to track information before and after entering it into the company's administrative system. Your supervisor has asked you to add a field description to a field in the table. How can you do this?

What will be an ideal response?

Computer Science & Information Technology