Opdatering af metadata via SAS -programmer

Size: px
Start display at page:

Download "Opdatering af metadata via SAS -programmer"

Transcription

1 Opdatering af metadata via SAS -programmer Henrik Dorf, chefkonsulent, PS Commercial

2 Metadata SAS Management Console Meta browser SAS Data Integration Studio

3 SAS Metadata Server Administrerer adgangen til metadata Svarer på alle spørgsmål Håndterer læse-/skriverettigheder Aner ikke, hvad den snakker om.men svarer hurtigt og husker alt SAS Metadata Server Metadata

4 Metadata Metadata Indeholder beskrivelse af omverdenen Skal kunne bruges til at gemme informationer om alt Libames, servere, datasæt, kolonner, filer, brugere, schemas, job, og alt andet Behov for en meget simpel struktur SAS Metadata Server Applikationerne ved, hvordan denne viden skal anvendes

5 Eksempler på metadata Libname INFO D:\SASDatata\info ; Et SAS -bibliotek: " D:\SASDatata\info ; Implicit viden: Indeholder måske tabeller Ligger på en specifik maskine Bestemt operativsystem

6 Eksempler på metadata Proc print data=sashelp.class ; run ; En tabel: sashelp.class Implicit viden: Indeholder kolonner med data Ligger på en specifik maskine Libname findes allerede SAS -versionen er relevant

7 Eksempler på metadata Filename inclass C:\temp\class.csv ; En flad fil: "C:\Temp\class.csv ; Implicit viden: Kommasepareret: indeholder kolonner af data Ligger på en specifik maskine Der kan være forbehold for lrecl Der kan være kolonnenavne i første linje Der kan være quotes om karakterfelter

8 Eksempler på metadata Filename inclass C:\temp\class.csv ; En flad fil: "C:\Temp\class.csv ;

9 Eksempler på metadata Filename inclass C:\temp\class.csv ; En flad fil: "C:\Temp\class.csv ;

10 Eksempler på metadata Filename inclass C:\temp\class.csv ; En flad fil: "C:\Temp\class.csv ;

11 Eksempler på metadata Filename inclass C:\temp\class.csv ; En flad fil: "C:\Temp\class.csv ;

12 Eksempler på metadata Filename inclass C:\temp\class.csv ; En flad fil: "C:\Temp\class.csv ;

13 Eksempler på metadata Filename inclass C:\temp\class.csv ; En flad fil: "C:\Temp\class.csv ;

14 Metadatastruktur Indholdet er styret af et Blueprint; en konstruktionstegning, der beskriver, hvad der kan og skal være med i beskrivelsen af et objekt

15 Blueprint Alle valg medfører et nyt blueprint:

16 Blueprint Forskellige Blueprint for Workspace Server Data Step Batch Server

17 Metadataelementer Objekter opbygges af Attributter Associationer til andre objekter

18 Metadatanavngivning URI: Uniform Resource Identifier omsobj:saslibrary/a5ohx7yd.bl0001jm

19 Metadatanavngivning URI: Uniform Resource Identifier A5OHX7YD.BL0001JM omsobj:saslibrary/a5ohx7yd.bl0001jm What is a Metadata Identifier? The 17-character identifier consists of two parts, separated by a period. It is often represented in documentation as reposid.objectid. The first eight characters (A5OHX7YD) identify the SAS Metadata Repository in which the object is stored. The ninth character is always a period. The second set of eight characters (BL0001JM) identifies the object in the repository.

20 Metadataopbygning Attributter

21 Metadataopbygning Associations

22 Metadataobjekter Database table Libname Database server Database Schema Serverkontekst Server component SAS tabel Kolonne Tree SASLIBRARY SAS tabel Kolonne SAS tabel Kolonne

23 Metadataobjektkæder Database table Libname Database server Database Schema Serverkontekst Server component SAS tabel Kolonne Tree SASLIBRARY SAS tabel Kolonne SAS tabel Kolonne

24 Adgang til metadata SAS Management Console SAS Data Integration Studio Metabrowser PROC METADATA PROC METALIB Alle løsninger og funktioner, der er afhængige af metadata

25 PROC Metadata filename metaout "C:\temp\metaout.xml"; PROC METADATA REPOS="Foundation" Header=simple OUT =metaout IN="<GetMetadataObjects> <Reposid>$METAREPOSITORY</Reposid> <Type>SASLibrary</Type> <Objects/> <Ns>SAS</Ns> <Flags/> <Options/> </GetMetadataObjects>" VERBOSE; RUN; X "C:\temp\metaout.xml"; Eksempel1.sas

26 Batchadgang til metadata filename metaout "C:\temp\metaout.xml"; PROC METADATA REPOS="Foundation" Header=simple OUT =metaout IN="<GetMetadataObjects> <Reposid>$METAREPOSITORY</Reposid> <Type>SASLibrary</Type> <Objects/> <Ns>SAS</Ns> <Flags/> <Options/> </GetMetadataObjects>" VERBOSE; RUN; X "C:\temp\metaout.xml";

27 PROC Metadata Output <?xml version="1.0"?> - <GetMetadataObjects> <Reposid>A A5LDS3MS</Reposid> <Type>SASLibrary</Type> - <Objects> <SASLibrary Id="A5LDS3MS.AY000001" Name="SASApp - SASDATA" /> <SASLibrary Id="A5LDS3MS.AY000002" Name="STP Samples" /> <SASLibrary Id="A5LDS3MS.AY000003" Name="SASApp - wrsdist" /> <SASLibrary Id="A5LDS3MS.AY000004" Name="SASApp - wrstemp" /> <SASLibrary Id="A5LDS3MS.AY000005" Name="ORIONDetailData" /> <SASLibrary Id="A5LDS3MS.AY000006" Name="ORIONCoreData" /> <SASLibrary Id="A5LDS3MS.AY000007" Name="ORIONGoldData" /> <SASLibrary Id="A5LDS3MS.AY000008" Name="ORIONStarData" /> <SASLibrary Id="A5LDS3MS.AY000009" Name="ORIONSumData" /> <SASLibrary Id="A5LDS3MS.AY00000A" Name="SQLSrv ORION Star" /> </Objects> <Ns>SAS</Ns> <Flags /> <Options /> </GetMetadataObjects>

28 Batchadgang til metadata Enkelt objekt PROC METADATA REPOS="Foundation Header=simple OUT =metaout IN="<GetMetadata> <Metadata> <SASLibrary ID='A5LDS3MS.AY000005'/> </Metadata> <Objects/> <Ns>SAS</Ns> <Flags/> <Options/> </GetMetadata>" VERBOSE; RUN;

29 Batchadgang til metadata Flags=1 PROC METADATA REPOS="Foundation Header=simple OUT =metaout IN="<GetMetadata> <Metadata> <SASLibrary ID='A5LDS3MS.AY000005'/> </Metadata> <Objects/> <Ns>SAS</Ns> <Flags>1</Flags> <Options/> </GetMetadata>" <Options/> </GetMetadata>" VERBOSE; RUN;

30 DATA Step API

31 Metadata DATA Step API METADATA_PAUSED Function METADATA_PURGE Function METADATA_RESOLVE Function METADATA_VERSION Function

