Database Technology for SaaS (Software as a Service)

Größe: px
Ab Seite anzeigen:

Download "Database Technology for SaaS (Software as a Service)"

Transkript

1 Database Technology for SaaS (Software as a Service) Multi-Tenant Database Enhancements Quality of Service Enabled Databases Prof. Alfons Kemper, Ph.D. Fakultät für Informatik Technische Universität München Alfons Kemper Fakultät für Informatik TUM

2 Co-Authors and Papers Stefan Aulbach, Torsten Grust, Dean Jacobs, Alfons Kemper, and Jan Rittinger Multi-Tenant Databases for Software as a Service Accepted for publication at ACM SIGMOD 2008 (SIGMOD 2008), June 9-12, 2008, Vancouver, BC, Canada Daniel Gmach, Stefan Krompass, Andreas Scholz, Martin Wimmer, and Alfons Kemper Adaptive Quality of Service Management for Enterprise Services ACM Transactions on the Web (TWEB), Vol. 2, No. 1, Article 8, February 2008 Stefan Krompass, Daniel Gmach, Andreas Scholz, Stefan Seltzsam, and Alfons Kemper Quality of Service Enabled Database Applications Service Oriented Computing - ICSOC 2006: Fourth International Conference on Service Oriented Computing December 4-7, 2006, Chicago, Illinois, USA Lecture Notes in Computer Science (LNCS), Vol. 4294, pages Alfons Kemper Fakultät für Informatik TUM 1

3 Outline Overview of SaaS Applications & Market Multi-Tenant Database Enhancements Schema Design Performance Characteristics Quality of Service Enabled Databases SLA Basics Dynamic Prioritization of Requests Alfons Kemper Fakultät für Informatik TUM 2

4 Application Complexity As application complexity increases Cost/user increases (CapEx, OpEx) Fee/user increases but flattens out (market reality) # users decreases Applies equally to the extensibility mechanisms More powerful extensibility means more complexity Profit = # users * (Fee/user Cost/user) Alfons Kemper Fakultät für Informatik TUM 3

5 Software Design Priorities On-Premises Software Software as a Service Decrease OpEx Add Features Decrease CapEx Add Features Decrease OpEx Decrease CapEx To add features, may increase CapEx/OpEx To decrease CapEx, may increase OpEx To decrease CapEx/OpEx, may sacrifice features To decrease OpEx, may increase CapEx Alfons Kemper Fakultät für Informatik TUM 4

6 Multi-Tenant Databases for Software as a Service Dealing with Highly Varied Data Alfons Kemper Fakultät für Informatik TUM

7 Multi-Tenancy in Practice Mainframe Size of Machine Blade # tenants per database Small Proj Mgmt CRM ERP Complexity of Application Banking Large Economy of scale decreases with application complexity At the sweet spot, compare TCO of 1 versus 100 databases Alfons Kemper Fakultät für Informatik TUM 6

8 Multi-Tenant Databases (MTD) Consolidating multiple businesses onto same operational system Consolidation factor dependent on size of the application and the host machine Support for schema extensibility Support atop of the database layer Non-intrusive implementation Query transformation engine maps logical tenant-specific tables to physical tables Various problems, for example: Various table utilization ( hot spots ) Metadata management when handling lots of tables Alfons Kemper Fakultät für Informatik TUM 7

9 MTD Implementation Approaches Naïve approach: Handling lots of tables Each tenant gets its own individual schema Depending on schema size, database has to handle many tables Sharing approach: Allow for Schema Extensibility Multiple tenants share tables Need for tenant-specific schema extensibility Alfons Kemper Fakultät für Informatik TUM 8

10 Schema Extensibility Essential for core enterprise applications (e.g., ERP, CRM) Benefits: Tremendously increased value of applications Anticipation of schema changes Space for future tenant data Drawbacks: Has heavy impact on table utilization Alfons Kemper Fakultät für Informatik TUM 9

11 Schema Mapping Goals: Tenant consolidation Extensibility Table sharing among tenants Need for a tenant id column Logical tenant-specific tables separated from physical layout Different physical layouts for different schema utilization Leverages table popularity Schema extensibility capabilities Alfons Kemper Fakultät für Informatik TUM 10

12 Classic Web Application Pack multiple tenants into the same tables by adding a tenant id column Great consolidation but no extensibility Account TenId AcctId Name Acme 17 2 Gump 35 1 Ball 42 1 Big Alfons Kemper Fakultät für Informatik TUM 11

13 Private Table Each tenant gets his/her own private schema No sharing SQL transformation: Renaming only High meta-data/data ratio Follows previously presented results Alfons Kemper Fakultät für Informatik TUM 12

14 Handling Lots of Tables Simplifying assumption: No extensibility Testbed setup: CRM schema with 10 tables 10,000 tenants are packed onto one (classic) DBMS Data set size remains constant Parameter: Schema Variability Number of tenants per schema instance Metrics: Baseline Compliance: 95% percentile of classic Web Application configuration (SV 0.0) Throughput [1/min] Alfons Kemper Fakultät für Informatik TUM 13

15 Schema Variability Alfons Kemper Fakultät für Informatik TUM 14

16 Handling Lots of Tables Results Alfons Kemper Fakultät für Informatik TUM 15

17 Benchmark Operations Weighted Operations SELECT Lightweight: Browser displays details page, for example Heavyweight: Reports with roll-ups, aggregation functions and sorting INSERT Lightweight: Insert single tuple Heavyweight: Batch insertion via Web Service interface UPDATE Lightweight: Update single tuple, e.g., from details page Heavyweight: Batch update with filter Alfons Kemper Fakultät für Informatik TUM 16

18 Handling Lots of Tables Conclusion Baseline Compliance gets worse with increasing number of tables DBMS must handle lots of metadata Each individual table eats up 4 KB of main memory! Indexes etc. increase that amount of memory Need for a better Data/Meta-data ratio Decrease number of tables Sharing approach Share tables among tenants Schema extensibility Alfons Kemper Fakultät für Informatik TUM 17

19 Extension Table Split off the extensions into separate tables Additional join at runtime Row column for reconstructing the row Better consolidation than Private Table layout Number of tables still grows in proportion to number of tenants Alfons Kemper Fakultät für Informatik TUM 18

20 Universal Table Generic structure with VARCHAR value columns n-th column of a logical table is mapped to ColN in an universal table Extensibility Disadvantages Very wide rows Many NULL values Not type-safe Casting necessary No index support Alfons Kemper Fakultät für Informatik TUM 19

21 Pivot Table Row: 0 Generic type-safe structure Each field of a row in logical table is given its own row. Multiple pivot tables for each type (int, string, e.g.) Eliminates handling many NULL values Performance Depends on the column selectivity of the query (number of reconstructing joins) Alfons Kemper Fakultät für Informatik TUM 20

