Вы находитесь на странице: 1из 12

BUCHAREST UNIVERSITY OF ECONOMIC STUDIES

FACULTY OF BUSINESS ADMINISTRATION

BUSINESS INTELLIGENCE
PROJECT

STUDENTS NAMES:
PREDA OANA-DENISA GROUP 121
PEIU ANDREI GROUP 125

Table of Contents
Business Intelligence.................................................................................................. 3
OLAP........................................................................................................................... 4
Installation Firm.......................................................................................................... 5
The relationships between the tables.........................................................................6
Append Queries.......................................................................................................... 7
Make Table Queries..................................................................................................... 9
Data warehouse....................................................................................................... 10

Business Intelligence

Business intelligence (BI) can be described as "a set of techniques and tools
for the acquisition and transformation of raw data into meaningful and useful
information for business analysis purposes". The term "data surfacing" is also more
often associated with BI functionality. BI technologies are capable of handling large
amounts of unstructured data to help identify, develop and otherwise create new
strategic business opportunities. The goal of BI is to allow for the easy interpretation of
these large volumes of data. Identifying new opportunities and implementing an
effective strategy based on insights can provide businesses with a competitive market
advantage and long-term stability.
BI technologies provide historical, current and predictive views of business operations.
Common functions of business intelligence technologies are reporting, online analytical
processing, analytics, data mining, process mining, complex event processing, business
performance

management, benchmarking, text

mining, predictive

analytics and prescriptive analytics.


BI can be used to support a wide range of business decisions ranging from operational
to strategic. Basic operating decisions include product positioning or pricing. Strategic
business decisions include priorities, goals and directions at the broadest level. In all
cases, BI is most effective when it combines data derived from the market in which a
company operates (external data) with data from company sources internal to the
business such as financial and operations data (internal data). When combined, external
and internal data can provide a more complete picture which, in effect, creates an
"intelligence" that cannot be derived by any singular set of data. Amongst myriad uses,
BI tools empower organisations to gain insight into new markets, assess demand and
suitability of products and services for different market segments and gauge the impact
of marketing efforts.

OLAP

In computing, online

analytical

processing,

or OLAP,

is

an

approach

to

answering multi-dimensional analytical (MDA) queries swiftly. OLAP is part of the


broader category of business intelligence, which also encompasses relational database,
report

writing

reporting for

and data

mining. Typical

sales, marketing,

applications

management

of

OLAP

include business

reporting, business

process

management (BPM), budgeting and forecasting, financial reporting and similar areas,
with new applications coming up, such as agriculture. The term OLAP was created as a
slight modification of the traditional database term online transaction processing (OLTP).
OLAP tools enable users to analyze multidimensional data interactively from multiple
perspectives. OLAP consists of three basic analytical operations: consolidation (roll-up),
drill-down, and slicing and dicing. Consolidation involves the aggregation of data that
can be accumulated and computed in one or more dimensions. For example, all sales
offices are rolled up to the sales department or sales division to anticipate sales trends.
By contrast, the drill-down is a technique that allows users to navigate through the
details. For instance, users can view the sales by individual products that make up a
regions sales. Slicing and dicing is a feature whereby users can take out (slicing) a
specific set of data of the OLAP cube and view (dicing) the slices from different
viewpoints. These viewpoints are sometimes called dimensions (such as looking at the
same sales by salesperson or by date or by customer or by product or by region, etc.)
Databases configured for OLAP use a multidimensional data model, allowing for
complex analytical and ad hoc queries with a rapid execution time. They borrow aspects
of navigational databases, hierarchical databases and relational databases.

Installation Firm
You can trust our firm to skillfully execute your installation promptly and
professionally. Our reliable company installation teams complete your job to
craftsman standards, supported by dedicated project managers who keep
you informed through every step of your project.
Our Mission
To provide industry leading installation services to our retail and hospitality
partners with a commitment to integrity, quality, and service.
Our Commitment
We truly care about our clients and do whatever it takes to deliver complete
customer satisfaction. While we take our projects seriously, we enjoy our
work and value the long-term relationships we've developed with our client
partners.
Installers
We understand the value of having an experienced and qualified installation
force, so we've invested in both trade skills and technology training to
ensure that our installers not only have the expertise to expertly complete
your projects, but also have the means to communicate mission critical
information. Whether from smart phones, tablets, digital cameras, or
5