32 Metadata DATA Step API 40 data _null_ ; 41 if _N_=1 then do; 42 rc=metadata_paused(); IF rc=0 then put "Metaserver is running"; 43 Else put "Metaserver not found/active"; 44 rc=metadata_version(); put "metaserver version " rc ; 45 end; 46 run; Metaserver is running metaserver version 5.01

33 Læse metadata METADATA_GETATTR Function METADATA_GETNASL Function METADATA_GETNASN Function METADATA_GETNATR Function METADATA_GETNOBJ Function METADATA_GETNPRP Function METADATA_GETNTYP Function METADATA_GETPROP Function

34 Læse metadata Mine favoritter METADATA_GETATTR Function METADATA_GETNASL Function METADATA_GETNASN Function METADATA_GETNATR Function METADATA_GETNOBJ Function METADATA_GETNPRP Function METADATA_GETNTYP Function METADATA_GETPROP Function

35 Metadataopbygning Object Association Attribut

36 Blueprint: Tree 82 data _null_; 83 length assoc $256; 84 rc=1; 85 n=1; do while(rc>0); /* Walk through all possible associations of this object. */ '",n,assoc); 92 put n= assoc=; 93 n=n+1; 94 end; 95 run;

37 Blueprint: Tree Associationsliste n=1 assoc=accesscontrols n=2 assoc=associatedpsportlet n=3 assoc=changes n=4 assoc=documents n=5 assoc=extensions n=6 assoc=externalidentities n=7 assoc=groups n=8 assoc=implementors n=9 assoc=keywords n=10 assoc=localizedattributes n=11 assoc=members n=12 assoc=notes n=13 assoc=parenttree n=14 assoc=primarypropertygroup n=15 assoc=properties n=16 assoc=propertysets n=17 assoc=responsibleparties n=18 assoc=softwarecomponents n=19 assoc=sourcetransformations n=20 assoc=specsourcetransformations n=21 assoc=spectargettransformations n=22 assoc=subtrees n=23 assoc=targettransformations n=24 assoc=timestamps n=25 assoc=trees n=26 assoc=usedbyprototypes n=27 assoc=usingprototype n=28 assoc=variables n=29 assoc=properties n=30 assoc=properties

38 Blueprint: SASLibrary 138 data _null_; 139 length assoc $256; assoc=assoc; 140 rc=1; 141 n=1; do while(rc>0); /* Walk through all possible associations of this object. */ Target_data'",n,assoc); 148 put rc= n= assoc=; 149 n=n+1; 150 end; 151 run;

39 Blueprint: SASLibrary Associationsliste rc=35 n=1 assoc=accesscontrols rc=35 n=2 assoc=aliases rc=35 n=3 assoc=aliasfor rc=35 n=4 assoc=changes rc=35 n=5 assoc=defaultlogin rc=35 n=6 assoc=deployedcomponents rc=35 n=7 assoc=documents rc=35 n=8 assoc=extensions rc=35 n=9 assoc=externalidentities rc=35 n=10 assoc=groups rc=35 n=11 assoc=implementors rc=35 n=12 assoc=keywords rc=35 n=13 assoc=libraryconnection rc=35 n=14 assoc=localizedattributes rc=35 n=15 assoc=notes rc=35 n=16 assoc=primarypropertygroup rc=35 n=17 assoc=properties rc=35 n=18 assoc=propertysets rc=35 n=19 assoc=responsibleparties rc=35 n=20 assoc=sascatalogs rc=35 n=21 assoc=schemapackage rc=35 n=22 assoc=sourcetransformations rc=35 n=23 assoc=specsourcetransformations rc=35 n=24 assoc=spectargettransformations rc=35 n=25 assoc=tablecollections rc=35 n=26 assoc=tables rc=35 n=27 assoc=targettransformations rc=35 n=28 assoc=timestamps rc=35 n=29 assoc=trees rc=35 n=30 assoc=usedbypackages rc=35 n=31 assoc=usedbyprototypes rc=35 n=32 assoc=usingpackages rc=35 n=33 assoc=usingprototype rc=35 n=34 assoc=variables rc=35 n=35 assoc=properties rc=-4 n=36 assoc=properties

40 Læse metadata 47 data _null_ ; 48 n=1; 49 length lib_uri $80; 50 antal =metadata_getnobj("omsobj:saslibrary?@id? '.'",1,lib_uri); 51 put antal= lib_uri=; 52 run; antal=7 lib_uri=omsobj:saslibrary\a5ohx7yd.bl0002be

41 Find libnames 89 data _null_ ; 90 length lib_uri name $80; 91 lib_uri=lib_uri ; name=name; 92 antal =metadata_getnobj("omsobj:saslibrary?@id? '.'",1,lib_uri); 93 rc = metadata_getattr(lib_uri,"name",name); 94 put antal= lib_uri= rc name = ; 95 run; antal=7 lib_uri=omsobj:saslibrary\a5ohx7yd.bl0002be 0 name=oracle_target NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.01 seconds

42 Find alle libnames 106 data _null_ ; 107 length lib_uri name $80; 108 lib_uri=lib_uri ; name=name; 109 antal =metadata_getnobj("omsobj:saslibrary?@id? '.'",1,lib_uri); 110 do n=1 to antal; 111 rc = metadata_getnobj("omsobj:saslibrary?@id? '.'",n,lib_uri); 112 rc = metadata_getattr(lib_uri,"name",name); 113 put antal= lib_uri= rc name = ; 114 end; 115 run; antal=7 lib_uri=omsobj:saslibrary\a5ohx7yd.bl0002be 0 name=oracle_target antal=7 lib_uri=omsobj:saslibrary\a5ohx7yd.bl0002bd 0 name=source_oracle1 antal=7 lib_uri=omsobj:saslibrary\a5ohx7yd.bl0001jn 0 name=target_data antal=7 lib_uri=omsobj:saslibrary\a5ohx7yd.bl0001jm 0 name=source_data antal=7 lib_uri=omsobj:saslibrary\a5ohx7yd.bl0001jl 0 name=work antal=7 lib_uri=omsobj:saslibrary\a5ohx7yd.bl0000rt 0 name=sashelp antal=7 lib_uri=omsobj:saslibrary\a5ohx7yd.bl name=atp_data

43 Find alle libnames 129 data _null_ ; 130 length lib_uri path_uri name path $80; 131 lib_uri=lib_uri ; name=name; path_uri=path_uri ; path=path; 132 antal =metadata_getnobj("omsobj:saslibrary?@id? '.'",1,lib_uri); 133 do n=1 to antal; 134 rc = metadata_getnobj("omsobj:saslibrary?@id? '.'",n,lib_uri); 135 rc = metadata_getattr(lib_uri,"name",name); 136 rc =metadata_getnasn(lib_uri,"usingpackages",1,path_uri); 137 rc = metadata_getattr(path_uri,"directoryname",path); 138 put name = path=; 139 end; 140 run; name=oracle_target path=c:\migr\ora_target name=source_oracle1 path=c:\migr\ora_source name=target_data path=c:\migr\target name=source_data path=c:\migr\source name=work path=c:\temp name=sashelp path=sasenvironment\sascode\jobs name=atp_data path=d:\proj\atp\metadata