22 Row Fragmentation Possible solution for addressing table utilization issues Various storage techniques for individual fragments Hunt for densely populated tables Idea: Split rows according to their popularity Alfons Kemper Fakultät für Informatik TUM 21

23 Chunk Table Row: 0 Generic structure Suitable if dataset can be partitioned into dense subsets Derived from Pivot table Performance Fewer joins for reconstruction if densely populated subsets can be extracted Indexable Reduced meta-data/data ratio dependant on chunk size Chunk 0 Chunk 1 Alfons Kemper Fakultät für Informatik TUM 22

24 Row Fragmentation Combine different schema mappings for getting a best fit Mixes Extension and Chunk Tables Each fragment can be stored in an optimal schema layout Optimal row fragmentation depends on, e.g. Workload Data distribution Data popularity Alfons Kemper Fakultät für Informatik TUM 23

25 Querying Chunk Tables Query Transformation Row reconstruction needs many self- and equi-joins Can be automatically translated Compilation Scheme: 1. Collect all table names and their corresponding columns from the logical source query 2. For each table, obtain the Chunk Tables and the meta-data identifiers representing the used columns 3. For each table, generate a query that filters the correct columns (based on the meta-data identifiers) and aligns the different chunk relations on their ROW column. 4. Each table reference in the logical source query is extended by its generated table definition query Alfons Kemper Fakultät für Informatik TUM 24

26 Query Transformation Example Source query: SELECT Beds FROM Account 17 WHERE Hospital = State 1. Collect table and column names Account 17 : Beds, Hospital 2. Obtain chunk tables and meta-data Chunk int str Account 17 : Table = 0, Tenant = 17 Beds, Hospital: Chunk = 1 Alfons Kemper Fakultät für Informatik TUM 25

27 Query Transformation Example 2. Obtain chunk tables and meta-data Chunk int str Account 17 : Table = 0 Beds, Hospital: Chunk = 1 3. Generate filter query SELECT Str1 as Hospital, Int1 as Beds FROM Chunk int str WHERE Tenant = 17 AND Table = 0 AND Chunk = 1 Alfons Kemper Fakultät für Informatik TUM 26

28 Query Transformation Example 3. Generate filter query SELECT FROM Str1 as Hospital, Int1 as Beds Chunk int str WHERE Tenant = 17 AND Table = 0 AND Chunk = 1 4. Replace reference in source query SELECT Beds FROM ( SELECT Str1 as Hospital, Int1 as Beds FROM Chunk int str WHERE Tenant = 17 AND Table = 0 AND Chunk = 1) AS Account 17 WHERE Hospital = State Alfons Kemper Fakultät für Informatik TUM 27

29 Query Transformation Structural changes Additional nesting due to the expansion of the table definitions All table references are expanded into join chains on the base tables All base table accesses refer to the meta-data colums Impact on Performance Introduced additional nesting can always be flattened. (Fegaras and Maier) Join Chains might be much cheaper, as long as the costs for loading the chunks and applying the index-supported join are cheaper than reading the wider conventional relations Meta-data columns on base tables have sophisticated indexes to support fast querying (Partitioned B-tree index) Alfons Kemper Fakultät für Informatik TUM 28

30 Query Evaluation Experiments Show good nature of this transformation Scalability issues Evaluate impact of Nesting Join Overhead Meta-data Overhead Test Query SELECT p.id,... FROM parent p, child c WHERE p.id = c.parent AND p.id =? Alfons Kemper Fakultät für Informatik TUM 29

31 Query Evaluation Experiments Conventional Schema Chunk Schema Alfons Kemper Fakultät für Informatik TUM 30

32 Query Un-nesting Optimizer Test Can the database optimizer flatten the query? MySQL Unable to un-nest query Factor 5 performance increase when manually unnesting the queries DB2 Generated fully un-nested query evaluation plan Pushed predicates to base table access Alfons Kemper Fakultät für Informatik TUM 31

33 Query Un-nesting Regions: 1. Lookup foreign key for child relation, selection based on? parameter. 2. ID column of parent relation with same selection as for the foreign key. 3. Hash-Join implements foreign key join 4. Lookup for all data columns from parent table, chain of aligning joins 5. Lookup for all data columns from child table, chain of aligning joins Alfons Kemper Fakultät für Informatik TUM 32

34 Join Overhead Costs Join Overhead No aligning joins Alfons Kemper Fakultät für Informatik TUM 33

35 Meta-Data Costs Number of logical data and index reads Run-time Meta-Data Interpretation Compile-time Meta-Data interpretation Alfons Kemper Fakultät für Informatik TUM 34

36 Quality of Service Enabled Database Applications Stefan Krompass, Daniel Gmach, Andreas Scholz, Stefan Seltzsam, Alfons Kemper Alfons Kemper Fakultät für Informatik TUM

37 Outline Introduction Quality of Service Model System Architecture and Implementation Request Scheduling Performance Evaluation Conclusion and Ongoing Work Alfons Kemper Fakultät für Informatik TUM 36

38 Outline Introduction Quality of Service Model System Architecture and Implementation Request Scheduling Performance Evaluation Conclusion and Ongoing Work Alfons Kemper Fakultät für Informatik TUM 37

39 Introduction Web Service Web Service Web Service Web Service Web Service Database Alfons Kemper Fakultät für Informatik TUM 38

40 Service Level Agreements (SLAs) SLA SLA SLA Web Contracts Servicebetween service Web provider Service and client for the service directly invoked by the client Challenge: provide end-to-end quality of service control Web Service Web Service Web Service Database Alfons Kemper Fakultät für Informatik TUM 39

41 Static Prioritization Priority Customer A high Customer B medium Web Service Scheduling Database SLA Conformance Customer A Customer B Alfons Kemper Fakultät für Informatik TUM 40

42 Limitations of the Static Prioritization SLA (taken from TPC-C) 90% of all transactions have to be processed in less than 5 seconds Static prioritization no longer sufficient High priority customers overachieve their SLAs Alfons Kemper Fakultät für Informatik TUM 41

43 Adaptive Penalties Priority Customer A medium high Customer B medium high Web Service Scheduling Database Customer B with higher priority than A SLA Conformance Customer A Customer B Alfons Kemper Fakultät für Informatik TUM 42

44 Outline Introduction Quality of Service Model System Architecture and Implementation Request Scheduling Performance Evaluation Conclusion and Ongoing Work Alfons Kemper Fakultät für Informatik TUM 43

45 Terminology Service Level Agreements (SLA) Percentile constraints SLA penalty Deadline constraints Metric: SLA conformance Ratio between number of timely transaction invocations and number of total transaction invocations Alfons Kemper Fakultät für Informatik TUM 44