laptops, our field technicians will ensure you have your deliverables when
you need them.
Project Managers
Each of our accounts is assigned a dedicated project management team to
serve as your single point of contact for daily communications, status
reports, and project updates. From project kickoff to completion, our PM's
excel at anticipating problems before they occur and reacting quickly with
the most efficient solutions.
Management Team
All of our management team have long term ties to the retail industry. In
fact, they average 25+ years each in sales, manufacturing, and construction
disciplines. This well-rounded experience gives us a unique perspective to
understand all aspects of your project, thus ensuring a successful outcome.

The relationships between the tables

Append Queries
DBank Append
INSERT INTO DBank ( BK_name, BK_fiscal_code, BK_address ) IN
'C:\Users\Oana\Desktop\Database2.accdb'
7

SELECT Bank.BK_name, Bank.BK_fiscal_code, Bank.BK_address


FROM Bank;

DClients Append
INSERT INTO DClients ( Cl_name, Cl_CNP, Cl_address, Cl_IBAN, Cl_issue_date ) IN
'C:\Users\Oana\Desktop\Database2.accdb'
SELECT Clients.Cl_name, Clients.Cl_CNP, Clients.Cl_address, Clients.Cl_IBAN,
Clients.Cl_issue_date
FROM Clients;

DFirm Append
INSERT INTO DFirm ( F_name, F_fiscal_code ) IN
'C:\Users\Oana\Desktop\Database2.accdb'
SELECT Firm.F_name, Firm.F_fiscal_code
FROM Firm;

DPayment Order Append


INSERT INTO DPaymentOrder ( PO_no, PO_date, PO_amount ) IN
'C:\Users\Oana\Desktop\Database2.accdb'
SELECT [Payment Order].PO_no, [Payment Order].PO_date, [Payment
Order].PO_amount
FROM [Payment Order];

DSupplier Append
INSERT INTO DSupplier ( S_name, S_materials, S_fiscal_code ) IN
'C:\Users\Oana\Desktop\Database2.accdb'
SELECT Supplier.S_name, Supplier.S_materials, Supplier.S_fiscal_code
FROM Supplier;

DTransaction time Append


INSERT INTO DTransactionTime ( C_date, C_month, C_year ) IN
'C:\Users\Oana\Desktop\Database2.accdb'
SELECT TransactionTime.C_date, TransactionTime.C_month, TransactionTime.C_year
FROM TransactionTime;

FContract Append
INSERT INTO FContract ( C_no, C_date, Cl_name, Cl_CNP, Cl_address, Cl_issue_date,
F_name, F_fiscal_code ) IN 'C:\Users\Oana\Desktop\Database2.accdb'
SELECT Contract.C_no, Contract.C_date, Contract.Cl_name, Contract.Cl_CNP,
Contract.Cl_address, Contract.Cl_issue_date, Contract.F_name,
Contract.F_fiscal_code
FROM Contract;

Make Table Queries


Make table DBank
SELECT Bank.BK_name, Bank.BK_fiscal_code, Bank.BK_address INTO DBank IN
'C:\Users\Oana\Desktop\Database2.accdb'
FROM Bank;

Make table DClients


SELECT Clients.Cl_name, Clients.Cl_CNP, Clients.Cl_address, Clients.Cl_IBAN,
Clients.Cl_issue_date INTO DClients IN 'C:\Users\Oana\Desktop\Database2.accdb'
FROM Clients;
Make table DFirm
SELECT Firm.F_name, Firm.F_fiscal_code INTO DFirm IN
'C:\Users\Oana\Desktop\Database2.accdb'
FROM Firm;
Make table DPaymentOrder
SELECT [Payment Order].PO_no, [Payment Order].PO_date, [Payment
Order].PO_amount INTO DPaymentOrder IN
'C:\Users\Oana\Desktop\Database2.accdb'
FROM [Payment Order];
Make table DSupplier
SELECT Supplier.S_name, Supplier.S_materials, Supplier.S_fiscal_code INTO
DSupplier IN 'C:\Users\Oana\Desktop\Database2.accdb'
FROM Supplier;
Make table DTransactionTime
SELECT TransactionTime.C_date, TransactionTime.C_month, TransactionTime.C_year
INTO DTransactionTime IN 'C:\Users\Oana\Desktop\Database2.accdb'
FROM TransactionTime;
Make table FContract
SELECT Contract.C_no, Contract.C_date, Contract.Cl_name, Contract.Cl_CNP,
Contract.Cl_address, Contract.Cl_issue_date, Contract.F_name,
Contract.F_fiscal_code INTO FContract IN 'C:\Users\Oana\Desktop\Database2.accdb'
FROM Contract;

Data warehouse

10

11

12

Вам также может понравиться