44 Find alle libnames 141 data libnames ; 142 length lib_uri path_uri name path $80; 143 lib_uri=lib_uri ; name=name; path_uri=path_uri ; path=path; 144 antal =metadata_getnobj("omsobj:saslibrary?@id? '.'",1,lib_uri); 145 do n=1 to antal; 146 rc = metadata_getnobj("omsobj:saslibrary?@id? '.'",n,lib_uri); 147 rc = metadata_getattr(lib_uri,"name",name); 148 rc =metadata_getnasn(lib_uri,"usingpackages",1,path_uri); 149 rc = metadata_getattr(path_uri,"directoryname",path); 150 keep name path; 151 output; 152 end; 153 run; NOTE: The data set WORK.LIBNAMES has 7 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.51 seconds cpu time 0.09 seconds

45 Skrive metadata METADATA_SETATTR Function METADATA_SETASSN Function METADATA_SETPROP Function

46 Ret i metadata %let doit=; *OK; *options metaserver= metaport= metauser= metapass= ; data addresser ; length uri_location member_uri uri_user $80 Address $25 navn $50 idtype $15; keep Address idtype ; nobj=metadata_getnobj("omsobj:person?@id contains '.'",1,uri_user); do n=1 to nobj ; nobj=metadata_getnobj("omsobj:person?@id contains '.'",n,uri_user); rc =metadata_getattr(uri_user,"name",navn); antal = metadata_getnasn(uri_user,"locations",1,uri_location); do p=1 to antal; rc = metadata_getnasn(uri_user,"locations",p,uri_location); rc = metadata_getattr(uri_location,"address",address); output; end; end; run;

47 Best practice Kun opdatering, når vi har testet rc = metadata_getattr(uri_location,"address",address); IF address=:"high Street" then do; putlog uri_user navn Address= " rettes til Bredgade" ; IF "&DOIT"="OK" then do; rc = metadata_setattr(uri_location,"address","bredgade"); END; END; Else putlog Address= " rettes ikke ";

48 Fjern metadata METADATA_DELASSN Function METADATA_DELOBJ Function Bedre at gøre i: SAS Data Integration Studio SAS Management Console SAS OLAP Cube Studio Osv.

49 Metadata Security

50 Metadata Security Administration Nyt i SAS 9.2 Genvej til at håndtere opgaver med ACT og tilknytning til objekter Løser de ofte komplicerede problemer med oprettelse og håndtering af ACTs

51 Metadata Security Administration METASEC_APPLYACT Function METASEC_BEGTRAN Function METASEC_DELACT Function METASEC_ENDTRAN Function METASEC_GETACTA Function METASEC_GETNACT Function METASEC_GETNACTA Function METASEC_GETNAUTH Function METASEC_GETNID Function METASEC_NEWACT Function METASEC_REMACT Function METASEC_SETACTA Function METASEC_SETAUTH Function

52 Transaction Context Handle %mdseccon(); * Create context handle ; rc=metasec_begtran(uri,0, tc); Modify ACT definitions and associations * Commit changes ; rc=metasec_endtran(uri,tc, &_SECAD_COMMIT_TC );

53 ACT-manipulation METASEC_NEWACT Function METASEC_GETACTA Function METASEC_GETNACTA Function METASEC_SETACTA Function METASEC_DELACT Function

54 Access Control Definition METASEC_APPLYACT Function METASEC_GETNACT Function METASEC_GETNAUTH Function METASEC_GETNID Function METASEC_REMACT Function METASEC_SETAUTH Function

55 Yderligere dokumentation SAS Intelligence Platform: Data Administration Guide SAS Intelligence Platform: Overview SAS Intelligence Platform: Security Administration Guide SAS Intelligence Platform: System Administration Guide SAS Language Reference: Concepts SAS Metadata Model: Reference SAS Open Metadata Interface: Reference SAS XML LIBNAME Engine: User's Guide

56 Tak for i dag

57 Henrik Dorf Copyright 2006, SAS Institute Inc. All rights reserved.

Join af tabeller med SAS skal det være hurtigt?

Join af tabeller med SAS skal det være hurtigt? Join af tabeller med SAS skal det være hurtigt? Henrik Dorf, chefkonsulent, PS Commercial Join af tabeller Skal det være hurtigt kræver det Valgmuligheder Viden Eksperimenter Historien En af de første

More information

SPDE. Lagring af større datamængder. make connections share ideas be inspired. Henrik Dorf Chefkonsulent SAS Institute A/S

SPDE. Lagring af større datamængder. make connections share ideas be inspired. Henrik Dorf Chefkonsulent SAS Institute A/S make connections share ideas be inspired SPDE Lagring af større datamængder Henrik Dorf Chefkonsulent SAS Institute A/S SPDE Scalable Performance Data Engine I/O delen af SPDServer software Følger med

More information

Hot & New in Symantec Management and Windows Protection

Hot & New in Symantec Management and Windows Protection [Technology Days 2010] Hot & New in Symantec and Windows Protection Finn Henningsen & Wael Al Assadi Hot & New in Symantec and Windows Protection AGENDA 1 2 3 Intro Storage /Wael Al Assadi Assadi Endpoint

More information

SAS Visual Analytics: Arkitektur, data flow og administration

SAS Visual Analytics: Arkitektur, data flow og administration make connections share ideas be inspired SAS Visual Analytics: Arkitektur, data flow og administration Jens Dahl Mikkelsen, SAS Institute Agenda SAS Visual Analytics-komponenter Blade server-miljø Arkitektur

More information

* --- Alle labels kan nu bestemmes i PROC PRINT -------;

* --- Alle labels kan nu bestemmes i PROC PRINT -------; Foredrag på SAS Forum, 18. september 2013 Nyheder i SAS 9.4 for SAS programmører, Georg Morsing Program 1 * --- Alle labels kan nu bestemmes i PROC PRINT -------; proc print data=sashelp.cars label grandtotal_label='total

More information

SAS og Excel. Kender du fem forskellige måder at overføre data mellem SAS og Excel? Gert Nissen, seniorkonsulent

SAS og Excel. Kender du fem forskellige måder at overføre data mellem SAS og Excel? Gert Nissen, seniorkonsulent SAS og Excel Kender du fem forskellige måder at overføre data mellem SAS og Excel? Gert Nissen, seniorkonsulent Copyright 2011 SAS Institute Inc. All rights reserved. Indhold Introduktion 5 metoder Konklusion

More information

Leveraging the SAS Open Metadata Architecture Ray Helm & Yolanda Howard, University of Kansas, Lawrence, KS

Leveraging the SAS Open Metadata Architecture Ray Helm & Yolanda Howard, University of Kansas, Lawrence, KS Paper AD08-2011 Leveraging the SAS Open Metadata Architecture Ray Helm & Yolanda Howard, University of Kansas, Lawrence, KS Abstract In the SAS Enterprise BI and Data Integration environments, the SAS

More information

SAP Best Practices. Færdigpakket branchespecifik og brancheovergribende knowhow. Tilgængelighed for SAP-kunder og SAP-partnere

SAP Best Practices. Færdigpakket branchespecifik og brancheovergribende knowhow. Tilgængelighed for SAP-kunder og SAP-partnere SAP Best Practices Færdigpakket branchespecifik og brancheovergribende knowhow Tilgængelighed for SAP-kunder og SAP-partnere 1. Tilgængelighed af SAP Best Practices 2. Download af SAP Best Practices Tilgængelighed