46 SLA Penalty Process 90% of all requests in less than 5 seconds Penalty $900 for each 10% of underfulfillment Maximum penalty: $1800 Evaluation period: one month Alfons Kemper Fakultät für Informatik TUM 45

47 Quality of Service Model SLA Two-steps Compute penalty for an individual request Opportunity costs Marginal gain Compute deadline constraints for individual request Alfons Kemper Fakultät für Informatik TUM 46

48 Opportunity Costs Model the danger of falling to a lower service level Alfons Kemper Fakultät für Informatik TUM 47

49 Marginal Gain Models the chance of re-achieving a higher service level Alfons Kemper Fakultät für Informatik TUM 48

50 Adaptive Penalty Maximum of opportunity costs and marginal gain Alfons Kemper Fakultät für Informatik TUM 49

51 Penalty for Individual Requests Penalty for request Current SLA conformance Alfons Kemper Fakultät für Informatik TUM 50

52 Time Constraints for Individual Requests Deadline constraint for query q Deadline constraint for query q 2 1 Deadline constraint for the transaction q 11 q 2 q 2 q 3 q 4 Average Monitored running timedeadline for q 2 monitored processing from previous transaction time invocations Deadline for q 1 Alfons Kemper Fakultät für Informatik TUM 51

53 Outline Introduction Quality of Service Model System Architecture and Implementation Request Scheduling Performance Evaluation Conclusion and Ongoing Work Alfons Kemper Fakultät für Informatik TUM 52

54 Architecture Alfons Kemper Fakultät für Informatik TUM 53

55 Outline Introduction Quality of Service Model System Architecture and Implementation Request Scheduling Performance Evaluation Conclusion and Ongoing Work Alfons Kemper Fakultät für Informatik TUM 54

56 Admission Control and Scheduling Admission control limits the multi programming level (MPL) Queuing of requests (dual queue scheduling) Scheduler reorders the requests by their priority prior to de-queuing a request Objective function: Minimization of incurred penalties Alfons Kemper Fakultät für Informatik TUM 55

57 Dual Queue Scheduling Alfons Kemper Fakultät für Informatik TUM 56

58 Outline Introduction Quality of Service Model System Architecture and Implementation Request Scheduling Performance Evaluation Conclusion and Ongoing Work Alfons Kemper Fakultät für Informatik TUM 57

59 SLA Conformance Static Prioritization Alfons Kemper Fakultät für Informatik TUM 58

60 SLA Conformance Dynamic Penalization Alfons Kemper Fakultät für Informatik TUM 59

61 Outline Introduction Quality of Service Model System Architecture and Implementation Request Scheduling Performance Evaluation Conclusion and Ongoing Work Alfons Kemper Fakultät für Informatik TUM 60

62 Conclusion We presented an economic model for adaptively penalizing individual database requests the architecture and implementation for the QoS management our admission control and scheduling approach the effectiveness of our approach using the TPC-C benchmark Alfons Kemper Fakultät für Informatik TUM 61

63 Ongoing Work Exploit time constraints for penalties more sophisticated algorithms Extend the scheduling for multi-level service infrastructures Alfons Kemper Fakultät für Informatik TUM 62

Database Technology for SaaS (Software as a Service)

Database Technology for SaaS (Software as a Service) Database Technology for SaaS (Software as a Service) Multi-Tenant Database Enhancements Quality of Service Enabled Databases Alfons Kemper Fakultät für Informatik Technische Universität München Alfons

Mehr

HIR Method & Tools for Fit Gap analysis

HIR Method & Tools for Fit Gap analysis HIR Method & Tools for Fit Gap analysis Based on a Powermax APML example 1 Base for all: The Processes HIR-Method for Template Checks, Fit Gap-Analysis, Change-, Quality- & Risk- Management etc. Main processes

Mehr

Bayesian Networks. Syntax Semantics Parametrized Distributions Inference in Bayesian Networks. Exact Inference. Approximate Inference

Bayesian Networks. Syntax Semantics Parametrized Distributions Inference in Bayesian Networks. Exact Inference. Approximate Inference Syntax Semantics Parametrized Distributions Inference in Exact Inference Approximate Inference enumeration variable elimination stochastic simulation Markov Chain Monte Carlo (MCMC) 1 Includes many slides

Mehr

Support Technologies based on Bi-Modal Network Analysis. H. Ulrich Hoppe. Virtuelles Arbeiten und Lernen in projektartigen Netzwerken

Support Technologies based on Bi-Modal Network Analysis. H. Ulrich Hoppe. Virtuelles Arbeiten und Lernen in projektartigen Netzwerken Support Technologies based on Bi-Modal Network Analysis H. Agenda 1. Network analysis short introduction 2. Supporting the development of virtual organizations 3. Supporting the development of compentences

Mehr

Karlsruhe Institute of Technology Die Kooperation von Forschungszentrum Karlsruhe GmbH und Universität Karlsruhe (TH)

Karlsruhe Institute of Technology Die Kooperation von Forschungszentrum Karlsruhe GmbH und Universität Karlsruhe (TH) Combining Cloud and Grid with a User Interface Jie Tao Karlsruhe Institute of Technology jie.tao@kit.edu Die Kooperation von Outline Motivation The g-eclipse Project Extending gg-eclipse for a Cloud Framework

Mehr

GridMate The Grid Matlab Extension

GridMate The Grid Matlab Extension GridMate The Grid Matlab Extension Forschungszentrum Karlsruhe, Institute for Data Processing and Electronics T. Jejkal, R. Stotzka, M. Sutter, H. Gemmeke 1 What is the Motivation? Graphical development

Mehr

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL - USER GUIDE June 2016

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL - USER GUIDE June 2016 Overview The Hamburg Süd VGM-Portal is an application which enables to submit VGM information directly to Hamburg Süd via our e-portal web page. You can choose to insert VGM information directly, or download

Mehr

Applying Pléiades in the ASAP project HighSens

Applying Pléiades in the ASAP project HighSens Applying Pléiades in the ASAP project HighSens Highly versatile, new satellite Sensor applications for the Austrian market and International Development (Contract number: 833435) Dr. Eva Haas, GeoVille

Mehr

Customer-specific software for autonomous driving and driver assistance (ADAS)

Customer-specific software for autonomous driving and driver assistance (ADAS) This press release is approved for publication. Press Release Chemnitz, February 6 th, 2014 Customer-specific software for autonomous driving and driver assistance (ADAS) With the new product line Baselabs

Mehr

Engineering the Factory of the Future Now.Next.Beyond. Heiko Schwindt VP Automation & Electrification Solutions, Bosch Rexroth

Engineering the Factory of the Future Now.Next.Beyond. Heiko Schwindt VP Automation & Electrification Solutions, Bosch Rexroth Engineering the Factory of the Future Now.Next.Beyond. Heiko Schwindt VP Automation & Electrification Solutions, Bosch Rexroth Connect on LinkedIn www.linkedin.com/in/heiko-schwindt-625039140/ 1 "The challenge

