Creating a Data Mart for an Online E-Book Store

Web Forum - class of applications for communication site visitors. Planning of such database that to contain all information about an user is the name, last name, address, number of reports and their content, information about an user and his friends.

Рубрика Программирование, компьютеры и кибернетика
Вид отчет по практике
Язык английский
Дата добавления 19.03.2014
Размер файла 1,4 M

Отправить свою хорошую работу в базу знаний просто. Используйте форму, расположенную ниже

Студенты, аспиранты, молодые ученые, использующие базу знаний в своей учебе и работе, будут вам очень благодарны.

Размещено на http://www.allbest.ru/

National Research University

Higher School of Economics

Perm Branch

Faculty Business Informatics

Department Information Technologies in Business

Research Proposal

Creating a Data Mart for an Online E-Book Store

Student Linar_R._Ibragimov

Group Bi-10-2

Perm 2013

1. Introduction

Web Forum - class of applications for communication site visitors. Forum offers a set of topics for discussion. his job is to create users in those sections and the subsequent discussion within these themes. Individual subject, in fact, is a thematic guestbook. A common hierarchy Forum is Sections > topics > posts. Typically, messages carry information "author - Topic - the content - the date / time." Message and all replies to it forms a "branch" or "topic"

The aim of this work was to design an example of such a database. All information about user, such as name, surname, address, post address, number of messages and their content, as well as information about the user and his friends.

2. Description of the subject area

2.1 A summary of the forum

database web forum

This database stores information about users of the forum. It will be used for viewing all user actions from the time of its registration. Also, you can add a user.

This database contains the basic elements of the Forum such as users, themes, messages, and other. A full list is shown in Table of objects

Table of objects

Object

Description

1

User

Because forums are designed for communication between people, "user" is the key object database.

He has a connection with almost all the other objects. Table "user" contains profile information about the users of the Forum, from the name, ending with the current status.

2

User's friends

Object "Friend" is closely connected to the "user"..

3

Violations of user

Sometimes users may not comply with the rules of the forum so there is a system of penalties. This object is created so that the administrator could know the "history of violations of the user"

4

User's online history

Allows you to view user's online history

5

Topics

Users create "Theme" for what to discuss any particular topic or news, in a specially prepared virtual space.

6

Messages

Message this text that contains certain meaning that the user would like to pass other forum users.

2.2 Description directories

The necessary directories:

1) Countries: Information about the countries where users live..

2) Status: Information of the current status of the user.

3. Planning of database

The database should include the following sections:

· Information about user

· Information about topics

· Information about messages

· Information about violations

· Information about user's online history

· Information about User's friends

The database will have the following attributes:

· Information about user

- «ID» - a unique key that identifies the corresponding object.

- «Name», «Nickname» - attributes determine personality of the user in real life and in the forum.

- «Adress», «e-mail» - contact Information.

- «Pass» - personal data with which the user logs in to the forum.

- «Country», «Status», «Regestration date» - characteristics of the user.

· Information about topics

- «ID» - a unique key that identifies the corresponding object.

- «Topic name» - topic name

- « The author » - the author who created the topic.

- «Number of replies», « Time», «Open/Closed» - characteristics of Topics.

· Information about messages

- «ID» - a unique key that identifies the corresponding object.

- « The author » - the author who created the message.

- «Тема» - topic, where this message is.

- «Content" - the text field that contains the message text.

- «Time» - time when the message was written.

· Information about violations

- «User" - the user who made the violations.

- «Topic" - Topic where a punishment has occurred.

- «Description violations " - an explanation of issue of violations.

- «Content" - the text field that contains the message text.

· Information about user's online history

- «User code» - a unique key that identifies the corresponding object.

- «Start Time", "End Time" - characterize the the length of the sessions.

· Information about User's friends

- «Man" - a unique key that identifies the corresponding object.

- «Friend» - nickname by another user

3.1 The transition to the first normal form

Pic 1

For the transition to the first normal form we should ensure that on the intersection of rows and columns have only one meaning. We use the method of exclusion repeating groups: fill the empty cells of the table duplicates the relevant information about the recurring groups and define the primary key of the result.

3.2 The transition to the second normal form

Suppose the following links::

Messages and topics on the forum a lot, but each message or theme have their only carrier, so communication will be 1: N. One at the the user code, N at a field and the author's name in other tables.

Each message belongs to a certain topic. The punishment occurs in one of the forum. Link will be 1: N. One at the Topics, N at the fields with the code Topics in other tables..

3.3 The transition to the second normal form

In connection, the following functional dependencies: Violations > Theme, Theme > Message > Message violation.

Dependence Violation > Message is transitive, therefore, the link is not in 3NF.

So, the table is divided into two tables. violations: Theme and Subject: Message.

Pic 2

Thus we have the final form of the scheme:

Pic 3

4. Application development

4.1 Description of tables, fields, input conditions

· Table users:

- ID-key field, the counter

- name - type string

- country - the type of country that refers to the reference countries. Not a required field.

- Nickname - type string.

- Password - type string.

- E-mail - type string.

- date - the type of date.

- Address - type string, not required.

- Status - refers to the directory. Not a required field.

· Table of Topics:

- ID - key field meter.

- name - type string.

- Author - field to link the user to the table, the type of user.

- The number of responses - the type integer.