More information

2 halvleg. 1 halvleg. Opvarmning. 2 halvleg. 3 halvleg. Advanced & Powerful. Basic PC-based Automation. Diagnose. Online Tools & Add-on s

2 halvleg. 1 halvleg. Opvarmning. 2 halvleg. 3 halvleg. Advanced & Powerful. Basic PC-based Automation. Diagnose. Online Tools & Add-on s Opvarmning 1 halvleg 2 halvleg 3 halvleg Basic PC-based Automation Advanced & Powerful PC-based Automation Online Tools & Add-on s PC-based Automation Diagnose PC-based Automation Mall www.siemens.dk/mall

More information

SAS Intelligence Database Teknikken bag den nye database

SAS Intelligence Database Teknikken bag den nye database SAS Intelligence Database Teknikken bag den nye database Georg Morsing Georg.Morsing@sdk.sas.com SAS Institute A/S Ny databaseteknologi til enterprise intelligence RDBMS SAS Intelligence Database Information

More information

OIO Dekstop applikation

OIO Dekstop applikation OIO Dekstop applikation 25-09-2009. Version 1.0 Sammendrag af ideer og dialog på møde d. 24-09-2009 mellem ITST, Trifork og Designit Under udarbejdelse Diagram Test applikation Grupper Digitaliser.dk Applikation

More information

VHDL programmering H2

VHDL programmering H2 VHDL programmering H2 VHDL (Very high speed Integrated circuits) Hardware Description Language IEEE standard 1076-1993 Den benytter vi!! Hvornår blev den frigivet som standard første gang?? Ca. 1980!!

More information

An email macro: Exploring metadata EG and user credentials in Linux to automate email notifications Jason Baucom, Ateb Inc.

An email macro: Exploring metadata EG and user credentials in Linux to automate email notifications Jason Baucom, Ateb Inc. SESUG 2012 Paper CT-02 An email macro: Exploring metadata EG and user credentials in Linux to automate email notifications Jason Baucom, Ateb Inc., Raleigh, NC ABSTRACT Enterprise Guide (EG) provides useful

More information

Questionnaire #1: The Patient (Spørgeskema, må gerne besvares på dansk)

Questionnaire #1: The Patient (Spørgeskema, må gerne besvares på dansk) Table of Contents Questionnaire #1: The Patient... 2 Questionnaire #2: The Medical Staff... 4 Questionnaire #3: The Visitors... 6 Questionnaire #4: The Non-Medical Staff... 7 Page1 Questionnaire #1: The

More information

SAS Business Intelligence Online Training

SAS Business Intelligence Online Training SAS Business Intelligence Online Training IQ Training facility offers best online SAS Business Intelligence training. Our SAS Business Intelligence online training is regarded as the best training in Hyderabad

More information

SharePoint Brugergruppe møde 15. august 2014

SharePoint Brugergruppe møde 15. august 2014 SharePoint Brugergruppe møde 15. august 2014 Konsulent i justb Underviser hos Orange Man Initiativtager til MsBIP Arbejdet med Microsoft BI i 7 år Stærkt fokus på front-end Analysis Services Reporting

More information

Oversættelse af symbolsk maskinsprog. Sammenkædning og indlæsning af maskinsprog

Oversættelse af symbolsk maskinsprog. Sammenkædning og indlæsning af maskinsprog Oversættelse af symbolsk maskinsprog Sammenkædning og indlæsning af maskinsprog Niveauer af abstrakte maskiner Spørgsmål... Hvordan bruges asm-niveauet? metode til programmering Hvordan stilles asm-niveauet

More information

Nyheder i SAS Data Management med SAS version 9.4 Jens Dahl Mikkelsen Nordic CoE, Information Management

Nyheder i SAS Data Management med SAS version 9.4 Jens Dahl Mikkelsen Nordic CoE, Information Management make connections share ideas be inspired Nyheder i SAS Data Management med SAS version 9.4 Jens Dahl Mikkelsen Nordic CoE, Information Management Indhold Nye pakker nye muligheder Nyheder med SAS 9.4-baseret

More information

Wake-Up Meeting hos PeopleNet 5. september 2013

Wake-Up Meeting hos PeopleNet 5. september 2013 Wake-Up Meeting hos PeopleNet 5. september 2013 Konsulent i justb Underviser hos Orange Man Initiativtager til MsBIP Arbejdet med Microsoft BI i 7 år Stærkt fokus på front-end Analysis Services Reporting

More information

Udnyt dine computerressourcer optimalt med SAS Grid Manager - sådan kommer du hurtigt i gang

Udnyt dine computerressourcer optimalt med SAS Grid Manager - sådan kommer du hurtigt i gang make connections share ideas be inspired Udnyt dine computerressourcer optimalt med SAS Grid Manager - sådan kommer du hurtigt i gang Copyright 2014, SAS Institute Inc. All rights reserved. DHL løb 2014

More information

Introduktion til distribuerede systemer uge 37 - fil og webserver

Introduktion til distribuerede systemer uge 37 - fil og webserver Introduktion til distribuerede systemer uge 37 - fil og webserver Rune Højsgaard 090678 1. delsstuderende 13. september 2005 1 Kort beskrivelse Implementationen af filserver og webserver virker, men håndterer

More information

Claus B. Jensen IT Auditor, CISA, CIA

Claus B. Jensen IT Auditor, CISA, CIA Claus B. Jensen IT Auditor, CISA, CIA I am employed in Rigsrevisionen, Denmark. (Danish National Audit Office) I have worked within IT Audit since 1995, both as internal and external auditor and now in

More information

How To Create A Visual Analytics System

How To Create A Visual Analytics System make connections share ideas be inspired SAS Visual Analyticsarkitektur Thomas Damgaard Seniorkonsulent Agenda Hvad er SAS Visual Analytics? Arkitektur Tekniske krav Implementering Spørgsmål Hvad er SAS

More information

Oracle Application Express

Oracle Application Express Oracle Application Express Eftermiddagsmøde Oracle/APEX Konsulent Oracle/APEX Konsulent Startede som Oracle udvikler i 1988 (RDBMS Version 5) Startede MBNDATA i 1996 APEX specialisering siden 1997 Agenda

More information

Presentation. Morten Hvenegaard Project Sales

Presentation. Morten Hvenegaard Project Sales Presentation One sensor in each luminaire - efficient lighting control 25 % savings on seamless daylight adjustment. One sensor in each luminaire - efficient lighting control 25 % savings on seamless daylight

More information

Information og dokumentation Ledelsessystem for dokumentstyring Krav

Information og dokumentation Ledelsessystem for dokumentstyring Krav Dansk standard DS/ISO 30301 1. udgave 2011-11-22 Information og dokumentation Ledelsessystem for dokumentstyring Krav Information and documentation Management systems for records Requirements DS/ISO 30301

More information

National strategi for Datamanagement Input fra Bevaring, Formidling og Genbrug. Birte Christensen-Dalsgaard Det Kongelige Bibliotek