Mehr

Routing in WSN Exercise

Routing in WSN Exercise Routing in WSN Exercise Thomas Basmer telefon: 0335 5625 334 fax: 0335 5625 671 e-mail: basmer [ at ] ihp-microelectronics.com web: Outline Routing in general Distance Vector Routing Link State Routing

Mehr

(Schema-Management) Seminar Cloud Data Management WS 09/10. Hendrik Kerkhoff 1

(Schema-Management) Seminar Cloud Data Management WS 09/10. Hendrik Kerkhoff 1 (Schema-Management) Seminar Cloud Data Management WS 09/10 Hendrik Kerkhoff 1 Anforderungen an eine Multi-Tenancy Datenbank Erweiterung von klassischen Datenbanken Funktionsweise & Einsatzgebiete Schema-Mapping

Mehr

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL USER GUIDE June 2016

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL USER GUIDE June 2016 Overview The Hamburg Süd VGM Web portal is an application that enables you to submit VGM information directly to Hamburg Süd via our e-portal Web page. You can choose to enter VGM information directly,

Mehr

Sustainability Balanced Scorecard as a Framework for Eco-Efficiency Analysis

Sustainability Balanced Scorecard as a Framework for Eco-Efficiency Analysis Sustainability Balanced Scorecard as a Framework for Eco-Efficiency Analysis Andreas Möller amoeller@uni-lueneburg.de umweltinformatik.uni-lueneburg.de Stefan Schaltegger schaltegger@uni-lueneburgde www.uni-lueneburg.de/csm

Mehr

Challenges for the future between extern and intern evaluation

Challenges for the future between extern and intern evaluation Evaluation of schools in switzerland Challenges for the future between extern and intern evaluation Michael Frais Schulentwicklung in the Kanton Zürich between internal evaluation and external evaluation

Mehr

Mit Legacy-Systemen in die Zukunft. adviion. in die Zukunft. Dr. Roland Schätzle

Mit Legacy-Systemen in die Zukunft. adviion. in die Zukunft. Dr. Roland Schätzle Mit Legacy-Systemen in die Zukunft Dr. Roland Schätzle Der Weg zur Entscheidung 2 Situation Geschäftliche und softwaretechnische Qualität der aktuellen Lösung? Lohnen sich weitere Investitionen? Migration??

Mehr

Organisatorisches. Unit1: Intro and Basics. Bewertung. About Me.. Datenorientierte Systemanalyse. Gerhard Wohlgenannt

Organisatorisches. Unit1: Intro and Basics. Bewertung. About Me.. Datenorientierte Systemanalyse. Gerhard Wohlgenannt Organisatorisches Datenorientierte Systemanalyse Unit1: Intro and Basics Gerhard Wohlgenannt Inhalt: Datenorientierte Systemanalyse Umfang: 5 units XX.10.2013 XX.11.2013 09:00-13:30 Uhr Room XXX Infos,

Mehr

Labor Demand. Anastasiya Shamshur

Labor Demand. Anastasiya Shamshur Labor Demand Anastasiya Shamshur 16.03.2011 Outline Labor Supply Labor Demand always DERIVED: demand for labor is derived from the demand for a rm's output, not the rm's desire fore hire employees. Equilibrium

Mehr

Ressourcenmanagement in Netzwerken SS06 Vorl. 12,

Ressourcenmanagement in Netzwerken SS06 Vorl. 12, Ressourcenmanagement in Netzwerken SS06 Vorl. 12, 30.6.06 Friedhelm Meyer auf der Heide Name hinzufügen 1 Prüfungstermine Dienstag, 18.7. Montag, 21. 8. und Freitag, 22.9. Bitte melden sie sich bis zum

Mehr

NEWSLETTER. FileDirector Version 2.5 Novelties. Filing system designer. Filing system in WinClient

NEWSLETTER. FileDirector Version 2.5 Novelties. Filing system designer. Filing system in WinClient Filing system designer FileDirector Version 2.5 Novelties FileDirector offers an easy way to design the filing system in WinClient. The filing system provides an Explorer-like structure in WinClient. The

Mehr

Symbio system requirements. Version 5.1

Symbio system requirements. Version 5.1 Symbio system requirements Version 5.1 From: January 2016 2016 Ploetz + Zeller GmbH Symbio system requirements 2 Content 1 Symbio Web... 3 1.1 Overview... 3 1.1.1 Single server installation... 3 1.1.2

Mehr

Possible Solutions for Development of Multilevel Pension System in the Republic of Azerbaijan

Possible Solutions for Development of Multilevel Pension System in the Republic of Azerbaijan Possible Solutions for Development of Multilevel Pension System in the Republic of Azerbaijan by Prof. Dr. Heinz-Dietrich Steinmeyer Introduction Multi-level pension systems Different approaches Different

Mehr

H.1 FORMI: An RMI Extension for Adaptive Applications H.1 FORMI: An RMI Extension for Adaptive Applications

H.1 FORMI: An RMI Extension for Adaptive Applications H.1 FORMI: An RMI Extension for Adaptive Applications Motivation The ed-object Approach Java RMI ed Objects in Java RMI Conclusions Universität Erlangen-Nürnberg Informatik 4, 2007 H-Formi-.fm 2007-12-14 13.11 H.1 1 Motivation Distributed object-oriented

Mehr

Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena

Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena http://www.im.uni-jena.de Contents I. Learning Objectives II. III. IV. Recap

Mehr

eurex rundschreiben 094/10

eurex rundschreiben 094/10 eurex rundschreiben 094/10 Datum: Frankfurt, 21. Mai 2010 Empfänger: Alle Handelsteilnehmer der Eurex Deutschland und Eurex Zürich sowie Vendoren Autorisiert von: Jürg Spillmann Weitere Informationen zur

Mehr

Context-adaptation based on Ontologies and Spreading Activation

Context-adaptation based on Ontologies and Spreading Activation -1- Context-adaptation based on Ontologies and Spreading Activation ABIS 2007, Halle, 24.09.07 {hussein,westheide,ziegler}@interactivesystems.info -2- Context Adaptation in Spreadr Pubs near my location

Mehr

Power-Efficient Server Utilization in Compute Clouds

Power-Efficient Server Utilization in Compute Clouds Power-Efficient Server Utilization in Compute Clouds 1/14 Overview 1. Motivation 2. SPECpower benchmark 3. Load distribution strategies 4. Cloud configuration 5. Results 6. Conclusion 2/14 1. Motivation

Mehr

Extracting Business Rules from PL/SQL-Code

Extracting Business Rules from PL/SQL-Code Extracting Business Rules from PL/SQL-Code Version 7, 13.07.03 Michael Rabben Knowledge Engineer Semantec GmbH, Germany Why? Where are the business rules? Business Rules are already hidden as logic in

