Grupne funkcije. Grupne funkcije rade nad skupinom redova i vraćaju jedan red za svaku grupisanu grupu

Size: px
Start display at page:

Download "Grupne funkcije. Grupne funkcije rade nad skupinom redova i vraćaju jedan red za svaku grupisanu grupu"

Transcription

1 Grupisanje podataka

2 Ciljevi Preoznati mogućnosti groupnih funkcija Upotrijebiti groupne funkcije u SELECT iskazima Grupisati podatake upotrebom GROUP BY klauzule Uključiti ili isključiti grupisane redova upotrebom HAVING klauzule

3 Grupne funkcije Grupne funkcije rade nad skupinom redova i vraćaju jedan red za svaku grupisanu grupu EMPLOYEES DEPTNO SAL Maksimalna plata u employees tabeli MAX(SAL)

4 Tipovi grupnih funkcija AVG COUNT MAX MIN STDDEV SUM VARIANCE SELECT [column,] group_function(column) FROM table [WHERE condition] [GROUP BY column] [ORDER BY column];

5 AVG, SUM, MIN i MAX funkcije AVG i SUM koriste se za numeričke podatke MIN i MAX funkcije vraćaju minimalnu i maksimalnu vrijednost iz grupe podataka za bilo koji tip podatka SQL> SELECT AVG(sal), MAX(sal), 2 MIN(sal), SUM(sal) 3 FROM emp 4 WHERE job LIKE 'SALES%'; AVG(SAL) MAX(SAL) MIN(SAL) SUM(SAL)

6 COUNT funkcija COUNT(Izraz) vraća broj slogova sa ne NULL vrijednostima za izraz SQL> SELECT COUNT(*) COUNT(*) SQL> SELECT COUNT(commission_pct) COUNT(COMMISSION_PCT)

7 NVL i DISTINCT sa GROUP-nim funkcijama COUNT(DISTINCT izraz) vraća broj različitih non-null vrijednosti izraza izraz NVL funkcijom se forsira da grupne funkcije prihvate i Null vrijednosti kolona SQL> SELECT COUNT(distinct department_id) COUNT(DISTINCT DEPARTMENT_ID) SQL> SELECT AVG(NVL(commission_pct,0)) PROSJEK PROSJEK

8 Grupe podataka EMPLOYEES DEPTNO SAL Prosječna č plata za odjele 10, 20 i DEPTNO AVG(SAL)

9 Grupisanje podataka sa GROUP BY klauzulom Za podjelu redova u tabeli na manje grupe koristi se GROUP BY klauzula SELECT column, group_function(column) FROM table [WHERE condition] [GROUP BY group_by_expression] [ORDER BY column]; Sve kolone u SELECT listi koje nisu group-ne funkcije moraju biti u GROUP BY klauzuli SQL> SELECT deptment_id, AVG(salary) 3 GROUP BY department_id; DEPTNO AVG(SAL)

10 Grupisanje po više kolona EMPLOYEES DEPTNO JOB_TITLE SAL MANAGER PRESIDENT CLERK CLERK CLERK ANALYST ANALYST MANAGER SALESMAN MANAGER SALESMAN CLERK SALESMAN SALESMAN 1250 suma plata grupisana po odjelima i poslovima u tabeli zaposlenih DEPTNO JOB_TITLE SUM(SAL) CLERK 1300 MANAGER 2450 PRESIDENT 5000 ANALYST 6000 CLERK 1900 MANAGER 2975 CLERK 950 MANAGER 2850 SALESMAN 5600

11 Upotreba GROUP BY klauzule sa više kolona SQL> SELECT department_id deptno, job_id, sum(salary) 3 GROUP BY department_id, job_id; DEPTNO JOB_ID SUM(SALARY) CLERK MANAGER PRESIDENT ANALYST CLERK rows selected.

12 Greške pri korištenju GROUP funkcija Sve kolone ili izrazi iz SELECT liste koji nisu grupišuće funkcije moraju biti u GROUP BY klauzuli SQL> SELECT department_id, COUNT(last_name) ; SELECT department_id, COUNT(last_name) * ERROR at line 1: ORA-00937: not a single-group group function

13 Greške pri korištenju GROUP funkcija Grupišuće funkcije ne mogu se koristiti u WHERE klauzuli za restrikciju podataka HAVING klauzula se koristi za restrikciju podataka po grupi SQL> SELECT department_id, AVG(salary) 3 WHERE AVG(salary) > GROUP BY deptment_id; WHERE AVG(salary) > 2000 * ERROR at line 3: ORA-00934: group function is not allowed here

14 Isključivanje grupnih rezultata EMPLOYEES DEPTNO SAL maksimalna plata po grupi veća do 2900 BAM DEPTNO MAX(SAL)

15 Isključivanje grupnih rezultata HAVING klauzula Upotrebom HAVING klauzule vrši se restrikcija rezultata: Redovi se grupišu Primijeni se grupišuća funkcija Vrši se selekcija grupisanih redova pomoću HAVING klauzule SELECT column, group_function FROM table [WHERE condition] [GROUP BY group_by_expression] [HAVING group_condition] [ORDER BY column];

16 HAVING klauzula SQL> SELECT department_id deptno, max(salary) 3 GROUP BY department_id 4 HAVING max(salary)>2900; DEPTNO MAX(SALARY) SQL> SELECT job_id, SUM(salary) PAYROLL 3 WHERE job NOT LIKE 'SALES%' 4 GROUP BY job_id 5 HAVING SUM(salary)> ORDER BY SUM(salary); JOB_ID PAYROLL ANALYST 6000 MANAGER 8275

17 Ugniježdene grupne funkcije SQL> SELECT max(avg(salary)) 3 GROUP BY department_id; MAX(AVG(SALARY)) Upotreba dodatnih kolona prilikom pisanja ugniježdenih grupnih funkcija može izazvati dodatne probleme čak i sa prisustvom GROUP BY klauzule SQL> SELECT department_id, max(avg(salary)) 3 GROUP BY department_id; select department_id, max(sum(salary)) * ERROR at line 1: ORA-00937: not a single-group group function

18 Kratak pregled SELECT column, group_function(column) FROM table [WHERE condition] [GROUP BY group_by_expression] [HAVING group_condition] [ORDER BY column]; Izraz WHERE GROUP BY HAVING Opis Klauzula za restriktivno poređenje podataka koji nisu grupisani Grupisanje kolona koje nisu grupne funkcije Klauzula za restriktivno poređenje podataka koji su ili grupne funkcije ili obične kolone tabele