National strategi for Datamanagement Input fra Bevaring, Formidling og Genbrug. Birte Christensen-Dalsgaard Det Kongelige Bibliotek National strategi for Datamanagement Input fra Bevaring, Formidling og Genbrug Birte Christensen-Dalsgaard Det Kongelige Bibliotek Disposition Hvad er forskningsdata Hvorfor skulle forskere være interesseret?

More information

Management. Support HR

Management. Support HR Brugerrejsen Product development Marketing Sales Support HR Service IT Financial Management Før Under Efter a b Planlægning Køreplan Købe billet: Orange eller 1...? Pladsbillet: Familie eller stille? Transport

More information

! Crowdsourcing!the!Library!

! Crowdsourcing!the!Library! CrowdsourcingtheLibrary ByLoneStefansen TheRoyalLibraryofDenmark Background KBhasbeenworkingwithcrowdsourcingfor3 years LibrarieshaveauniqueopportunitytoaBract andengagedifferentcommunides» NonFprofit»

More information

Baggrunds information om Alusta

Baggrunds information om Alusta Baggrunds information om Alusta 4X Charlotte Wedell-Neergaard Robert Ayzma Basware Experience User Forum Collaborate. Innovate. Succeed. Australia Denmark Finland France Germany Netherlands Norway Sweden

More information

SRX. SRX Firewalls. Rasmus Elmholt V1.0

SRX. SRX Firewalls. Rasmus Elmholt V1.0 SRX SRX Firewalls Rasmus Elmholt V1.0 Deployment Branch SRX Series SRX100, SRX110, SRX210, SRX220, SRX240, SRX550, SRX650 Fokus for dette kursus Data Center SRX Series SRX1400, SRX3400, SRX3600, SRX5400,

More information

Agil Business Process Management - i Finans

Agil Business Process Management - i Finans Agil Business Process Management - i Finans Thomas Hildebrandt Lektor, PhD Leder af gruppen for Proces- & Systemmodeller ved IT Universitetet i København og Interessegruppen for processer og IT ved Infinit

More information

DO, DON T og DORF. SAS -programmering

DO, DON T og DORF. SAS -programmering DO, DON T og DORF SAS -programmering Copyright 2002-2011, SAS Institute Inc., Cary, NC, USA SAS Institute Inc., SAS Campus Drive, Cary, North Carolina 27513. SAS and all other SAS Institute Inc. product

More information

Informationsteknologi Serviceledelse Del 4: Procesreferencemodel

Informationsteknologi Serviceledelse Del 4: Procesreferencemodel DS-information DS/ISO/IEC TR 20000-4 1. udgave 2010-12-14 Informationsteknologi Serviceledelse Del 4: Procesreferencemodel Information technology Service management Part 4: Process reference model DS/ISO/IEC

More information

How To Use Apex 4.0.2.2 (Oracle)

How To Use Apex 4.0.2.2 (Oracle) Webinar for IT- udviklere Oracle Applica7on Express (APEX) Foredragsholder Her skal flyeren være Agenda Introduk7on Installa7on & Administra7on Applika7onsudvikling APEX 4.0 GeMng started Q & A Introduk7on

More information

SAS Data Integration SAS Business Intelligence

SAS Data Integration SAS Business Intelligence Kursöversikt 2010 SAS Education Providing knowledge through global training and certification SAS Data Integration SAS Business Intelligence Specialkurser SAS Forum 2010 Kontaktinformation Stora Frösunda

More information

1) Testing of general knowledge 25%. Each right question counts 1. Each wrong counts 0.5. Empty

1) Testing of general knowledge 25%. Each right question counts 1. Each wrong counts 0.5. Empty 1 Exam 2 The exam consists of four parts: 1) Testing of general knowledge 25%. Each right question counts 1. Each wrong counts 0.5. Empty counts zero. See below note about Task 1. 2) Planning 20%. All

More information

Hvordan kunders informasjonsbehov er endret og hvordan bedrifter kan tilpasse seg denne endringen. Steinar Heggemsnes HP Exstream

Hvordan kunders informasjonsbehov er endret og hvordan bedrifter kan tilpasse seg denne endringen. Steinar Heggemsnes HP Exstream Hvordan kunders informasjonsbehov er endret og hvordan bedrifter kan tilpasse seg denne endringen. Steinar Heggemsnes HP Exstream Kommunikasjon i går og i dag Agenda: Kommunikasjon i går og i dag Hvordan

More information

GUIDE to completion of the Excel spreadsheet

GUIDE to completion of the Excel spreadsheet GUIDE to completion of the Excel spreadsheet 1 S i d e 1 TABLE OF CONTENTS 1 TABLE OF CONTENTS... 2 1.1 Data Entry Generalities... 3 1.2 Prepare data... 5 1.3 Simple Data Entry (horizontal direction)...

More information

FME 2015 in Action. Ken Bragg European Services Manager. #fmewt

FME 2015 in Action. Ken Bragg European Services Manager. #fmewt FME 2015 in Action Ken Bragg European Services Manager #fmewt FME 2015 in Action 1. Reporting with FME 2. LIDAR News 3. GML Writing 4. 3D with FME 5. BIM BIM/Revit at norkart clients Egenskapshåndtering

More information

Kogebogs HelloWorld øvelser i.net Remoting

Kogebogs HelloWorld øvelser i.net Remoting Kogebogs HelloWorld øvelser i.net Remoting Denne øvelse viser hvordan en simpel.net Remoting client / server applikation kan konstrueres. Der arbejdes med et simpelt, men klassisk, HelleWorld program,

More information

How To Boot A Cisco Ip Phone From A Cnet Vlan To A Vlan On A Cpower Box On A Ip Phone On A Network With A Network Vlan (Cisco) On A Powerline (Ip Phone) On An

How To Boot A Cisco Ip Phone From A Cnet Vlan To A Vlan On A Cpower Box On A Ip Phone On A Network With A Network Vlan (Cisco) On A Powerline (Ip Phone) On An IP Telefoni DHCP Options VLANs Understanding the Cisco IP Phone Boot Process The Cisco IP Phone connects to an Ethernet switchport. If the IP phone and switch support PoE, the IP phone receives power through

More information

Statistiske metoder i procesledelse Kapabilitet og performance Del 3: Analyse af maskinperformance for måleværdier på (diskrete) emner

Statistiske metoder i procesledelse Kapabilitet og performance Del 3: Analyse af maskinperformance for måleværdier på (diskrete) emner Dansk standard DS/ISO 22514-3 1. udgave 2008-05-08 Statistiske metoder i procesledelse Kapabilitet og performance Del 3: Analyse af maskinperformance for måleværdier på (diskrete) emner Statistical methods

More information

OIOudvalget for e-handel. 14. September 2010 Ole Madsen

OIOudvalget for e-handel. 14. September 2010 Ole Madsen OIOudvalget for e-handel 14. September 2010 Ole Madsen ForsyningsSpecifikation UtilityStatement (UTS) En OIOUBL faktura/kreditnota kan nu have en reference til et (eller flere) UTS dokument(er) Det Offentlige

More information

CAMP LOGOS administrated by Boligselskabet Sct. Jørgen (housing agency)