Mehr

Finite Difference Method (FDM)

Finite Difference Method (FDM) Finite Difference Method (FDM) home/lehre/vl-mhs-1-e/folien/vorlesung/2a_fdm/cover_sheet.tex page 1 of 15. p.1/15 Table of contents 1. Problem 2. Governing Equation 3. Finite Difference-Approximation 4.

Mehr

Dynamic Hybrid Simulation

Dynamic Hybrid Simulation Dynamic Hybrid Simulation Comparison of different approaches in HEV-modeling GT-SUITE Conference 12. September 2012, Frankfurt/Main Institut für Verbrennungsmotoren und Kraftfahrwesen Universität Stuttgart

Mehr

AS Path-Prepending in the Internet And Its Impact on Routing Decisions

AS Path-Prepending in the Internet And Its Impact on Routing Decisions (SEP) Its Impact on Routing Decisions Zhi Qi ytqz@mytum.de Advisor: Wolfgang Mühlbauer Lehrstuhl für Netzwerkarchitekturen Background Motivation BGP -> core routing protocol BGP relies on policy routing

Mehr

v+s Output Quelle: Schotter, Microeconomics, , S. 412f

v+s Output Quelle: Schotter, Microeconomics, , S. 412f The marginal cost function for a capacity-constrained firm At output levels that are lower than the firm s installed capacity of K, the marginal cost is merely the variable marginal cost of v. At higher

Mehr

Stahl-Zentrum. Koksqualität und Hochofenleistung - Theorie und Praxis. Düsseldorf, 05. Dezember Peter Schmöle

Stahl-Zentrum. Koksqualität und Hochofenleistung - Theorie und Praxis. Düsseldorf, 05. Dezember Peter Schmöle Koksqualität und Hochofenleistung - Theorie und Praxis Düsseldorf, 05. Dezember 2013 1 ThyssenKrupp Steel Europe Coke quality and blast furnace performance Introduction Roles of coke Flooding effects Effects

Mehr

vcdm im Wandel Vorstellung des neuen User Interfaces und Austausch zur Funktionalität V

vcdm im Wandel Vorstellung des neuen User Interfaces und Austausch zur Funktionalität V vcdm im Wandel Vorstellung des neuen User Interfaces und Austausch zur Funktionalität V0.1 2018-10-02 Agenda vcdm User Interface History Current state of User Interface User Interface X-mas 2018 Missing

Mehr

prorm Budget Planning promx GmbH Nordring Nuremberg

prorm Budget Planning promx GmbH Nordring Nuremberg prorm Budget Planning Budget Planning Business promx GmbH Nordring 100 909 Nuremberg E-Mail: support@promx.net Content WHAT IS THE prorm BUDGET PLANNING? prorm Budget Planning Overview THE ADVANTAGES OF

Mehr

Wie man heute die Liebe fürs Leben findet

Wie man heute die Liebe fürs Leben findet Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Click here if your download doesn"t start automatically Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Wie

Mehr

Word-CRM-Upload-Button. User manual

Word-CRM-Upload-Button. User manual Word-CRM-Upload-Button User manual Word-CRM-Upload for MS CRM 2011 Content 1. Preface... 3 2. Installation... 4 2.1. Requirements... 4 2.1.1. Clients... 4 2.2. Installation guidelines... 5 2.2.1. Client...

Mehr

Copyright by Max Weishaupt GmbH, D Schwendi

Copyright by Max Weishaupt GmbH, D Schwendi Improving Energy Efficiency through Burner Retrofit Overview Typical Boiler Plant Cost Factors Biggest Efficiency Losses in a boiler system Radiation Losses Incomplete Combustion Blowdown Stack Losses

Mehr

Tuning des Weblogic /Oracle Fusion Middleware 11g. Jan-Peter Timmermann Principal Consultant PITSS

Tuning des Weblogic /Oracle Fusion Middleware 11g. Jan-Peter Timmermann Principal Consultant PITSS Tuning des Weblogic /Oracle Fusion Middleware 11g Jan-Peter Timmermann Principal Consultant PITSS 1 Agenda Bei jeder Installation wiederkehrende Fragen WievielForms Server braucheich Agenda WievielRAM

Mehr

Workshop on Copernicus and the CAP. A technology vision for IACS

Workshop on Copernicus and the CAP. A technology vision for IACS Workshop on Copernicus and the CAP on 17 th March 2017 A technology vision for IACS Wolfgang Ehbauer StMELF Bavaria, Germany Outline 1. Some figures about Bavaria 2. Automatic methods in use 3. Tests with

Mehr

ONLINE LICENCE GENERATOR

ONLINE LICENCE GENERATOR Index Introduction... 2 Change language of the User Interface... 3 Menubar... 4 Sold Software... 5 Explanations of the choices:... 5 Call of a licence:... 7 Last query step... 9 Call multiple licenses:...

Mehr

Exploring the knowledge in Semi Structured Data Sets with Rich Queries

Exploring the knowledge in Semi Structured Data Sets with Rich Queries Exploring the knowledge in Semi Structured Data Sets with Rich Queries Jürgen Umbrich Sebastian Blohm Institut AIFB, Universität Karlsruhe (TH) Forschungsuniversität gegründet 1825 www.kit.ed Overview

Mehr

H o c h s c h u l e D e g g e n d o r f H o c h s c h u l e f ü r a n g e w a n d t e W i s s e n s c h a f t e n

H o c h s c h u l e D e g g e n d o r f H o c h s c h u l e f ü r a n g e w a n d t e W i s s e n s c h a f t e n Time Aware Shaper Christian Boiger christian.boiger@hdu-deggendorf.de IEEE 802 Plenary September 2012 Santa Cruz, California D E G G E N D O R F U N I V E R S I T Y O F A P P L I E D S C I E N C E S Time

Mehr

WE SHAPE INDUSTRY 4.0 BOSCH CONNECTED INDUSTRY DR.-ING. STEFAN AßMANN

WE SHAPE INDUSTRY 4.0 BOSCH CONNECTED INDUSTRY DR.-ING. STEFAN AßMANN WE SHAPE INDUSTRY 4.0 BOSCH CONNECTED INDUSTRY DR.-ING. STEFAN AßMANN Bosch-Definition for Industry 4.0 Our Seven Features Connected Manufacturing Connected Logistics Connected Autonomous and Collaborative

Mehr

Java Tools JDK. IDEs. Downloads. Eclipse. IntelliJ. NetBeans. Java SE 8 Java SE 8 Documentation

Java Tools JDK. IDEs.  Downloads. Eclipse. IntelliJ. NetBeans. Java SE 8 Java SE 8 Documentation Java Tools JDK http://www.oracle.com/technetwork/java/javase/ Downloads IDEs Java SE 8 Java SE 8 Documentation Eclipse http://www.eclipse.org IntelliJ http://www.jetbrains.com/idea/ NetBeans https://netbeans.org/