- open / closed - type string.

- Time - the type of date..

· Table of Messages

- ID - key field meter.

- topic - Type topic.

- Author - field for communication with the user, type user.

- Time - the date / time.

- content - the text message, as a string field.

· Table of Punishment

- topic - Type topic.

- Author - field for communication with the user, type user.

- time violation - Type date.

- Closing punishment - Type date.

- Descriptions violations - text.

· Table of user's online history

- ID - integer. Indexed.

- Start time - date / time.

- End time - date / time.

- User - type user.

· Table of Friends

- The man - the type of user

- A friend - the type of string. Contains friend's nickname.

· Table of Country

- ID - Key field. Counter.

- country - text box..

· Table of Status

- ID - Key field. Counter.

- List status - the text box..

4.2 Development of screens

The base consists of 8 simple screens and 6 additional screens. Simple screens serve as the table for change the information, but you can create reports and sort through the fields, here is an example of this screen:

Pic 4

In the database there are 2 more difficult screen: "Topics List Detail» and «Members List Detail». Pic 5 and Pic 6.

Pic 5

Pic 6

Screen form "Topics List Detail» shows information about a topic, the list of violations in this topic.

Screen form the "Members List Detail» shows information about the user and his list of friends.

Also database has a special table to add a new user. Pic.7

Pic 7

4.3 Develop queries.

The database contains three query with different functions. Two of them with a parameter and with a sorting.

«Search Online history» - A parameter query, the search for nickname.

Pic 8

«Search Users» - This request performs sorting by fields «Name», «nickname», «mail», «Regestration date».

Pic 9

«Message List» - A parameter query, the search is on nickname. Displays all messages

Pic 10

4.4 Reports

Reports generate in Microsoft excel, using a special button.

Pic 11

Conclusion

This database is a trial version of the Forum database..

This database allows you to:

1. 1. View and sort all the necessary information about the forum.

2. 2. Use query to view the details of all of the information about a particular object.

3. 3. Create new users.

4. 4. Generate reports.

5. 5. This database contains several forms and grouped tabs..

Database includes:

· * 6 main tables

· * 2 directory

· * 8 screens to fill or modifying tables

· * 2 main screen

· * 3 simple queries

· * 3 of the screen for queries

· * Reports

· * You can add users

References

1) Lyadova LN Basics of Database Access: Textbook. - A method of manual / Perm branch of the HSE. - Perm, 2009.

2) Electronic resource http / / ru.wikipedia.org /

Размещено на Allbest.ru


Подобные документы

  • A database is a store where information is kept in an organized way. Data structures consist of pointers, strings, arrays, stacks, static and dynamic data structures. A list is a set of data items stored in some order. Methods of construction of a trees.

    топик [19,0 K], добавлен 29.06.2009

  • The material and technological basis of the information society are all sorts of systems based on computers and computer networks, information technology, telecommunication. The task of Ukraine in area of information and communication technologies.

    реферат [29,5 K], добавлен 10.05.2011

  • Data mining, developmental history of data mining and knowledge discovery. Technological elements and methods of data mining. Steps in knowledge discovery. Change and deviation detection. Related disciplines, information retrieval and text extraction.

    доклад [25,3 K], добавлен 16.06.2012

  • Lines of communication and the properties of the fiber optic link. Selection of the type of optical cable. The choice of construction method, the route for laying fiber-optic. Calculation of the required number of channels. Digital transmission systems.

    дипломная работа [1,8 M], добавлен 09.08.2016

  • Information security problems of modern computer companies networks. The levels of network security of the company. Methods of protection organization's computer network from unauthorized access from the Internet. Information Security in the Internet.

    реферат [20,9 K], добавлен 19.12.2013

  • Practical acquaintance with the capabilities and configuration of firewalls, their basic principles and types. Block specific IP-address. Files and Folders Integrity Protection firewalls. Development of information security of corporate policy system.

    лабораторная работа [3,2 M], добавлен 09.04.2016

  • Consideration of a systematic approach to the identification of the organization's processes for improving management efficiency. Approaches to the identification of business processes. Architecture of an Integrated Information Systems methodology.

    реферат [195,5 K], добавлен 12.02.2016

  • История возникновения чата. Виды программной реализации чатов. Описание приложения TCP/IP, построенного на клиент-серверной архитектуре. Особенности создания многопользовательского чата (Multy-user on-line). Листинг программного продукта онлайн общения.

    курсовая работа [657,0 K], добавлен 01.03.2010

  • Простые структуры для работы с пользователями и студентами. Описание пользовательских функций приложения. Алгоритм добавления информации о студентах в начало двусвязного списка. Удаление и фильтрация информации. Функция void menu-user. Листинг кода.

    курсовая работа [1,7 M], добавлен 16.12.2014

  • Проблемы оценки клиентской базы. Big Data, направления использования. Организация корпоративного хранилища данных. ER-модель для сайта оценки книг на РСУБД DB2. Облачные технологии, поддерживающие рост рынка Big Data в информационных технологиях.

    презентация [3,9 M], добавлен 17.02.2016

Работы в архивах красиво оформлены согласно требованиям ВУЗов и содержат рисунки, диаграммы, формулы и т.д.
PPT, PPTX и PDF-файлы представлены только в архивах.
Рекомендуем скачать работу.