CAMP LOGOS administrated by Boligselskabet Sct. Jørgen (housing agency) CAMP LOGOS administrated by Boligselskabet Sct. Jørgen (housing agency) Camp Logos the buildings Camp Logos is the dorm across the street from The Animation Workshop. There are 4 buildings side by side

More information

Hvis personallisten ikke er ført slik reglene sier, kan Skatteetaten ilegge overtredelsesgebyr.

Hvis personallisten ikke er ført slik reglene sier, kan Skatteetaten ilegge overtredelsesgebyr. Denne boken er utgitt av Skatteetaten og sendes gratis til alle som er pålagt å føre personalliste fra 1. januar 2014. Det vil si bransjene servering, frisør, skjønnhetspleie, bilpleie og bilverksted.

More information

Real-Time Market Monitoring using SAS BI Tools

Real-Time Market Monitoring using SAS BI Tools Paper 1835-2014 Real-Time Market Monitoring using SAS BI Tools Amol Deshmukh, CA ISO Corporation, Folsom Jeff McDonald, CA ISO Corporation, Folsom Abstract The Department of Market Monitoring at California

More information

Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide

Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide Step 1: Setting Up Required Users and Groups o Windows Operating Systems Only Step 2: Installing Software Using the SAS

More information

Omkostnings- og investeringsteori Efterår 2009 Opgaver

Omkostnings- og investeringsteori Efterår 2009 Opgaver Omkostnings- og investeringsteori Efterår 2009 Opgaver Jonas Sveistrup Hansen - stud.merc.it 23. september 2009 1 Indhold 1 2-27 p. 76 - Identifying Cost Drivers 3 2 2-46 p. 81- Basic Relationship, Restaurant

More information

Vejledning til en europæisk COREfaktura-datamodel. CII-retningslinjer for implementering Del 1: Introduktion

Vejledning til en europæisk COREfaktura-datamodel. CII-retningslinjer for implementering Del 1: Introduktion DS-information DS/CWA 16356-1 1. udgave 2011-11-09 Vejledning til en europæisk COREfaktura-datamodel med UN/CEFACT CII-retningslinjer for implementering Del 1: Introduktion Guide for a European CORE INVOICE

More information

Software- og systemudvikling Softwaretest Del 1: Begreber og definitioner

Software- og systemudvikling Softwaretest Del 1: Begreber og definitioner Dansk standard DS/ISO/IEC/IEEE 29119-1 1. udgave 2013-09-26 Software- og systemudvikling Softwaretest Del 1: Begreber og definitioner Software and systems engineering Software testing Part 1: Concepts

More information

Informationsteknologi Små computersystemers. Del 251: USB-fæstnet SCSI (UAS)

Informationsteknologi Små computersystemers. Del 251: USB-fæstnet SCSI (UAS) Dansk standard DS/ISO/IEC 14776-251 1. udgave 2014-05-27 Informationsteknologi Små computersystemers grænseflade (SCSI) Del 251: USB-fæstnet SCSI (UAS) Information technology Small computer system interface

More information

Koblingen mellem forskere og virksomheder: hvorfor, hvordan? Morten Ølgaard Jensen, ph.d. September 2011

Koblingen mellem forskere og virksomheder: hvorfor, hvordan? Morten Ølgaard Jensen, ph.d. September 2011 Koblingen mellem forskere og virksomheder: hvorfor, hvordan? Morten Ølgaard Jensen, ph.d. September 2011 BAGGRUND: Industri og Forskning - GIT / Emory (USA) 1997-2000 - National Instruments (USA) 2000

More information

Informationsteknologi Personlig identifikation ISO-overensstemmende kørekort Del 4: Prøvningsmetoder

Informationsteknologi Personlig identifikation ISO-overensstemmende kørekort Del 4: Prøvningsmetoder Dansk standard DS/ISO/IEC 18013-4 1. udgave 2012-01-11 Informationsteknologi Personlig identifikation ISO-overensstemmende kørekort Del 4: Prøvningsmetoder Information technology Personal identification

More information

Books-by-Users Web Development with SAS by Example (Third Edition) Frederick E. Pratter

Books-by-Users Web Development with SAS by Example (Third Edition) Frederick E. Pratter Books-by-Users Web Development with SAS by Example (Third Edition) Frederick E. Pratter Click Tom to Kari, edit Master Statistics subtitle style 07/06/12 Come out of the desert of ignorance to the OASUS

More information

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide SAS/ACCESS 9.1 Interface to SAP BW User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS/ACCESS 9.1 Interface to SAP BW: User s Guide. Cary, NC: SAS

More information

Agenda. Nortel Management værktøj til CS1000 Telephony Manager (TM 3.x) Nyheder i TM 3.2 ECM (Enterprise Common Manager) Subscriber Manager

Agenda. Nortel Management værktøj til CS1000 Telephony Manager (TM 3.x) Nyheder i TM 3.2 ECM (Enterprise Common Manager) Subscriber Manager Nordic Connect 2008 Agenda Nortel Management værktøj til CS1000 Telephony Manager (TM 3.x) Nyheder i TM 3.2 ECM (Enterprise Common Manager) Subscriber Manager Nortel Management værktøj til CS1000 Print

More information

Tallotteri. En pose indeholder 90 brikker, som er forsynet med tallene 1,2,3,.,90.

Tallotteri. En pose indeholder 90 brikker, som er forsynet med tallene 1,2,3,.,90. Tallotteri En pose indeholder 90 brikker, som er forsynet med tallene 1,2,3,.,90. Følgende proces gentages indtil der kun er én brik tilbage: Vælg to vilkårlige brikker med tallene x og y (x y), og erstat

More information

Evaluation and Assessment of Key Competences in Denmark

Evaluation and Assessment of Key Competences in Denmark Dublin, March 2013 Evaluation and Assessment of Key Competences in Denmark Benvido a Dublin Steen Lassen, senior advisor The Ministry of Children and Education, Denmark I: The Folkeskole internal and external

More information

Rubber condoms Guidance on the use of ISO 4074 in the quality management of natural rubber latex condoms

Rubber condoms Guidance on the use of ISO 4074 in the quality management of natural rubber latex condoms Dansk standard DS/ISO 16038 1. udgave 2005-11-14 Kondomer Vejledning i brug af ISO 4074 ved kvalitetsstyring af latexkondomer Rubber condoms Guidance on the use of ISO 4074 in the quality management of

More information

Sundhedsinformatik Kapacitetsbaseret roadmap for e-sundhedsarkitektur Del 1: Oversigt over nationale e-sundhedsinitiativer

Sundhedsinformatik Kapacitetsbaseret roadmap for e-sundhedsarkitektur Del 1: Oversigt over nationale e-sundhedsinitiativer DS-information DS/ISO/TR 14639-1 1. udgave 2012-10-11 Sundhedsinformatik Kapacitetsbaseret roadmap for e-sundhedsarkitektur Del 1: Oversigt over nationale e-sundhedsinitiativer Health informatics Capacity-based

More information

GB INTRODUCTION manual:

GB INTRODUCTION manual: GS - GS/L S2/S4 4 5 GB INTRODUCTION manual: Manufacturing Firm; The person responsible for the use of the fork truck must make sure that all of the safety rules in force in INSTRUCTIONS FOR USE 1) Do not

More information

Course: SAS BI(business intelligence) and DI(Data integration)training - Training Duration: 30 + Days. Take Away:

Course: SAS BI(business intelligence) and DI(Data integration)training - Training Duration: 30 + Days. Take Away: Course: SAS BI(business intelligence) and DI(Data integration)training - Training Duration: 30 + Days Take Away: Class notes and Books, Data warehousing concept Assignments for practice Interview questions,

More information

Informationsteknologi Storage management Del 1: Oversigt

Informationsteknologi Storage management Del 1: Oversigt Dansk standard DS/ISO/IEC 24775-1 1. udgave 2014-11-13 Informationsteknologi Storage management Del 1: Oversigt Information technology Storage management Part 1: Overview DS/ISO/IEC 24775-1 København DS

More information

EXAM - A00-270. SAS Certified BI Content Developer for SAS 9. Buy Full Product. http://www.examskey.com/a00-270.html

EXAM - A00-270. SAS Certified BI Content Developer for SAS 9. Buy Full Product. http://www.examskey.com/a00-270.html SAS-Institute EXAM - A00-270 SAS Certified BI Content Developer for SAS 9 Buy Full Product http://www.examskey.com/a00-270.html Examskey SAS-Institute A00-270 exam demo product is here for you to test

More information

Introduktion till SAS 9 Plattformen Helikopterkursen

Introduktion till SAS 9 Plattformen Helikopterkursen Introduktion till SAS 9 Plattformen Helikopterkursen Kursens mål: Denna kurs/workshop ger dig en samlad överblick över den nye SAS 9 Intelligenta Plattformen. Denna dag är en bra start för att förstå SAS

More information

How To Understand The Purpose Of A Class Diagram In Java.Io 2.5.2.2 (Java)

How To Understand The Purpose Of A Class Diagram In Java.Io 2.5.2.2 (Java) Software Engineering I (02161) Week 3: Class diagrams part 1 Hubert Baumeister Informatics and Mathematical Modelling Technical University of Denmark Spring 2009 c 2009 H. Baumeister (IMM) Software Engineering

More information

SAS Customer Intelligence

SAS Customer Intelligence SAS Customer Intelligence Jan Thomas Løwe, Chefkonsulent & Christian Skytt, Projektleder SAS Institute A/S indicates USA registration. Agenda Platformen og løsningerne Proces og arkitektur Demonstration

More information

Informationsteknologi til læring, uddannelse og oplæring Informationsmodel for kompetencer Del 2: Informationsmodel for kompetenceniveau

Informationsteknologi til læring, uddannelse og oplæring Informationsmodel for kompetencer Del 2: Informationsmodel for kompetenceniveau Dansk standard DS/ISO/IEC 20006-2:2015 1. udgave 2015-08-04 Informationsteknologi til læring, uddannelse og oplæring Informationsmodel for kompetencer Del 2: Informationsmodel for kompetenceniveau Information

More information

Sundhedsinformatik Krav til den elektroniske patientjournals arkitektur

Sundhedsinformatik Krav til den elektroniske patientjournals arkitektur Dansk standard DS/ISO 18308 1. udgave 2011-09-06 Sundhedsinformatik Krav til den elektroniske patientjournals arkitektur Health informatics Requirements for an electronic health record architecture DS/ISO

More information

Student evaluation form