19 Grupisanje podataka

CH-15 SIMPLE QUERY AND GROUPING

CH-15 SIMPLE QUERY AND GROUPING SQL SELECT STATEMENT. ASHOK GARG CH-15 SIMPLE QUERY AND GROUPING The SELECT statement is used to retrieve information from a table. Syntax: SELECT FROM [WHERE ] [GROUP

More information

SQL funkcije. select trunc(134,-2) from dual; Vraća vrednost broja m "odsečenu" na n decimala. Primer 1.

SQL funkcije. select trunc(134,-2) from dual; Vraća vrednost broja m odsečenu na n decimala. Primer 1. SQL funkcije Funkcija Opis Primer ABS(n) Absolutna vrednost broja n select abs(-55) from CEIL(n) Prvi celi broj veći od n select ceil(17.8) from COS(n) Trigonometrijska funkcija kosinus select cos(3.14159/2)

More information

RDBMS Using Oracle. Lecture week 5. Lecture Overview

RDBMS Using Oracle. Lecture week 5. Lecture Overview RDBMS Using Oracle Lecture week 5 CASE Expression Group Functions Lecture Overview AVG MAX MIN SUM COUNT Etc Working with Date Decode Function INSERT, UPDATE and DELETE commands Commit and Rollback, Alter

More information

ABSTRACT INTRODUCTION IMPORTANT CONCEPTS. John Jay King, King Training Resources

ABSTRACT INTRODUCTION IMPORTANT CONCEPTS. John Jay King, King Training Resources ANALYZE THIS! USING ORACLE8I ANALYTIC FUNCTIONS John Jay King, King Training Resources ABSTRACT Oracle 8.1.6 introduced new Analytic functions allowing complex statistical calculations to be accomplished

More information

Spool Generated For Class of Oracle By Satish K Yellanki

Spool Generated For Class of Oracle By Satish K Yellanki SQL> CREATE VIEW Employees 3 SELECT 4 Empno "ID Number", 5 Ename Name, 6 Sal "Basic Salary", 7 Job Designation 8 FROM Emp; SQL> SELECT 2 Empno "ID Number", 3 Ename Name, 4 Sal "Basic Salary", 5 Job Designation

More information

PATANJALI RISHIKUL, PRAYAGRAJ

PATANJALI RISHIKUL, PRAYAGRAJ (a) (b) (c) (d) (e) (f) (g) (h) PATANJALI RISHIKUL, PRAYAGRAJ Assignment # 1 1. Create a database called MyOffice 2. Open database 3. Given the following EMPLOYEE relation, answer the questions. TABLE

More information

THE INTEGRATION OF CROATIAN HOTEL INDUSTRY INTO THE STANDARD EUROPEAN AND INTERNATIONAL PERFORMANCE MEASUREMENT SYSTEM

THE INTEGRATION OF CROATIAN HOTEL INDUSTRY INTO THE STANDARD EUROPEAN AND INTERNATIONAL PERFORMANCE MEASUREMENT SYSTEM IVANKA AVELINI HOLJEVAC, Ph.D., Full Professor HELGA MASKARIN, Ph.D., Senior Assistant Faculty of Tourism and Hospitality Management, Opatija, University of Rijeka, Croatia THE INTEGRATION OF CROATIAN

More information

5/10/2018. Connor McDonald

5/10/2018. Connor McDonald 1 Connor McDonald 1 3 4 2 connor-mcdonald.com 5 asktom.oracle.com 6 3 why talk about SQL? # 1 7 after all... 8 4 9 NoSQL non relational 10 5 why talk about SQL? # 2 11 SQL invented "cool" 12 6 MICROSERVICES

More information

SIMPLE DAILY ET 0 ESTIMATION TECHNIQUES UDC (045)=111

SIMPLE DAILY ET 0 ESTIMATION TECHNIQUES UDC (045)=111 FACTA UNIVERSITATIS Series: Architecture and Civil Engineering Vol. 6, N o, 008, pp. 187-19 DOI:10.98/FUACE080187T SIMPLE DAILY ET 0 ESTIMATION TECHNIQUES UDC 66.85 (045)=111 Slaviša Trajković 1, Vladimir

More information

On Off Regulator Temperature On Off Temperature Regulator (Vježba 5)

On Off Regulator Temperature On Off Temperature Regulator (Vježba 5) University of Montenegro Faculty of Electrical Engineering Podgorica Laboratorijske vježbe iz predmeta Industrijska elektronika On Off Regulator Temperature On Off Temperature Regulator (Vježba 5) Predmetni

More information

Human Resources Management in aspect of Sustainable Development

Human Resources Management in aspect of Sustainable Development Human Resources Management in aspect of Sustainable Development Gorana Sandrić Holcim Croatia, HR manager Holcim (Hrvatska) d.o.o. 2009 Vision and mission Vision: Our vision is to provide foundations for

More information

Pet činjenica koje morate znati o klimatskim promenama

Pet činjenica koje morate znati o klimatskim promenama Pet činjenica koje morate znati o klimatskim promenama Jeff Price, Shaun Martin World Wildlife Fund, Inc. 2011 All rights reserved. 5 things you should know for adaptation 1. CO 2 is just one of several

More information

Column Functions and Grouping

Column Functions and Grouping Column Functions and Grouping Course materials may not be reproduced in whole or in part without the prior written permission of IBM. 4.0.3 3.3.1 Unit Objectives After completing this unit, you should

More information

PRILOG III OBRASCI UVERENJA O KRETANJU ROBE EUR.1 I ZAHTEVA ZA IZDAVANJE UVERENJA O KRETANJU ROBE EUR.1

PRILOG III OBRASCI UVERENJA O KRETANJU ROBE EUR.1 I ZAHTEVA ZA IZDAVANJE UVERENJA O KRETANJU ROBE EUR.1 PRILOG III OBRASCI UVERENJA O KRETANJU ROBE EUR.1 I ZAHTEVA ZA IZDAVANJE UVERENJA O KRETANJU ROBE EUR.1 Uputstvo za štampanje: 1. Svaki formular će biti 210 x 297 milimetara; može se dopustiti odstupanje

More information

SQL. Connor McDonald 8/13/2018. The meanest, fastest thing out there. Connor McDonald

SQL. Connor McDonald 8/13/2018. The meanest, fastest thing out there. Connor McDonald SQL The meanest, fastest thing out there Connor McDonald 1 Copyright 2017, Oracle and/or its affiliates. All rights reserved. Connor McDonald 1 3 4 2 Typical speaker ego slide blog connor-mcdonald.com

More information

Andrija Petrović

Andrija Petrović Andrija Petrović Andrija.petrovic@tp-vz.hr www.ipotential.eu Tadej T d j Černivec Č i Tadej.cernivec@tia.si www.ipotential.eu TIA is public agency for implementation of the National Research and Innovation

More information

Spool Generated For Class of Oracle By Satish K Yellanki

Spool Generated For Class of Oracle By Satish K Yellanki SQL> SELECT MGR, COUNT(*) 2 FROM Emp 3 GROUP BY MGR; MGR COUNT(*) ---------- ---------- 7566 2 7698 5 7782 1 7788 1 7839 3 7902 1 1 7 rows selected. SQL> DECLARE 2 V_Ename Emp.Ename%TYPE; 3 V_Job Emp.Job%TYPE;

More information

Lecture9: Data Manipulation in SQL, Advanced SQL queries

Lecture9: Data Manipulation in SQL, Advanced SQL queries IS220 / IS422 : Database Fundamentals College of Computer and Information Sciences - Information Systems Dept. Lecture9: Data Manipulation in SQL, Advanced SQL queries Ref. Chapter5 Prepared by L. Nouf

More information

CENOVNIK 2017 GOOGLE ANALYTICS 31.2% 68.8% STANA SAJTA 7% 6% 15% 15-19 20-29 30-39 40-49 50-59 60+ PO POLU ŽENE MUŠKARCI OSNOVNO SREDNJE VISOKO 7% 32% 32% 13% PO STEPENU OBRAZOVANJA 34% 68% 59% 27% RADNI

More information

SQL and PL/SQL. Connor McDonald 7/17/2018. The meanest, fastest thing out there. Connor McDonald

SQL and PL/SQL. Connor McDonald 7/17/2018. The meanest, fastest thing out there. Connor McDonald SQL and PL/SQL The meanest, fastest thing out there Connor McDonald 1 Copyright 2017, Oracle and/or its affiliates. All rights reserved. Connor McDonald 1 3 4 2 Typical speaker ego slide blog connor-mcdonald.com

More information

MAPIRANJE POTENCIJALA POLJOPRIVREDNE I ŠUMSKE BIOMASE U HRVATSKOJ MAPPING OF AGRICULTURAL AND WOOD BIOMASS POTENTIAL IN CROATIA

MAPIRANJE POTENCIJALA POLJOPRIVREDNE I ŠUMSKE BIOMASE U HRVATSKOJ MAPPING OF AGRICULTURAL AND WOOD BIOMASS POTENTIAL IN CROATIA MAPIRANJE POTENCIJALA POLJOPRIVREDNE I ŠUMSKE BIOMASE U HRVATSKOJ MAPPING OF AGRICULTURAL AND WOOD BIOMASS POTENTIAL IN CROATIA Boris Ćosić, Neven Duić Department of Energy, Power Engineering and Environment

More information

Relationship between energy consumption and economic growth in 30. countries in Europe panel

Relationship between energy consumption and economic growth in 30. countries in Europe panel Relationship between energy consumption and economic growth in 30 countries in Europe panel Saša Stjepanović, Ph.D., Juraj Dobrila University of Pula, Faculty of Economics and Tourism «Dr. Mijo Mirković»,

More information

Nested SQL Dr. Zhen Jiang

Nested SQL Dr. Zhen Jiang Nested SQL Dr. Zhen Jiang Sometimes we need the result of one query prior to the querying of another.consider the following: List the name and age of all employees who are younger than the average age

More information

Relational Normalization Theory. Dr. Philip Cannata

Relational Normalization Theory. Dr. Philip Cannata Relational Normalization Theory Dr. Philip Cannata 1 Designing Databases Using Normalization On No!!! There s another way to design a good set of tables besides Conceptual and Logical Modeling. Normalization

More information

LECTURE9-PART2: DATA MANIPULATION IN SQL, ADVANCED SQL QUERIES AND VIEW

LECTURE9-PART2: DATA MANIPULATION IN SQL, ADVANCED SQL QUERIES AND VIEW College of Computer and Information Sciences - Information Systems Dept. LECTURE9-PART2: DATA MANIPULATION IN SQL, ADVANCED SQL QUERIES AND VIEW Ref. Chapter5 and 6 from Database Systems: A Practical Approach

More information

A32. PRIKLJU^NI ELEMENTI OD ALUMINIJA DEBLJINE 0,6 mm. Fittings made up of aluminium thickness 0,6 mm. LIM-MONT d.o.o.

A32. PRIKLJU^NI ELEMENTI OD ALUMINIJA DEBLJINE 0,6 mm. Fittings made up of aluminium thickness 0,6 mm. LIM-MONT d.o.o. IM-MONT d.o.o. MB: 344 987 4 poduze ce za pro izvod nju limenih p roizvoda, trgovinu i usluge V R B N O V E C, B. R a d i c a 8, 4 2 2 3 2 o n j i M a r t i j a n e c, RVT S K ( C R O TI ) E - m a i l

More information

OF HEALTH RISK ZONES FROM AIR POLLUTION IN THE CITY OF NIŠ CAUSED BY THE PRESENCE OF SOOT WITH THE USE OF THE RBF NEURAL NETWORK

OF HEALTH RISK ZONES FROM AIR POLLUTION IN THE CITY OF NIŠ CAUSED BY THE PRESENCE OF SOOT WITH THE USE OF THE RBF NEURAL NETWORK FACTA UNIVERSITATIS Series: Working and Living Environmental Protection Vol. 10, N o 2, 2013, pp. 119-128 DETERMINATION OF HEALTH RISK ZONES FROM AIR POLLUTION IN THE CITY OF NIŠ CAUSED BY THE PRESENCE

More information

SIGURNOST GRAĐEVINSKIH KONSTRUKCIJA SAFETY OF CONSTRUCTION STRUCTURES

SIGURNOST GRAĐEVINSKIH KONSTRUKCIJA SAFETY OF CONSTRUCTION STRUCTURES UDK : 624.46.3 SIGUNOST GAĐEVINSKIH KONSTUKCIJA Slavko Zdravković, Dragan Zlatkov, Biljana Mladenović, Dragana Turnić ezime U radu se sa tehničkog i funkcionalnog stanovišta definiše faktor sigurnosti

More information

SQL Programming 1 SQL1 1

SQL Programming 1 SQL1 1 SQL Programming 1 The SELECT-FROM-WHERE Structure Single Relation Queries ORDER BY LIKE IS (NOT) NULL DISTINCT Aggregation Queries Grouping Having Oracle SQL*Plus Readings: Section 6.1 and 6.4 of Textbook.

More information

Lanteria HR Report Center

Lanteria HR Report Center User Guide for version 4.2.0 Copyright 2015 Lanteria Table of Contents 1 Introduction... 3 1.1 Report Center Overview... 3 1.2 Terminology List... 3 2 General Reports... 4 2.1 Run General Reports... 4

More information

INFLUENCE OF COPPER FINENESS TO WIRE MECHANICAL PROPERTIES AT WIRE FORMING

INFLUENCE OF COPPER FINENESS TO WIRE MECHANICAL PROPERTIES AT WIRE FORMING INFLUENCE OF COPPER FINENESS TO WIRE MECHANICAL PROPERTIES AT WIRE FORMING Michal Tkac 1, Milan Majernik 2 1 University of Economics in Bratislava, 2 Technical University in Kosice ABSTRACT A production

More information

PESTICIDE RESIDUES ON FOOD OF PLANT ORIGIN IN CROATIA REZIDUI PESTICIDA NA HRANI BILJNOG PODRIJETLA U HRVATSKOJ

PESTICIDE RESIDUES ON FOOD OF PLANT ORIGIN IN CROATIA REZIDUI PESTICIDA NA HRANI BILJNOG PODRIJETLA U HRVATSKOJ I. MEĐUNARODNA KONFERENCIJA Cjeloviti pristup okolišu Sisak, 13 14. rujna 2018. PESTICIDE RESIDUES ON FOOD OF PLANT ORIGIN IN CROATIA REZIDUI PESTICIDA NA HRANI BILJNOG PODRIJETLA U HRVATSKOJ Aleksandar

More information

DANAS JE NEPRIHVATLJIVA ZGRADA BEZ URAĐENOG TEHNIČKOG PRIJEMA AN UNCOMMISSIONED BUILDING IS NOT AN OPTION TODAY

DANAS JE NEPRIHVATLJIVA ZGRADA BEZ URAĐENOG TEHNIČKOG PRIJEMA AN UNCOMMISSIONED BUILDING IS NOT AN OPTION TODAY DANAS JE NEPRIHVATLJIVA ZGRADA BEZ URAĐENOG TEHNIČKOG PRIJEMA AN UNCOMMISSIONED BUILDING IS NOT AN OPTION TODAY Andrés SEPÚLVEDA *, ASHRAE Chemical Engineer, Spain Chapter President, Commtech CEO, TC 7.9

More information

PRINCIPLES FOR RISK REDUCTION IN THE DESIGN OF MACHINERY UDC : Žarko Janković, Aleksandra Petković

PRINCIPLES FOR RISK REDUCTION IN THE DESIGN OF MACHINERY UDC : Žarko Janković, Aleksandra Petković FACTA UNIVERSITATIS Series: Working and Living Environmental Protection Vol. 10, N o 2, 2013, pp. 149-156 PRINCIPLES FOR RISK REDUCTION IN THE DESIGN OF MACHINERY UDC 331.452:62-11 Žarko Janković, Aleksandra

More information

SQL and PL/SQL. Connor McDonald 4/24/2018. The meanest, fastest thing out there. Connor McDonald

SQL and PL/SQL. Connor McDonald 4/24/2018. The meanest, fastest thing out there. Connor McDonald SQL and PL/SQL The meanest, fastest thing out there Connor McDonald 1 Copyright 2017, Oracle and/or its affiliates. All rights reserved. Connor McDonald 1 3 4 2 Typical speaker ego slide blog connor-mcdonald.com

More information

FEEDNEEDS THE SERBIAN RESULTS

FEEDNEEDS THE SERBIAN RESULTS FEEDNEEDS THE SERBIAN RESULTS Rezultati upitnika FEED PRODUCTION IN SERBIA Proizvodnja hrane za zivotinje u Srbiji Prof. dr Luciano Pinotti Dr Olivera Djuragic Serbian Feed Manufacturers' Association Association

More information

IMPORTANCE OD EMOTIONAL INTELIGENCE TO SPORT ACTORS AND ITS INFLUENCE TO CREATING ORGANIZATIONAL CLIMATE

IMPORTANCE OD EMOTIONAL INTELIGENCE TO SPORT ACTORS AND ITS INFLUENCE TO CREATING ORGANIZATIONAL CLIMATE IMPORTANCE OD EMOTIONAL INTELIGENCE TO SPORT ACTORS AND ITS INFLUENCE TO CREATING ORGANIZATIONAL CLIMATE Enes Huseinagić & Adnan Hodžić Primary school Jala Tuzla, Bosnia and Herzegovina Original scientific

More information

Methods for determination of centre of stiffness and torsional radius in multi-storey buildings

Methods for determination of centre of stiffness and torsional radius in multi-storey buildings DOI: https://doi.org/10.5592/co/zt.2017.30 Methods for determination of centre of stiffness and torsional radius in multi-storey buildings Riste Volčev, Nikola Postolov Ss. Cyril and Methodius University

More information

Margareta ŠEPAROVIĆ, Ivan BARBIĆ

Margareta ŠEPAROVIĆ, Ivan BARBIĆ TREĆA REGIONALNA KONFERENCIJA O PROCJENI UTJECAJA NA OKOLIŠ THIRD REGIONAL CONFERENCE ON ENVIRONMENTAL IMPACT ASSESSMENT Vodice, Hrvatska / Croatia 13.-16. rujna 2017. / September 13 th -16 th, 2017 Margareta

More information

ASSESSMENT APPROACH TOWARDS COMPATIBILITY OF SERVICES UDC : Mladen Velev, Kiril Anguelov

ASSESSMENT APPROACH TOWARDS COMPATIBILITY OF SERVICES UDC : Mladen Velev, Kiril Anguelov FACTA UNIVERSITATIS Series: Economics and Organization Vol. 2, N o 1, 2003, pp. 53-58 ASSESSMENT APPROACH TOWARDS COMPATIBILITY OF SERVICES UDC 338.46:339.13 Mladen Velev, Kiril Anguelov Technical University

More information

MEASUREMENT OF O 2 IN COMBUSTION CHAMBER WITH AN ANALYSIS OF THE BURN OUT RATIO

MEASUREMENT OF O 2 IN COMBUSTION CHAMBER WITH AN ANALYSIS OF THE BURN OUT RATIO ISSN 1848-0071 662.9+543.632.44=111 Recieved: 2013-08-28 Accepted: 2014-02-12 Professional paper MEASUREMENT OF O 2 IN COMBUSTION CHAMBER WITH AN ANALYSIS OF THE BURN OUT RATIO ONDŘEJ BARTOŠ, MICHAL KOLORATNÍK,

More information

SOME PROPERTIES OF GUYON S METHOD FOR DRAIN SPACING DETERMINATION ON THE MARSHY GLEY SOIL

SOME PROPERTIES OF GUYON S METHOD FOR DRAIN SPACING DETERMINATION ON THE MARSHY GLEY SOIL Journal of Agricultural Sciences Vol. 5, No 1, 25 Pages 33-39 UDC: 631.62:631.445.24 Original scientific paper SOME PROPERTIES OF GUYON S METHOD FOR DRAIN SPACING DETERMINATION ON THE MARSHY GEY SOI Nevenka

More information

CARACTERISATION OF TITANIUM NITRIDE LAYERS DEPOSITED BY REACTIVE PLASMA SPRAYING

CARACTERISATION OF TITANIUM NITRIDE LAYERS DEPOSITED BY REACTIVE PLASMA SPRAYING DOI: 10.2478/v10211-011-0003-2 CARACTERISATION OF TITANIUM NITRIDE LAYERS DEPOSITED BY REACTIVE PLASMA SPRAYING Radu Alexandru Roşu 1*, Viorel-Aurel Şerban 1, Alexandra Ioana Bucur 2, Mihaela Popescu 1,

More information

POREĐENJE 2D I 3D MODELIRANJA TRANSPORTNIH PROCESA PRILIKOM SAGOREVANJA BALIRANIH POLJOPRIVREDNIH OSTATAKA

POREĐENJE 2D I 3D MODELIRANJA TRANSPORTNIH PROCESA PRILIKOM SAGOREVANJA BALIRANIH POLJOPRIVREDNIH OSTATAKA POREĐENJE D I 3D MODELIRANJA TRANSPORTNIH PROCESA PRILIKOM SAGOREVANJA BALIRANIH POLJOPRIVREDNIH OSTATAKA A. M. Erić *, S. Đ. Nemoda *, M. S. Komatina **, D. V. Dakić ***, B. S. Repić *, M. R. Mladenović

More information

00000000000000000000000011111110000111111100011111110001100011111100011100001100110011000011100000000000000000000000000000000000000000000000000000 00000000000000000000000011000011001100000110011000011001100110000110011110001100110011001110000000000000000000000000000000000000000000000000000000

More information

BESPLATNE UREDSKE APLIKACIJE EASY ACCESS

BESPLATNE UREDSKE APLIKACIJE EASY ACCESS BESPLATNE UREDSKE APLIKACIJE EASY ACCESS Željko Kovačević Tehničko veleučilište u Zagrebu Sažetak Danas postoje razna rješenja besplatnih uredskih aplikacija. Međutim, većina njih je fokusirana na aplikacije

More information

BESPLATNE UREDSKE APLIKACIJE EASY ACCESS

BESPLATNE UREDSKE APLIKACIJE EASY ACCESS DOI: 10.19279/TVZ.PD.2014-2-1-10 BESPLATNE UREDSKE APLIKACIJE EASY ACCESS Željko Kovačević Tehničko veleučilište u Zagrebu Sažetak Danas postoje razna rješenja besplatnih uredskih aplikacija. Međutim,

More information

COINS Ti PO/IN Inventory Turnover Report

COINS Ti PO/IN Inventory Turnover Report Modules Affected: Purchase Order/Inventory Versions Affected: COINS Ti (revised for software level 9.7c2.33TI) Documentation Updated: New fields and screens described within this CE document are included

More information

Oracle MOOC: SQL Fundamentals

Oracle MOOC: SQL Fundamentals Week 2 Homework for Lesson 2 Homework is your chance to put what you've learned in this lesson into practice. This homework is not "graded" and you are encouraged to write additional code beyond what is

More information

CUPA Procedures. Date September 29, Theresa Porter, Information Technology Consultant, BOR. Doug Corwin, Information Technology Consultant, BOR

CUPA Procedures. Date September 29, Theresa Porter, Information Technology Consultant, BOR. Doug Corwin, Information Technology Consultant, BOR Title CUPA Procedures Version 1.0 Date September 29, 2010 Created by Theresa Porter, Information Technology Consultant, BOR Edited by Doug Corwin, Information Technology Consultant, BOR Copyright South

More information

Activant SDI Daily Transactions and Balancing your INVALUE report to the General Ledger

Activant SDI Daily Transactions and Balancing your INVALUE report to the General Ledger Activant SDI Daily Transactions and Balancing your INVALUE report to the General Ledger Balancing Your INVALUE Report to your GL suite course 2 of 3 This class is designed for Accountants or Bookkeepers

More information

Biblid: (2016) 20; 1; p 4-8

Biblid: (2016) 20; 1; p 4-8 Biblid: 1821-4487 (2016) 20; 1; p 4-8 UDK: 662.6:63 Expert Paper Stručni rad PROCESS EQUIPMENT CONDITION MONITORING SYSTEMS BASED ON VIBRATION ACQUISITION AN OVERVIEW AND A CASE STUDY SISTEMI ZA PRAĆENJE

More information

POSSIBILITIES OF USING THERMOGRAVIMETRIC ANALYSIS FOR ENERGETIC

POSSIBILITIES OF USING THERMOGRAVIMETRIC ANALYSIS FOR ENERGETIC ISSN 1848-0071 662.7+662.613.1=111 Recieved: 2015-01-19 Accepted: 2015-08-17 Review POSSIBILITIES OF USING THERMOGRAVIMETRIC ANALYSIS FOR ENERGETIC JIŘİ MOSKALİK, LADISLAV ŠNAJDÁREK, OTAKAR ŠTELCL Department

More information

POSSIBILITIES OF USING THERMOGRAVIMETRIC ANALYSIS FOR ENERGETIC

POSSIBILITIES OF USING THERMOGRAVIMETRIC ANALYSIS FOR ENERGETIC ISSN 1848-0071 662.7+662.613.1=111 Recieved: 2015-01-19 Accepted: 2015-08-17 Review POSSIBILITIES OF USING THERMOGRAVIMETRIC ANALYSIS FOR ENERGETIC JIŘİ MOSKALİK, LADISLAV ŠNAJDÁREK, OTAKAR ŠTELCL Department

More information

THE CAPACITY OF CONFLICT POINTS BETWEEN DOUBLE-TRACK LINES

THE CAPACITY OF CONFLICT POINTS BETWEEN DOUBLE-TRACK LINES MIRKO CICAK, D.Sc. Institut prometa i veza Zagreb, Ku~lanova 2, Republika Hrvatska DRAGAN BADANJAK, D.Sc. Fakultct prometnih znanosti Zagreb, Vukeliceva 4, Republika Hrvatska JOSIP KUKEC, D.Sc. Hrvatske

More information

AUTOID BASED INTEGRATED PRODUCT TRACEABILITY ALONG THE PRODUCT LIFE CYCLE UDC Şeref Erkayhan

AUTOID BASED INTEGRATED PRODUCT TRACEABILITY ALONG THE PRODUCT LIFE CYCLE UDC Şeref Erkayhan FACTA UNIVERSITATIS Series: Mechanical Engineering Vol. 7, N o 1, 2009, pp. 73-80 AUTOID BASED INTEGRATED PRODUCT TRACEABILITY ALONG THE PRODUCT LIFE CYCLE UDC 658.511.2 Şeref Erkayhan Business Development

More information

Analytic Functions 101

Analytic Functions 101 Analytic Functions 101 Kim Berg Hansen KiBeHa Middelfart, Denmark Keywords: SQL, analytics Introduction The company I have worked at since 2000 as developer/architect is a major Danish retail company called

More information

Reading Plans in the cloud or not Revised November 2017

Reading Plans in the cloud or not Revised November 2017 Reading Plans in the cloud or not Revised November 2017 This free training webinar is a lesson from the Hotsos Optimizing Oracle SQL, Intensive (OPINT) course. Please visit our website for more information.

More information

2/5/2019. Connor McDonald. Copyright 2018, Oracle and/or its affiliates. All rights reserved.

2/5/2019. Connor McDonald. Copyright 2018, Oracle and/or its affiliates. All rights reserved. Connor McDonald Copyright 2018, Oracle and/or its affiliates. All rights reserved. 1 2 2 1 3 3 mi dispiace non parlo italiano :-( Copyright 2018, Oracle and/or its affiliates. All rights reserved. 4 2

More information

INVESTIGATING MACHINERY MANAGEMENT PARAMETERS WITH COMPUTER TOOLS

INVESTIGATING MACHINERY MANAGEMENT PARAMETERS WITH COMPUTER TOOLS POLJOPRIVREDNA TEHNIKA Godina XXXVII Broj 1, jul 2012. Strane: 35-46 Poljoprivredni fakultet Institut za poljoprivrednu tehniku UDK: 681.3 Originalni naučni rad Original scientific paper INVESTIGATING

More information

DISTRIBUCIJSKE GREŠKE U PROCESU PROCJENE PERFORMANSI ZAPOSLENIH

DISTRIBUCIJSKE GREŠKE U PROCESU PROCJENE PERFORMANSI ZAPOSLENIH DISTRIBUCIJSKE GREŠKE U PROCESU PROCJENE PERFORMANSI ZAPOSLENIH Vesko M. Lukovac a, Snežana A. Pejčić Tarle b, Milena J. Popović c, Dragan S. Pamučar d a Univerzitet odbrane u Beogradu, Vojna akademija,

More information

ENERGY AT THE CROSSROADS

ENERGY AT THE CROSSROADS International Scientific Conference of IT and Business-Related Research ENERGY AT THE CROSSROADS ENERGIJA NA RASKRŠĆU Miroslav Trifunović Singidunum University, 32 Danijelova St., Belgrade, Serbia 186

More information

B0013: Compensation Modeling Business Objects Web Intelligence

B0013: Compensation Modeling Business Objects Web Intelligence Report Description: This report allows OSHR to analyze the cost of implementing the new Compensation System with cost information regarding taking employees to new MIN or new MP. Report Location: OSHR

More information

Analytic functions allow the rows in a result set to 'peek' at each other, avoiding the need for joining duplicated data sources.

Analytic functions allow the rows in a result set to 'peek' at each other, avoiding the need for joining duplicated data sources. Standard SQL functionality focuses on rows. When you want to explore the relationship between rows, those rows would have to come from different sources, even if it was the same table with a different

More information

Popular Reports. Maitre D Software Suite COPYRIGHT POSERA SOFTWARE INC

Popular Reports. Maitre D Software Suite COPYRIGHT POSERA SOFTWARE INC Maitre D Software Suite COPYRIGHT POSERA SOFTWARE INC Maitre D Software i Table of Contents DSR 4 Sales Consolidated 4 Top 15 Items Consolidated 5 Daybook 5 Weekly summary of Clients by Time Period 6 Weekly

More information

Two-Person Segregation. Post accounts Post G/L. Complete check register. Authorize check requests Mail checks. Sign employee contracts

Two-Person Segregation. Post accounts Post G/L. Complete check register. Authorize check requests Mail checks. Sign employee contracts Two-Person Segregation Bookkeeper Business Administrator (Accounting and Authorization) (Access and Authorization) PETTY CASH: Disburse petty cash RECEIPTS: Open mail/count offering*/make listing PETTY

More information

SOME PROPERTIES OF DAGAN S METHOD FOR DRAIN SPACING DETERMINATION IN MARSHY - GLEY SOIL

SOME PROPERTIES OF DAGAN S METHOD FOR DRAIN SPACING DETERMINATION IN MARSHY - GLEY SOIL Journal of Agricultural Sciences Vol. 48, No 1, 2003 Pages 69-75 UDC: 631.62:631.445.24 Original scientific paper SOME PROPERTIES OF DAGAN S METHOD FOR DRAIN SPACING DETERMINATION IN MARSHY - GLEY SOIL

More information

Homework 5: Structured Query Language (SQL) (100 points)

Homework 5: Structured Query Language (SQL) (100 points) CS 122A: Introduction to Data Management Spring 2017 Homework 5: Structured Query Language (SQL) (100 points) Structured Query Language (SQL) [100 pts] 1. [10pts] For all detectors whose first name is

More information

Inbound 846 (Inventory Inquiry/Advice) X12 Specification for Release

Inbound 846 (Inventory Inquiry/Advice) X12 Specification for Release Inbound 846 (Inventory Inquiry/Advice) X12 Specification for Release 003040 The purpose of this document is to describe the suggested X12 specification to be used to transport Inventory Inquiry/Advice

More information

Investigating the optimum fineness of the coal grain in the Brown Coal Mine Kakanj in order to fully exploit its calorific value

Investigating the optimum fineness of the coal grain in the Brown Coal Mine Kakanj in order to fully exploit its calorific value Bulletin of the Chemists and Technologists of Bosnia and Herzegovina 2015 44 Print ISSN: 0367-4444 Online ISSN: 2232-7266 UDC: Original Scientific Article 9-16 Investigating the optimum fineness of the

More information

APPLICATION OF SEASONAL ADJUSTMENT FACTORS TO SUBSEQUENT YEAR DATA. Corresponding Author

APPLICATION OF SEASONAL ADJUSTMENT FACTORS TO SUBSEQUENT YEAR DATA. Corresponding Author 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 APPLICATION OF SEASONAL ADJUSTMENT FACTORS TO SUBSEQUENT

More information

SQL> exec sample_font

SQL> exec sample_font NOTE itty bitty fonts in this presentation SQL> exec sample_font Can you read this? 1 2 Connor McDonald OracleDBA co.uk 3 4 5 about me same old crap about years of experience flog the book hook up a consulting

More information

POPULATION, MIGRATION, LIVING STANDARD AND SOCIAL PRESSURE: A MODELING APPROACH FROM THERMODYNAMICS

POPULATION, MIGRATION, LIVING STANDARD AND SOCIAL PRESSURE: A MODELING APPROACH FROM THERMODYNAMICS Interdisciplinary Description of Complex Systems 11(3), 345-349, 2013 POPULATION, MIGRATION, LIVING STANDARD AND SOCIAL PRESSURE: A MODELING APPROACH FROM THERMODYNAMICS Jing Chen* School of Business University

More information

MERCHANDISING IN RETAIL TRADE OTHERS ABOUT US

MERCHANDISING IN RETAIL TRADE OTHERS ABOUT US ABOUT US We represent to you serving merchandising and positioning of your products in chains of retail trade in Serbia. MVM Company is founded in 2004. with the main purpose of giving merchandising services

More information

KORPORATIVNA DRUŠTVENA ODGOVORNOST

KORPORATIVNA DRUŠTVENA ODGOVORNOST KRISTINA JANDRAŠIĆ Podravka d.d., Koprivnica kristina.jandrasic@podravka.hr KORPORATIVNA DRUŠTVENA ODGOVORNOST Sažetak U današnjem svijetu, organizacije bez obzira na njihovu veličinu ili tržište moraju

More information

July Copyright 2018 NetSuite Inc.

July Copyright 2018 NetSuite Inc. 1 NetSuite SuiteAnalytics User Sample Test July 2018 2 Contents About this Sample Test... 3 Reports and Searches... 4 I. Given a use case, identify the best way to aggregate data results.... 4 II. Identify

More information

Under The Hood Of Query Transformations

Under The Hood Of Query Transformations Under The Hood Of Query Transformations Jože Senegačnik Oracle ACE Director www.dbprof. joze.senegacnik@dbprof. - 2013 - Jože Senegačnik 1 About the Speaker Jože Senegačnik Registered private researcher

More information

mbusa Instagram account report Jan 01, May 28, 2016

mbusa Instagram account report Jan 01, May 28, 2016 mbusa Instagram account report Jan 01, 2016 - May 28, 2016 mbusa / Audience Total Followers Count 1,116,679 25.37% Followers Change +245,517 Max. Followers Change 19,132 Jan 04 Avg. Followers Change +11,691.29

More information

RPS - EDI Specifications User Guide PART 11: 862 (SHIPPING SCHEDULE) ANSI X.12 - RELEASE

RPS - EDI Specifications User Guide PART 11: 862 (SHIPPING SCHEDULE) ANSI X.12 - RELEASE RPS - EDI Specifications User Guide PART 11: 862 (SHIPPING SCHEDULE) ANSI X.12 - RELEASE 004010 RPS - EDI Specifications 862 (Shipping Schedule) - Part 11 User Guide ANSI X.12 - Release 004010 This CMI

More information

Performance tuning using SQL new features. By Riyaj Shamsudeen

Performance tuning using SQL new features. By Riyaj Shamsudeen Performance tuning using SQL new features By Riyaj Shamsudeen Who am I? 15 years using Oracle products Over 14 years as Oracle DBA Certified DBA versions 7.0,7.3,8,8i &9i Specializes in performance tuning,

More information

So You Think You Can Combine Data Sets? Christopher Bost

So You Think You Can Combine Data Sets? Christopher Bost So You Think You Can Combine Data Sets? Christopher Bost What s in it for you? The syntax to combine data sets is simple The actual combination is more complex Learn ways to check data sets before combining

More information

Oracle. Sales Cloud Using Incentive Compensation. Release 13 (update 18B)

Oracle. Sales Cloud Using Incentive Compensation. Release 13 (update 18B) Oracle Sales Cloud Release 13 (update 18B) Release 13 (update 18B) Part Number E94453-03 Copyright 2011-2018, Oracle and/or its affiliates. All rights reserved. Authors: Judy Wood, Lynn Raiser, Ganesh

More information

OCJENA IZLOŽENOSTI LJUDI VIBRACIJAMA I BUCI U ZGRADAMA ZA STANOVANJE

OCJENA IZLOŽENOSTI LJUDI VIBRACIJAMA I BUCI U ZGRADAMA ZA STANOVANJE 54 Стручни рад Professional paper doi 10.7251/STP1813715T ISSN 2566-4484 OCJENA IZLOŽENOSTI LJUDI VIBRACIJAMA I BUCI U ZGRADAMA ZA STANOVANJE Valentina Golubovic-Bugarski, valentina.golubovic-bugarski@mf.unibl.org,

More information

Computer Proficiency Exam

Computer Proficiency Exam Computer Proficiency Exam Exam Information University of Southern Maine Office of Academic Assessment Portland Campus COMPUTER PROFICIENCY PRACTICE EXAM Page 2 of 6 REQUIREMENTS FOR THE SCHOOL OF BUSINESS

More information

MicroStrategy. Providing Intelligent Answers to Business Questions. Presented by Nette Johnson, Controller s Office

MicroStrategy. Providing Intelligent Answers to Business Questions. Presented by Nette Johnson, Controller s Office MicroStrategy Providing Intelligent Answers to Business Questions Presented by Nette Johnson, Controller s Office April 2016 Why MicroStrategy? MicroStrategy is the university s solution for current reporting

More information

T R O G I R FUTURE COOPERATION BETWEEN CIVIL SOCIETY AND LOCAL GOVERNEMENT

T R O G I R FUTURE COOPERATION BETWEEN CIVIL SOCIETY AND LOCAL GOVERNEMENT EUROPEAN DEMOCRATIC ENGAGEMENT AND CIVIC PARTICIPATION CONFERENCE OF TWINNED TOWNS - EURRODEM 3 8 September 2015, Trogir - Croatia FUTURE COOPERATION BETWEEN CIVIL SOCIETY AND LOCAL GOVERNEMENT FUTURE

More information

Database Systems CSE 414

Database Systems CSE 414 Database Systems CSE 414 Lectures 5: Grouping & Aggregation 1 Announcements HW1 is due next Monday, 11pm 2 Outline Last time: outer joins how to aggregate over all rows Grouping & aggregations (6.4.3 6.4.6)

More information

Variance Estimation for Product Sales in the 2017 Economic Census: Utilizing Multiple Imputation to Account for Sampling and Imputation Variance

Variance Estimation for Product Sales in the 2017 Economic Census: Utilizing Multiple Imputation to Account for Sampling and Imputation Variance Variance Estimation for Product Sales in the 2017 Economic Census: Utilizing Multiple Imputation to Account for Sampling and Imputation Variance Matthew Thompson Katherine J. Thompson U.S. Census Bureau*

More information

Ben Teusch HR Analytics Consultant

Ben Teusch HR Analytics Consultant HUMAN RESOURCES ANALYTICS IN R: EXPLORING EMPLOYEE DATA Analyzing employee engagement Ben Teusch HR Analytics Consultant What is employee engagement? engaged employees: those who are involved in, enthusiastic

More information

APPLICATION OF MEASUREMENT NETS FOR DEFORMATION EVALUATION AT BENDING

APPLICATION OF MEASUREMENT NETS FOR DEFORMATION EVALUATION AT BENDING Journal for Technology of Plasticity, Vol. 41 (2016), Number 1 APPLICATION OF MEASUREMENT NETS FOR DEFORMATION EVALUATION AT BENDING Emil Schwarzer *, Milan Dvořák Brno University of Technology, Faculty

More information

20 PR/HR Enhancements in 50 minutes

20 PR/HR Enhancements in 50 minutes 20 PR/HR Enhancements in 50 minutes Rick Hilton Sr. Business Analyst April 23, 2018 Close that Consumption Gap! During this session, we'll review the top 20 enhancements incorporated into Payroll and Human

More information

Varijabilnost imunokemijskih metoda i klinički značaj. Adriana Unić

Varijabilnost imunokemijskih metoda i klinički značaj. Adriana Unić Varijabilnost imunokemijskih metoda i klinički značaj Adriana Unić Imunokemijske metode nisu savršene Standardizacija - rezultati dobiveni različitim metodama nisu usporedivi Autoprotutijela epitopi na

More information

AdHoc Quick Payroll Processing HSA Employer Payroll Funding Xerox HR Solutions, LLC. All rights reserved.

AdHoc Quick Payroll Processing HSA Employer Payroll Funding Xerox HR Solutions, LLC. All rights reserved. AdHoc Quick Payroll Processing HSA Employer Payroll Funding 2016 Xerox HR Solutions, LLC. All rights reserved. Table of Contents Welcome..3 Payroll Processing Menu..4 Getting Started..5 Populating...6

More information

SOME PROPERTIES OF KIRKHAM S METHOD FOR DRAIN SPACING DETERMINATION IN MARSHY - GLEY SOIL

SOME PROPERTIES OF KIRKHAM S METHOD FOR DRAIN SPACING DETERMINATION IN MARSHY - GLEY SOIL Journal of Agricultural Sciences Vol. 48, No 1, 2003 Pages 59-67 UDC: 631.62:631.445.24 Original scientific paper SOME PROPERTIES OF KIRKHAM S METHOD FOR DRAIN SPACING DETERMINATION IN MARSHY - GLEY SOIL

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any

More information

Automatic Identification of Similarities Across Products to Improve the Configuration Process in ETO Companies

Automatic Identification of Similarities Across Products to Improve the Configuration Process in ETO Companies Downloaded from orbit.dtu.dk on: Aug 26, 2018 Automatic Identification of Similarities Across Products to Improve the Configuration Process in ETO Companies Shafiee, Sara; Kristjansdottir, Katrin; Hvam,

More information

Prvi strani poslovni jezik 1 engleski (bol. 12)

Prvi strani poslovni jezik 1 engleski (bol. 12) Prvi strani poslovni jezik 1 engleski (bol. 12) Aims of the class (ciljevi časa) pre-exam and exam requirements (predispitne obaveze i ispit); obavezna i prateća literatura; learning Business English...

More information

CREATIVE ACCOUNTING MOTIVES, TECHNIQUES AND POSSIBILITIES OF PREVENTION

CREATIVE ACCOUNTING MOTIVES, TECHNIQUES AND POSSIBILITIES OF PREVENTION Branka Remenarić Zagreb School of Economics and Management Jordanovac 110, 10000 Zagreb, Croatia branka.remenaric@zsem.hr Phone: +38512354151 Ivana Kenfelja Zagreb School of Economics and Management Jordanovac

More information

Semester 1 Session 3. Database design

Semester 1 Session 3. Database design IRU SEMESTER 2 January 2010 Semester 1 Session 3 Database design Objectives To be able to begin the design of a relational database by Writing a mission statement for the project Specifying the mission

More information

Accurate Campaign Targeting Using Classification Algorithms

Accurate Campaign Targeting Using Classification Algorithms Accurate Campaign Targeting Using Classification Algorithms Jieming Wei Sharon Zhang Introduction Many organizations prospect for loyal supporters and donors by sending direct mail appeals. This is an

More information