Mehr

Labour law and Consumer protection principles usage in non-state pension system

Labour law and Consumer protection principles usage in non-state pension system Labour law and Consumer protection principles usage in non-state pension system by Prof. Dr. Heinz-Dietrich Steinmeyer General Remarks In private non state pensions systems usually three actors Employer

Mehr

Eingebettete Taktübertragung auf Speicherbussen

Eingebettete Taktübertragung auf Speicherbussen Eingebettete Taktübertragung auf Speicherbussen Johannes Reichart Workshop Hochgeschwindigkeitsschnittstellen Stuttgart, 07.11.2008 Unterstützt durch: Qimonda AG, München Institut für Prof. Elektrische

Mehr

Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten. Click here if your download doesn"t start automatically

Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten. Click here if your download doesnt start automatically Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten Click here if your download doesn"t start automatically Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten Ein Stern in dunkler

Mehr

RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH

RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH DOWNLOAD EBOOK : RECHNUNGSWESEN. KOSTENBEWUßTE UND Click link bellow and free register to download ebook: RECHNUNGSWESEN.

Mehr

A Classification of Partial Boolean Clones

A Classification of Partial Boolean Clones A Classification of Partial Boolean Clones DIETLINDE LAU, KARSTEN SCHÖLZEL Universität Rostock, Institut für Mathematik 25th May 2010 c 2010 UNIVERSITÄT ROSTOCK MATHEMATISCH-NATURWISSENSCHAFTLICHE FAKULTÄT,

Mehr

MULTI PHYSICS SIMULATION IN MANUFACTURING

MULTI PHYSICS SIMULATION IN MANUFACTURING MULTI PHYSICS SIMULATION IN MANUFACTURING A. Junk CADFEM GmbH Contents Manufacturing Multi Physics in Manufacturing Manufacturing example: Residual Stresses in an Induction Hardened Roll Set up Conclusions

Mehr

ISO 15504 Reference Model

ISO 15504 Reference Model Process flow Remarks Role Documents, data, tools input, output Start Define purpose and scope Define process overview Define process details Define roles no Define metrics Pre-review Review yes Release

Mehr

Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena

Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena http://www.im.uni-jena.de Contents I. Learning Objectives II. III. IV. Recap

Mehr

FEM Isoparametric Concept

FEM Isoparametric Concept FEM Isoparametric Concept home/lehre/vl-mhs--e/folien/vorlesung/4_fem_isopara/cover_sheet.tex page of 25. p./25 Table of contents. Interpolation Functions for the Finite Elements 2. Finite Element Types

Mehr

Number of Maximal Partial Clones

Number of Maximal Partial Clones Number of Maximal Partial Clones KARSTEN SCHÖLZEL Universität Rostoc, Institut für Mathemati 26th May 2010 c 2010 UNIVERSITÄT ROSTOCK MATHEMATISCH-NATURWISSENSCHAFTLICHE FAKULTÄT, INSTITUT FÜR MATHEMATIK

Mehr

Dienstleistungsmanagement Übung 5

Dienstleistungsmanagement Übung 5 Dienstleistungsmanagement Übung 5 Univ.-Prof. Dr.-Ing. Wolfgang Maass Chair in Economics Information and Service Systems (ISS) Saarland University, Saarbrücken, Germany Besprechung Übungsblatt 4 Slide

Mehr

Martin Luther. Click here if your download doesn"t start automatically

Martin Luther. Click here if your download doesnt start automatically Die schönsten Kirchenlieder von Luther (Vollständige Ausgabe): Gesammelte Gedichte: Ach Gott, vom Himmel sieh darein + Nun bitten wir den Heiligen Geist... der Unweisen Mund... (German Edition) Martin

Mehr

Universität Karlsruhe (TH)

Universität Karlsruhe (TH) Universität Karlsruhe (TH) Forschungsuniversität gegründet 1825 Parallelism in curricula An international survey November 7, 2008 Stuttgart, Germany David Meder Dr. Victor Pankratius For comments: multicore-systems@ipd.uni-karlsruhe.de

Mehr

Order Ansicht Inhalt

Order Ansicht Inhalt Order Ansicht Inhalt Order Ansicht... 1 Inhalt... 1 Scope... 2 Orderansicht... 3 Orderelemente... 4 P1_CHANG_CH1... 6 Function: fc_ins_order... 7 Plug In... 8 Quelle:... 8 Anleitung:... 8 Plug In Installation:...

Mehr

CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR

CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR (GERMAN EDITION) BY TIM ROHR READ ONLINE AND DOWNLOAD EBOOK : CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR PDF Click button to download this ebook READ ONLINE AND DOWNLOAD CNC ZUR

Mehr

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part II) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

Was heißt Denken?: Vorlesung Wintersemester 1951/52. [Was bedeutet das alles?] (Reclams Universal-Bibliothek) (German Edition)

Was heißt Denken?: Vorlesung Wintersemester 1951/52. [Was bedeutet das alles?] (Reclams Universal-Bibliothek) (German Edition) Was heißt Denken?: Vorlesung Wintersemester 1951/52. [Was bedeutet das alles?] (Reclams Universal-Bibliothek) (German Edition) Martin Heidegger Click here if your download doesn"t start automatically Was

Mehr

Webbasierte Exploration von großen 3D-Stadtmodellen mit dem 3DCityDB Webclient

Webbasierte Exploration von großen 3D-Stadtmodellen mit dem 3DCityDB Webclient Webbasierte Exploration von großen 3D-Stadtmodellen mit dem 3DCityDB Webclient Zhihang Yao, Kanishk Chaturvedi, Thomas H. Kolbe Lehrstuhl für Geoinformatik www.gis.bgu.tum.de 11/14/2015 Webbasierte Exploration

Mehr

TSM 5.2 Experiences Lothar Wollschläger Zentralinstitut für Angewandte Mathematik Forschungszentrum Jülich

TSM 5.2 Experiences Lothar Wollschläger Zentralinstitut für Angewandte Mathematik Forschungszentrum Jülich TSM 5.2 Experiences Lothar Wollschläger Zentralinstitut für Angewandte Mathematik Forschungszentrum Jülich L.Wollschlaeger@fz-juelich.de Contents TSM Test Configuration Supercomputer Data Management TSM-HSM

Mehr

Vermessene Wissenschaft. Etablierte und alternative Ansätze der Bibliometrie

Vermessene Wissenschaft. Etablierte und alternative Ansätze der Bibliometrie Vermessene Wissenschaft Etablierte und alternative Ansätze der Bibliometrie http://www.uni-hamburg.de/biologie/bioz/zis/hb/dieckhof.html LunchLesson zur Bibliometrie 19.03.2015 S. 2 http://www.uniklinikum-saarland.de/forschung/lom/