Student evaluation form Student evaluation form Back Number of respondents: 17 1. Multiple choice question Percentage Name of course: [Insert name of course here!] Course Objectives: [Insert course objectives (målbeskrivelse)

More information

Since 1970. David Super-Light A/S Horsensvej 28 Gl. Rye DK-8680 Ry Phone (+45) 86 89 85 00 mail@davidsuperlight.dk www.davidsuperlight.

Since 1970. David Super-Light A/S Horsensvej 28 Gl. Rye DK-8680 Ry Phone (+45) 86 89 85 00 mail@davidsuperlight.dk www.davidsuperlight. Dansk design, kvalitet & produktion Danish design, Made in denmark Since 1970 David Super-Light A/S Horsensvej 28 Gl. Rye DK-8680 Ry Phone (+45) 86 89 85 00 mail@davidsuperlight.dk www.davidsuperlight.dk

More information

Softwareudvikling Kvalitetskrav til og evaluering af softwareprodukter (SQuaRE) Fælles industriformat (CIF) til brugbare testrapporter

Softwareudvikling Kvalitetskrav til og evaluering af softwareprodukter (SQuaRE) Fælles industriformat (CIF) til brugbare testrapporter Dansk standard DS/ISO/IEC 25062 1. udgave 2008-05-08 Softwareudvikling Kvalitetskrav til og evaluering af softwareprodukter (SQuaRE) Fælles industriformat (CIF) til brugbare testrapporter Software engineering

More information

Ergonomi Fysisk miljø Anvendelse af internationale standarder for personer med særlige behov

Ergonomi Fysisk miljø Anvendelse af internationale standarder for personer med særlige behov Dansk standard DS/EN ISO 28803 1. udgave 2012-04-23 Ergonomi Fysisk miljø Anvendelse af internationale standarder for personer med særlige behov Ergonomics of the physical environment Application of international

More information

Jordundersøgelser Prøvetagning Del 5: Vejledning i undersøgelse af jordforurening på bymæssige og industrielle grunde

Jordundersøgelser Prøvetagning Del 5: Vejledning i undersøgelse af jordforurening på bymæssige og industrielle grunde Dansk standard DS/ISO 10381-5 1. udgave 2005-11-09 Jordundersøgelser Prøvetagning Del 5: Vejledning i undersøgelse af jordforurening på bymæssige og industrielle grunde Soil quality Sampling Part 5: Guidance

More information

Vejen til privat finansiering. 16. juni 2011

Vejen til privat finansiering. 16. juni 2011 Vejen til privat finansiering 16. juni 2011 Vejen til privat finansiering 1 Præsentation 2 Investor og banken din første kunde 3 Struktureret søgning 4 Netværk til finansiering 5 Case Intelligent styring

More information

XenDesktop Workshop. Hva, Hvordan.? The best desktop virtualization solution is now even better

XenDesktop Workshop. Hva, Hvordan.? The best desktop virtualization solution is now even better powered by XenDesktop Workshop. Hva, Hvordan.? The best desktop virtualization solution is now even better Stian A. Petersen Løsnings Arkitekt Stian@commaxx.no Commaxx Denne workshop er basert på følgende:

More information

LS-PBS LeverandørService opkrævninger via nets Instructions

LS-PBS LeverandørService opkrævninger via nets Instructions Instructions DDB DATA ApS Telefon: 58 30 32 00 - www.ddb-data.dk Side 1 Generelt (General information) LS-PBS is a program, which is used for sending and receiving nets / PBS LeverandørService charges

More information

MapBasic & spatiale databaser

MapBasic & spatiale databaser MapBasic & spatiale databaser Peter Horsbøll Møller Systems Engineer Marts 2012 DBMS Sample [CONNECTIONS] NUM_CONNECTIONS=4 [CONNECTION_1] DESCRIPTION=DSN using FileDSN CONNECTIONTYPE=FILEDSN FILEDSN=SQL2008.DSN

More information

COACH BOT Modular e-course with virtual coach tool support

COACH BOT Modular e-course with virtual coach tool support COACH BOT Modular e-course with virtual coach tool support LIFELONG LEARNING PROGRAM LEONARDO da VINCI Aarhus Social and Health Care College TRAINING FOR HEALTHCARE PROFESSIONALS AND HOME CARE PROVIDERS

More information

Casestudier, der understøtter IEC 62232 Bestemmelse af RF-felter og SAR-værdier i nærheden af radiokommunikationsbasestationer

Casestudier, der understøtter IEC 62232 Bestemmelse af RF-felter og SAR-værdier i nærheden af radiokommunikationsbasestationer DS-information DS/IEC/TR 62669 1. udgave 2011-07-04 Casestudier, der understøtter IEC 62232 Bestemmelse af RF-felter og SAR-værdier i nærheden af radiokommunikationsbasestationer med det formål at evaluere

More information

Targeterbare mutationer / biomarkører Status og udfordringer for patologien

Targeterbare mutationer / biomarkører Status og udfordringer for patologien Targeterbare mutationer / biomarkører Status og udfordringer for patologien Birgit Guldhammer Skov overlæge, dr.med. Patologi afdelingen Rigshospitalet Biomarkers lung cancer Last 3-5 years More and more

More information

ÆSTETISK INTERAKTION 6 MIE NØRGAARD, SAINT 2012

ÆSTETISK INTERAKTION 6 MIE NØRGAARD, SAINT 2012 ÆSTETISK INTERAKTION 6 MIE NØRGAARD, SAINT 2012 One 7me when I came to visit her, Arlene was prac7sing these things. She says to herself: No, that one s wrong. So I, the great scien7st, say, What do you

More information

Technical Paper. Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication

Technical Paper. Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication Technical Paper Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication Release Information Content Version: 1.0 October 2015. Trademarks and Patents SAS Institute

More information

EMC SourceOne Family. Michael Søriis Sales Specialist Storage FUJITSU A/S. Kompetera Solutions Day 2010 23. september 2010

EMC SourceOne Family. Michael Søriis Sales Specialist Storage FUJITSU A/S. Kompetera Solutions Day 2010 23. september 2010 EMC SourceOne Family Michael Søriis Sales Specialist Storage FUJITSU A/S Kompetera Solutions Day 2010 23. september 2010 EMC SourceOne Email Management 1 Copyright 2010 FUJITSU LIMITED What is EMC SourceOne

More information

Why Do People Pay the Way They Do: The Case of Cards, Cash, and Internet Banking in the Context

Why Do People Pay the Way They Do: The Case of Cards, Cash, and Internet Banking in the Context Why Do People Pay the Way They Do: The Case of Cards, Cash, and Internet Banking in the Context of Danish Society Xiao Xiao, Jonas Hedman, and Emma Runnemark Department of IT Management, Copenhagen Business

More information

COPYRIGHT Danish Standards Foundation. NOT FOR COMMERCIAL USE OR REPRODUCTION. DS/ISO/IEC 24730-22:2012

COPYRIGHT Danish Standards Foundation. NOT FOR COMMERCIAL USE OR REPRODUCTION. DS/ISO/IEC 24730-22:2012 Dansk standard DS/ISO/IEC 24730-22 2. udgave 2012-08-29 Informationsteknologi Realtidslokaliseringssystemer (RTLS) Del 22: Direct Sequence Spread Spectrum (DSSS), 2,4 GHz-protokol for luftgrænseflade:

More information

How To Write An International Safety Standard

How To Write An International Safety Standard Dansk standard DS/ISO 26262-6 1. udgave 2012-01-11 Motorkøretøjer Funktionssikkerhed Del 6: Produktudvikling på softwareniveau Road vehicles Functional safety Part 6: Product development at the software

More information

Gør dine big data klar til analyse på en nem måde med Hadoop og SAS Data Loader for Hadoop. Jens Dahl Mikkelsen SAS Institute

Gør dine big data klar til analyse på en nem måde med Hadoop og SAS Data Loader for Hadoop. Jens Dahl Mikkelsen SAS Institute Gør dine big data klar til analyse på en nem måde med Hadoop og SAS Data Loader for Hadoop Jens Dahl Mikkelsen SAS Institute Indhold Udfordringer for analytikeren Hvordan kan SAS Data Loader for Hadoop

More information

my students are encouraged to think rather than just listen evaluations of my lectures improved significantly

my students are encouraged to think rather than just listen evaluations of my lectures improved significantly clickers evaluations of my lectures improved significantly clicker questions force me to think about what the most important messages of my lectures are with clickers it is difficult for students to hide

More information

Seilingsliste. Nordgående. Januar. Februar

Seilingsliste. Nordgående. Januar. Februar 6 Nordgående Skip Fra Bergen Til og a Sandnessjøen Harstad Hammerfest Ankomst Trdheim Bodø Trom Hningsvåg Kirkenes Finnrken ** Kg Harald Finnrken * Kg Harald Finnrken Kg Harald Finnrken Kg Harald Finnrken

More information

Vaskemaskiner til husholdningsbrug Metode til måling af reduktion af mikrobiel kontaminering

Vaskemaskiner til husholdningsbrug Metode til måling af reduktion af mikrobiel kontaminering DS-information DS/IEC PAS 62958:2015 1. udgave 2015-04-14 Vaskemaskiner til husholdningsbrug Metode til måling af reduktion af mikrobiel kontaminering Clothes washing machines for household use Method

More information

PRESSEKIT INTERNATIONALE STUDERENDE

PRESSEKIT INTERNATIONALE STUDERENDE PRESSEKIT INTERNATIONALE STUDERENDE FÅ MENTOR KORT MED MASSER AF FORDELE! Studenterhuset vil gerne bakke op om mentorernes store arbejde på KU. Derfor har vi i år lavet et mentorkort! Med et mentorkort

More information

Define ODBC Database Library using Management Console

Define ODBC Database Library using Management Console Define ODBC Database Library using Management Console Introduction: Open database connectivity (ODBC) standards provide a common interface to a variety of databases, including AS/400, dbase, Microsoft

More information

How To Price Power In Norsk

How To Price Power In Norsk Electricity consumption should there be a limit? Implications of people s attitudes for the development of sustainable pricing systems Behave Conference Hege Westskog and Tanja Winther Background for the

More information

Business development. Linnea Jacobsen. 1. semester 2014

Business development. Linnea Jacobsen. 1. semester 2014 Business development Linnea Jacobsen 1. semester 2014 v Business Models v Business Model Canvas v Groupwork Literature Alexander Osterwalder & Yves Pigneur: Business Model Generation: s. 14-47 + 76-103

More information

Använd SAS för att bearbeta och analysera ditt data i Hadoop

Använd SAS för att bearbeta och analysera ditt data i Hadoop make connections share ideas be inspired Använd SAS för att bearbeta och analysera ditt data i Hadoop Mikael Turvall Arkitektur SAS VISUAL ANALYTICS and SAS VISUAL STATISTICS SAS IN-MEMORY STATISTICS FOR

More information

SAS 9.3 Open Metadata Interface: Reference and Usage

SAS 9.3 Open Metadata Interface: Reference and Usage SAS 9.3 Open Metadata Interface: Reference and Usage SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2011. SAS 9.3 Open Metadata Interface: Reference

More information