Mehr

FIVNAT-CH. Annual report 2002

FIVNAT-CH. Annual report 2002 FIVNAT-CH Schweizerische Gesellschaft für Reproduktionsmedizin Annual report 2002 Date of analysis 15.01.2004 Source: FileMaker Pro files FIVNAT_CYC.FP5 and FIVNAT_PAT.FP5 SUMMARY TABLE SUMMARY RESULTS

Mehr

LEBEN OHNE REUE: 52 IMPULSE, DIE UNS DARAN ERINNERN, WAS WIRKLICH WICHTIG IST (GERMAN EDITION) BY BRONNIE WARE

LEBEN OHNE REUE: 52 IMPULSE, DIE UNS DARAN ERINNERN, WAS WIRKLICH WICHTIG IST (GERMAN EDITION) BY BRONNIE WARE LEBEN OHNE REUE: 52 IMPULSE, DIE UNS DARAN ERINNERN, WAS WIRKLICH WICHTIG IST (GERMAN EDITION) BY BRONNIE WARE DOWNLOAD EBOOK : LEBEN OHNE REUE: 52 IMPULSE, DIE UNS DARAN EDITION) BY BRONNIE WARE PDF Click

Mehr

Level of service estimation at traffic signals based on innovative traffic data services and collection techniques

Level of service estimation at traffic signals based on innovative traffic data services and collection techniques Level of service estimation at traffic signals based on innovative traffic data services and collection techniques Authors: Steffen Axer, Jannis Rohde, Bernhard Friedrich Network-wide LOS estimation at

Mehr

Priorities (time independent and time dependent) Different service times of different classes at Type-1 nodes -

Priorities (time independent and time dependent) Different service times of different classes at Type-1 nodes - E.6 Approximate Analysis of Non-product-Form Queueing Networks Non exponentially distributed service times Priorities (time independent and time dependent) Different service times of different classes

Mehr

Junction of a Blended Wing Body Aircraft

Junction of a Blended Wing Body Aircraft Topology Optimization of the Wing-Cabin Junction of a Blended Wing Body Aircraft Bin Wei M.Sc. Ögmundur Petersson M.Sc. 26.11.2010 Challenge of wing root design Compare to conventional aircraft: Improved

Mehr

IDS Lizenzierung für IDS und HDR. Primärserver IDS Lizenz HDR Lizenz

IDS Lizenzierung für IDS und HDR. Primärserver IDS Lizenz HDR Lizenz IDS Lizenzierung für IDS und HDR Primärserver IDS Lizenz HDR Lizenz Workgroup V7.3x oder V9.x Required Not Available Primärserver Express V10.0 Workgroup V10.0 Enterprise V7.3x, V9.x or V10.0 IDS Lizenz

Mehr

Call Centers and Low Wage Employment in International Comparison

Call Centers and Low Wage Employment in International Comparison Wissenschaftszentrum Nordrhein-Westfalen Kulturwissenschaftliches Institut Wuppertal Institut für Klima, Umwelt, Energie Institut Arbeit und Technik Call Centers and Low Wage Employment in International

Mehr

Database Systems Unit 7. Logical Modeling. DB / PRM1 / db07_logicalmodelling.ppt / Version Learning Goals

Database Systems Unit 7. Logical Modeling. DB / PRM1 / db07_logicalmodelling.ppt / Version Learning Goals Database Systems Unit 7 Logical Modeling DB / PRM1 / 24.04.2008 db07_logicalmodelling.ppt / Version 2.0 7-1 Learning Goals In this unit you will learn how to translate an ERD into a relational DB how to

Mehr

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number.

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number. Magic Figures Introduction: This lesson builds on ideas from Magic Squares. Students are introduced to a wider collection of Magic Figures and consider constraints on the Magic Number associated with such

Mehr

Multicriterial Design Decision Making regarding interdependent Objectives in DfX

Multicriterial Design Decision Making regarding interdependent Objectives in DfX Overview Multicriterial Design Decision Making regarding interdependent Objectives in DfX S. Bauer The Design Process Support of the Design Process with Design for X Visualization of Decision Problems

Mehr

Aufbau eines IT-Servicekataloges am Fallbeispiel einer Schweizer Bank

Aufbau eines IT-Servicekataloges am Fallbeispiel einer Schweizer Bank SwissICT 2011 am Fallbeispiel einer Schweizer Bank Fritz Kleiner, fritz.kleiner@futureways.ch future ways Agenda Begriffsklärung Funktionen und Aspekte eines IT-Servicekataloges Fallbeispiel eines IT-Servicekataloges

Mehr

EINSPEISEMANAGEMENT: GRUNDLAGEN, ANALYSE- UND PROGNOSEMÖGLICHKEITEN

EINSPEISEMANAGEMENT: GRUNDLAGEN, ANALYSE- UND PROGNOSEMÖGLICHKEITEN EWC WEATHER CONSULT EINSPEISEMANAGEMENT: GRUNDLAGEN, ANALYSE- UND PROGNOSEMÖGLICHKEITEN DAVID WÖLFLE 26. WINDENERGIETAGE, 08.11.2017 About Team Manager at EWC Weather Consult GmbH https://www.linkedin.com/in/david-woelfle/

Mehr

Differentiated Service Routers in the Internet

Differentiated Service Routers in the Internet Differentiated Service (DiffServ) Quality of Service Architectures in the Internet: Integrated Services (IntServ) Differentiated Services (DiffServ) DiffServ: Differrent packet treatment depending on packet

Mehr

Exercise (Part V) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part V) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part V) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

A central repository for gridded data in the MeteoSwiss Data Warehouse

A central repository for gridded data in the MeteoSwiss Data Warehouse A central repository for gridded data in the MeteoSwiss Data Warehouse, Zürich M2: Data Rescue management, quality and homogenization September 16th, 2010 Data Coordination, MeteoSwiss 1 Agenda Short introduction

Mehr

Introduction FEM, 1D-Example

Introduction FEM, 1D-Example Introduction FEM, D-Example /home/lehre/vl-mhs-/inhalt/cover_sheet.tex. p./22 Table of contents D Example - Finite Element Method. D Setup Geometry 2. Governing equation 3. General Derivation of Finite

Mehr

Killy Literaturlexikon: Autoren Und Werke Des Deutschsprachigen Kulturraumes 2., Vollstandig Uberarbeitete Auflage (German Edition)

Killy Literaturlexikon: Autoren Und Werke Des Deutschsprachigen Kulturraumes 2., Vollstandig Uberarbeitete Auflage (German Edition) Killy Literaturlexikon: Autoren Und Werke Des Deutschsprachigen Kulturraumes 2., Vollstandig Uberarbeitete Auflage (German Edition) Walther Killy Click here if your download doesn"t start automatically

Mehr

Vehicle Automation and Man from Reaction to Takeover Dipl.-Ing. Daniel Damböck

Vehicle Automation and Man from Reaction to Takeover Dipl.-Ing. Daniel Damböck Vehicle Automation and Man from Reaction to Takeover Dipl.-Ing. Daniel Damböck Topics 1. Advanced Driver Assistance Systems 2. From Assistance to Automation 3. Benefits and Problems 4. Experimental Examples

Mehr

Industrial USB3.0 Miniature Camera with color and monochrome sensor

Industrial USB3.0 Miniature Camera with color and monochrome sensor Welcome to the presentation Industrial USB3.0 Miniature Camera with color and monochrome sensor & Data rates of modern image sensors S. 1/12 Vortrag_Spectronet_USB3.0_Datenverarbeitung_ENGLISCH_Vorlage_für_pdf_v1_MH20032014

Mehr

TomTom WEBFLEET Tachograph

TomTom WEBFLEET Tachograph TomTom WEBFLEET Tachograph Installation TG, 17.06.2013 Terms & Conditions Customers can sign-up for WEBFLEET Tachograph Management using the additional services form. Remote download Price: NAT: 9,90.-/EU:

Mehr

Tube Analyzer LogViewer 2.3

Tube Analyzer LogViewer 2.3 Tube Analyzer LogViewer 2.3 User Manual Stand: 25.9.2015 Seite 1 von 11 Name Company Date Designed by WKS 28.02.2013 1 st Checker 2 nd Checker Version history Version Author Changes Date 1.0 Created 19.06.2015

Mehr

Efficient Design Space Exploration for Embedded Systems

Efficient Design Space Exploration for Embedded Systems Diss. ETH No. 16589 Efficient Design Space Exploration for Embedded Systems A dissertation submitted to the SWISS FEDERAL INSTITUTE OF TECHNOLOGY ZURICH for the degree of Doctor of Sciences presented by

Mehr

Die Bedeutung neurowissenschaftlicher Erkenntnisse für die Werbung (German Edition)

Die Bedeutung neurowissenschaftlicher Erkenntnisse für die Werbung (German Edition) Die Bedeutung neurowissenschaftlicher Erkenntnisse für die Werbung (German Edition) Lisa Johann Click here if your download doesn"t start automatically Download and Read Free Online Die Bedeutung neurowissenschaftlicher

Mehr

Geschäftsprozesse und Regeln

Geschäftsprozesse und Regeln Geschäftsprozesse und Regeln 7 Szenarien einer möglichen Integration Jana Koehler Hochschule Luzern Lucerne University of Applied Sciences and Arts jana.koehler@hslu.ch Gartner: Organizations struggle

Mehr

1. General information... 2 2. Login... 2 3. Home... 3 4. Current applications... 3

1. General information... 2 2. Login... 2 3. Home... 3 4. Current applications... 3 User Manual for Marketing Authorisation and Lifecycle Management of Medicines Inhalt: User Manual for Marketing Authorisation and Lifecycle Management of Medicines... 1 1. General information... 2 2. Login...

Mehr

Connecting the dots on Germany s Energiewende and its impact on European energy policy

Connecting the dots on Germany s Energiewende and its impact on European energy policy Connecting the dots on Germany s Energiewende and its impact on European energy policy Rebecca Bertram Heinrich Böll Foundation Heinrich-Böll-Stiftung Schumannstraße 8 Telefon 030.285 34-0 Die grüne politische

Mehr

Data Structures and Algorithm Design

Data Structures and Algorithm Design - University of Applied Sciences - Data Structures and Algorithm Design - CSCI 340 - Friedhelm Seutter Institut für Angewandte Informatik Contents 1 Analyzing Algorithms and Problems 2 Data Abstraction

Mehr

Unit 1. Motivation and Basics of Classical Logic. Fuzzy Logic I 6

Unit 1. Motivation and Basics of Classical Logic. Fuzzy Logic I 6 Unit 1 Motivation and Basics of Classical Logic Fuzzy Logic I 6 Motivation In our everyday life, we use vague, qualitative, imprecise linguistic terms like small, hot, around two o clock Even very complex

Mehr

FACHKUNDE FüR KAUFLEUTE IM GESUNDHEITSWESEN FROM THIEME GEORG VERLAG

FACHKUNDE FüR KAUFLEUTE IM GESUNDHEITSWESEN FROM THIEME GEORG VERLAG FACHKUNDE FüR KAUFLEUTE IM GESUNDHEITSWESEN FROM THIEME GEORG VERLAG DOWNLOAD EBOOK : FACHKUNDE FüR KAUFLEUTE IM GESUNDHEITSWESEN Click link bellow and free register to download ebook: FACHKUNDE FüR KAUFLEUTE

Mehr

Die "Badstuben" im Fuggerhaus zu Augsburg

Die Badstuben im Fuggerhaus zu Augsburg Die "Badstuben" im Fuggerhaus zu Augsburg Jürgen Pursche, Eberhard Wendler Bernt von Hagen Click here if your download doesn"t start automatically Die "Badstuben" im Fuggerhaus zu Augsburg Jürgen Pursche,

Mehr

Internationale Energiewirtschaftstagung TU Wien 2015

Internationale Energiewirtschaftstagung TU Wien 2015 Internationale Energiewirtschaftstagung TU Wien 2015 Techno-economic study of measures to increase the flexibility of decentralized cogeneration plants on a German chemical company Luis Plascencia, Dr.

Mehr

EVANGELISCHES GESANGBUCH: AUSGABE FUR DIE EVANGELISCH-LUTHERISCHE LANDESKIRCHE SACHSEN. BLAU (GERMAN EDITION) FROM EVANGELISCHE VERLAGSAN

EVANGELISCHES GESANGBUCH: AUSGABE FUR DIE EVANGELISCH-LUTHERISCHE LANDESKIRCHE SACHSEN. BLAU (GERMAN EDITION) FROM EVANGELISCHE VERLAGSAN EVANGELISCHES GESANGBUCH: AUSGABE FUR DIE EVANGELISCH-LUTHERISCHE LANDESKIRCHE SACHSEN. BLAU (GERMAN EDITION) FROM EVANGELISCHE VERLAGSAN DOWNLOAD EBOOK : EVANGELISCHES GESANGBUCH: AUSGABE FUR DIE EVANGELISCH-LUTHERISCHE

Mehr

General info on using shopping carts with Ogone

General info on using shopping carts with Ogone Inhaltsverzeichnisses 1. Disclaimer 2. What is a PSPID? 3. What is an API user? How is it different from other users? 4. What is an operation code? And should I choose "Authorisation" or "Sale"? 5. What

Mehr