a allapex Regular Expressions Alex Nuijten

Size: px
Start display at page:

Download "a allapex Regular Expressions Alex Nuijten"

Transcription

1 a allapex Regular Expressions say what? Alex Nuijten

2 a nuijten.blogspot.com

3 Matt Brown

4 create table t (name varchar2(25)) / insert into t (name) values ('BLAKE'); insert into t (name) values ('BLOKE'); insert into t (name) values ('BLEAKE'); insert into t (name) values ('BLKE'); insert into t (name) values ('JAKESBLAKE'); insert into t (name) values ('BLAKESJAKE'); insert into t (name) values ('BL_KE'); insert into t (name) values ('BL%KE');

5 select name from t where name = 'BLAKE' / NAME BLAKE

6 select name from t where name = 'BL_KE' / NAME BL_KE

7 select name from t where name = 'BL%KE' / NAME BL%KE

8 select name from t where name like 'BLAKE' / NAME BLAKE

9 select name from t where name like 'BL_KE' / NAME BLAKE BLOKE BL_KE BL%KE

10 select name from t where name like 'BL%KE' / NAME BLAKE BLOKE BLEAKE BLKE BL_KE BL%KE BLAKESJAKE

11 select name from t where name like 'BL\_KE' ESCAPE '\' / NAME BL_KE

12 select name from t where name like 'BL"_KE' ESCAPE '"' / NAME BL_KE

13 REGEXP_

14 REGEXP_LIKE REGEXP_SUBSTR REGEXP_INSTR REGEXP_REPLACE REGEXP_COUNT

15 Joe Penniston

16 create table theme_parks (id number,name varchar2(50),description clob );

17 Aquatica Orlando Epcot Islands of Adventure LEGOLAND Florida Disney's Magic Kingdom Discovery Cove Universal Studios Florida Disney's Animal Kingdom SeaWorld Orlando Disney's Hollywood Studios

18 At the Animal Kingdom, Disney elevates the concept of a zoological park to something completely new. Here you can take a safari ride through the wilds of Africa -- complete with real animals, raft down the Amazon or ride a runaway train through Mount Everest. The park is home to about 1,500 animals representing 250 species Osceola Parkway Lake Buena Vista, FL Region: Disney Area Phone: Toll-Free:

19 At the Animal Kingdom, Disney elevates the concept of a zoological park to something completely new. Here you can take a safari ride through the wilds of Africa -- complete with real animals, raft down the Amazon or ride a runaway train through Mount Everest. The park is home to about 1,500 animals representing 250 species Osceola Parkway Lake Buena Vista, FL Region: Disney Area Phone: Toll-Free:

20 Metacharacters.^$*+?

21 . Any Character * Zero or More Occurrences [] Characters in List + One or More Occurrences ^ Beginning of String? Zero or One Occurrence $ End of String {m} Matches m Times XOR

22 Phone: Toll-Free:

23 select id,name,regexp_substr (description, ' ') phone from theme_parks; ID NAME PHONE Aquatica Orlando Epcot 3 Islands of Adventure : LEGOLAND Florida Disney's Magic Kingdom 6 Discovery Cove Universal Studios Florida Disney's Animal Kingdom SeaWorld Orlando Disney's Hollywood Studios rows selected.

24 6000 Universal Blvd. Orlando, FL Region: Orlando Phone: (407) Toll-Free:

25 6000 Universal Blvd. Orlando, FL Region: Orlando Phone: (407) Toll-Free: [

26 6000 Universal Blvd. Orlando, FL Region: Orlando Phone: (407) Toll-Free: [

27 [Bracket Expressions] {Interval Qualifiers}

28 [Specify List of Characters]

29 [ ]

30 [ ]

31 [0-9]

32 [A-Z]

33 [A-Za-z]

34 [0-9][0-9][0-9]-[0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]

35 {m}

36 {m,}

37 {m,n}

38 Repeat exactly three times Everything in this List [0-9]{3}-[0-9]{3}-[0-9]{4} Hyphen

39 select id,name,regexp_substr (description,'[0-9]{3}-[0-9]{3}-[0-9]{4}') phone from theme_parks; ID NAME PHONE Aquatica Orlando Epcot 3 Islands of Adventure LEGOLAND Florida Disney's Magic Kingdom 6 Discovery Cove Universal Studios Florida Disney's Animal Kingdom SeaWorld Orlando Disney's Hollywood Studios rows selected.

40 200 Epcot Center Drive Lake Buena Vista, FL Region: Disney Area Phone: Toll-Free: [0-9]{3}-[0-9]{3}-[0-9]{4} Hyphen

41 Alter ations

42 or Hyphen Space (- )

43 200 Epcot Center Drive Lake Buena Vista, FL Region: Disney Area Phone: Toll-Free: [0-9]{3}(- )[0-9]{3}(- )[0-9]{4}

44 select id,name,regexp_substr (description,'[0-9]{3}(- )[0-9]{3}(- )[0-9]{4}') phone from theme_parks; ID NAME PHONE Aquatica Orlando Epcot Islands of Adventure LEGOLAND Florida Disney's Magic Kingdom 6 Discovery Cove Universal Studios Florida Disney's Animal Kingdom SeaWorld Orlando Disney's Hollywood Studios

45 Lake Buena Vista, FL Region: Disney Area Phone: Toll-Free:

46 or Hyphen Space (-.) or Any Character

47 or Hyphen Space (- \.) or Period

48 select id,name,regexp_substr (description, '[0-9]{3}(- \.)[0-9]{3}(- \.)[0-9]{4}') phone from theme_parks; ID NAME PHONE Aquatica Orlando Epcot Islands of Adventure LEGOLAND Florida Disney's Magic Kingdom Discovery Cove Universal Studios Florida Disney's Animal Kingdom SeaWorld Orlando Disney's Hollywood Studios rows selected.

49 [:Character Classes:]

50 [0-9]{3} [[:digit:]]{3} Only in Bracket Expressions

51 [:alnum:] [:alpha:] [:upper:] [:lower:] [:digit:] [:space:] [:print:] [:punct:] [:graph:] [:cntrl:] [:xdigit:]

52 select id,name,regexp_substr (description,'\(?[[:digit:]]{3}\)?(- \.)([[:digit:]]{3} [[:alpha:]]{3})(- \.),regexp_substr (description,'\(?([[:digit:]]{3} [[:digit:]]{1}[[:alpha:]]{2})\)?(- \.)([[:digi from theme_parks;

53 ID NAME PHONE PHONE Aquatica Orlando Epcot Islands of Adventure (407) LEGOLAND Florida LEGO 5 Disney's Magic Kingdom Discovery Cove DI-SCO-VERY 7 Universal Studios Florida Disney's Animal Kingdom SeaWorld Orlando Disney's Hollywood Studios rows selected.

54 First Word

55 LEGOLAND Florida, the largest LEGOLAND park in the world, features 50 rides, shows and attractions spread out over the LEGO-strewn 150-acres. If you're traveling with younger kids, LEGOLAND makes a great choice since its designed for kids between the ages of 2 and 12. Be sure to stop by the Big Shop to bring some of the LEGO action home. One LEGOLAND Way Winter Haven, FL Region: Polk County Phone: Toll-Free: LEGO

56 One or More Any Character Space.+[[:space:]]

57 select regexp_substr (description, '.+[[:space:]]') first_word from theme_parks where id = 4; FIRST_WORD LEGOLAND Florida, the largest LEGOLAND park in the world...

58 Any Character Except a Space Sweetie187

59 Negates Bracket Expression [^[:space:]]

60 select regexp_substr (description, '[^[:space:]]*') first_word from theme_parks where id = 4; FIRST_WORD LEGOLAND

61 Split Strings Phil Thomas

62 create table test (str varchar2(500)) / insert into test values ('ABC,DEF,GHI,JKL,MNO') / commit /

63 REGEXP_LIKE REGEXP_SUBSTR REGEXP_INSTR REGEXP_REPLACE REGEXP_COUNT

64 REGEXP_LIKE REGEXP_SUBSTR REGEXP_INSTR REGEXP_REPLACE REGEXP_COUNT

65 [A-Z]+ [A-Za-z]+ [A-Za-z0-9]+ [[:alnum:]]+ [^,]+

66 select regexp_substr (str, '[^,]+') split from test / SPLIT ABC 1 row selected.

67 Starting from select regexp_substr (str, '[^,]+', 1, 2) split from test / SPLIT DEF Second Occurence 1 row selected.

68 select regexp_substr (str, '[^,]+', 1, rownum) split from test connect by level <= regexp_count (str, ',') + 1 / SPLIT ABC DEF GHI JKL MNO How many comma's in the String? 5 rows selected.

69 insert into test values ('123,456,789') / commit /

70 select regexp_substr (str, '[^,]+', 1, rownum) split from test connect by level <= regexp_count (str, ',') + 1 / SPLIT ABC DEF GHI JKL MNO

71 select regexp_substr (str, '[^,]+', 1, rn) split from test cross join (select rownum rn from test connect by level <= regexp_count (str, ',') + 1 ) where regexp_substr (str, '[^,]+', 1, rn) is not null / SPLIT ABC 123 DEF 456 GHI 789 JKL MNO 8 rows selected.

72 select split from test,lateral (select regexp_substr (str, '[^,]+', 1, rownum) split from dual connect by level <= regexp_count(str, ',') + 1); SPLIT ABC DEF GHI JKL MNO rows selected.

73 James MacDonald Pattern Matching

74 SQL> create table weather 2 (dt date not null 3,rain number not null 4 ); Table created.

75 SQL> insert into weather 2 with rsf(r) 3 as 4 (select 1 5 from dual 6 union all 7 select r from rsf 9 where r < 31) 10 select to_date (to_char (r) ' ', 'dd-mm-yyyy') dt 11,round ((dbms_random.value * 20)) rain 12 from rsf 13 / 31 rows created.

76 SQL> select dt 2,rain 3,trend 4 from weather 5 match_recognize( 6 order by dt 7 measures classifier() as trend 8 all rows per match 9 pattern (Better* Worse* same*) 10 define Better as Better.rain < prev (rain) 11,Worse as Worse.rain > prev (rain) 12,same as same.rain = prev (rain) 13 );

77 DT RAIN TREND AUG AUG-14 0 BETTER 03-AUG WORSE 04-AUG-14 6 BETTER 05-AUG WORSE 06-AUG-14 1 BETTER 07-AUG WORSE 08-AUG SAME 09-AUG AUG AUG AUG AUG AUG AUG BETTER 18 WORSE 9 BETTER 4 BETTER 17 WORSE 16 BETTER 5 BETTER What about Analytic Functions?

78 SQL> select dt 2,rain 3,case 4 when rain < lag (rain) over (order by dt) 5 then 'Better' 6 when rain > lag (rain) over (order by dt) 7 then 'Worse' 8 when rain = lag (rain) over (order by dt) 9 then 'Same' 10 end trend 11 from weather;

79 DT RAIN TREND AUG AUG-14 0 Better 03-AUG Worse 04-AUG-14 6 Better 05-AUG Worse 06-AUG-14 1 Better 07-AUG Worse 08-AUG Same 09-AUG Better 10-AUG Worse 11-AUG AUG AUG AUG AUG-14 9 Better 4 Better 17 Worse 16 Better 5 Better and what does this have to do with Regular Expressions?

80 Looking for Dry Spells SQL> select * 2 from weather 3 match_recognize 4 ( 5 order by dt 6 measures first (wet.dt) as first_wetday 7,dry.dt as dryday 8,last (wet.dt) as last_wetday 9 one row per match 10 pattern (wet dry{2,} wet*) 11 define 12 wet as wet.rain > 10, 13 dry as dry.rain <= );

81 pattern (wet dry{2,} wet*) FIRST_WET DRYDAY LAST_WETD AUG AUG AUG AUG AUG AUG-14 2 rows selected. 09-AUG AUG AUG AUG AUG AUG AUG AUG AUG AUG AUG AUG AUG AUG AUG-14 7

82 Mutant669 Data Redaction

83 select from Redacted Data

84 SQL> alter table emp 2 add varchar2 (35) 3 / Table altered. SQL> update emp 2 set = lower(ename) '.' lower (ename) '@company.com' 3 / 14 rows updated. SQL> commit 2 / Commit complete.

85 SQL> select ename 2, 3 from emp 4 / ENAME SMITH smith.smith@company.com ALLEN allen.allen@company.com WARD ward.ward@company.com JONES jones.jones@company.com MARTIN martin.martin@company.com BLAKE blake.blake@company.com CLARK clark.clark@company.com SCOTT scott.scott@company.com KING king.king@company.com TURNER turner.turner@company.com ADAMS adams.adams@company.com JAMES james.james@company.com FORD ford.ford@company.com MILLER miller.miller@company.com 14 rows selected.

86

87 begin dbms_redact.add_policy (object_schema => 'ALEX',object_name => 'EMP',policy_name => 'Hide Address',column_name => ' ',function_type => dbms_redact.regexp,expression => '1=1',regexp_pattern => => => dbms_redact.re_beginning,regexp_occurrence => dbms_redact.re_all,enable => true ); end;

88 SQL> select ename 2, 3 from alex.emp 4 / ENAME SMITH yy@company.com ALLEN yy@company.com WARD yy@company.com JONES yy@company.com MARTIN yy@company.com BLAKE yy@company.com CLARK yy@company.com SCOTT yy@company.com KING yy@company.com TURNER yy@company.com ADAMS yy@company.com JAMES yy@company.com FORD yy@company.com MILLER yy@company.com 14 rows selected.

89 -- Preset values for "regexp_pattern" parameter for use in -- regular expression redaction (function_type := dbms_redact.regexp) -- In general, this value determines what to recognize and replace. RE_PATTERN_US_SSN CONSTANT VARCHAR2(26) := '(\d\d\d)-(\d\d)-(\d\d\d\d)'; RE_PATTERN_CC_L6_T4 CONSTANT VARCHAR2(33) := '(\d\d\d\d\d\d)(\d\d\d*)(\d\d\d\d)'; RE_PATTERN_ANY_DIGIT CONSTANT VARCHAR2(2) := '\d'; RE_PATTERN_US_PHONE CONSTANT VARCHAR2(39) := '(\(\d\d\d\) \d\d\d)-(\d\d\d)-(\d\d\d\d)'; RE_PATTERN_ _ADDRESS CONSTANT VARCHAR2(51) := RE_PATTERN_IP_ADDRESS CONSTANT VARCHAR2(36) := '(\d{1,3}\.\d{1,3}\.\d{1,3})\.\d{1,3}';

90 -- Preset values for "regexp_pattern" parameter for use in -- regular expression redaction (function_type := dbms_redact.regexp) -- In general, this value determines what to recognize and replace. RE_PATTERN_US_SSN CONSTANT VARCHAR2(26) := '(\d\d\d)-(\d\d)-(\d\d\d\d)'; RE_PATTERN_CC_L6_T4 CONSTANT VARCHAR2(33) := '(\d\d\d\d\d\d)(\d\d\d*)(\d\d\d\d)'; RE_PATTERN_ANY_DIGIT CONSTANT VARCHAR2(2) := '\d'; RE_PATTERN_US_PHONE C O N S T A N TV A R C H A R 2 ( 3 9 ) : = '(\(\d\d\d\) \d\d\d)-(\d\d\d)-(\d\d\d\d)'; RE_PATTERN_ _ADDRESS CONSTANT VARCHAR2(51) := '([A-Za-z0-9._%+-]+)@([A-Za-z0-9.-]+\.[A-Za-z]{2,4})'; RE_PATTERN_IP_ADDRESS CONSTANT VARCHAR2(36) := '(\d{1,3}\.\d{1,3}\.\d{1,3})\.\d{1,3}';

91 begin dbms_redact.add_policy (object_schema,object_name,policy_name,column_name,function_type,expression,regexp_pattern => 'ALEX' => 'EMP' => 'Hide Address' => ' ' => dbms_redact.regexp => '1=1' => dbms_redact.re_pattern_ _address,regexp_replace_string => dbms_redact.re_redact_ _name,regexp_position => dbms_redact.re_beginning,regexp_occurrence => dbms_redact.re_all,enable => true ); end;

92 SQL> select ename 2, 3 from emp 4 / ENAME SMITH xxxx@company.com ALLEN xxxx@company.com WARD xxxx@company.com JONES xxxx@company.com MARTIN xxxx@company.com BLAKE xxxx@company.com CLARK xxxx@company.com SCOTT xxxx@company.com KING xxxx@company.com TURNER xxxx@company.com ADAMS xxxx@company.com JAMES xxxx@company.com FORD xxxx@company.com MILLER xxxx@company.com 14 rows selected.

93 SQL> select regexp_pattern 2,regexp_replace_string 3 from redaction_columns 4 where object_name = 'EMP' 5 and object_owner = user 6 / REGEXP_PATTERN REGEXP_REPLACE_STRING ([A-Za-z0-9._%+-]+)@([A-Za-z0-9.-]+\.[A-Za-z]{2,4}) xxxx@\2

94 Some other built-in Patterns

95 SQL> select ename 2,hiredate 3,credit_card 4 from emp 5 / ENAME HIREDATE CREDIT_CARD SMITH 17-DEC ALLEN 20-FEB WARD 22-FEB JONES 02-APR MARTIN 28-SEP BLAKE 01-MAY CLARK 09-JUN SCOTT 19-APR

96 begin dbms_redact.add_policy (object_schema => 'ALEX',object_name => 'EMP',policy_name => 'Hide Creditcard',expression => '1=1',column_name => 'CREDIT_CARD',function_type => dbms_redact.regexp,regexp_pattern => dbms_redact.re_pattern_any_digit,regexp_replace_string => 'X' ); end;

97 ENAME HIREDATE CREDIT_CARD SMITH 17-DEC-80 XXXXXXXXXXXXXXXX ALLEN 20-FEB-81 XXXXXXXXXXXXXXXX WARD 22-FEB-81 XXXXXXXXXXXXXXXX JONES 02-APR-81 XXXXXXXXXXXXXXXX MARTIN 28-SEP-81 XXXXXXXXXXXXXXXX BLAKE 01-MAY-81 XXXXXXXXXXXXXXXX CLARK 09-JUN-81 XXXXXXXXXXXXXXX SCOTT 19-APR-87 XXXXXXXXXXXXXXX

98 begin dbms_redact.add_policy (object_schema => 'ALEX',object_name => 'EMP',policy_name => 'Hide Creditcard',expression => '1=1',column_name => 'CREDIT_CARD',function_type => dbms_redact.partial,function_parameters => dbms_redact.redact_ccn16_f12 ); end;

99 ENAME HIREDATE CREDIT_CARD SMITH 17-DEC-80 ****-****-****-2 ALLEN 20-FEB-81 ****-****-****-9 WARD 22-FEB-81 ****-****-****-8 JONES 02-APR-81 ****-****-****-7 MARTIN 28-SEP-81 ****-****-****-0 BLAKE 01-MAY-81 ****-****-****-7 CLARK 09-JUN-81 ****-****-****- SCOTT 19-APR-87 ****-****-****-

100 begin dbms_redact.add_policy( object_schema,object_name,column_name,policy_name,function_type,function_parameters,expression,regexp_pattern => 'ALEX' => 'EMP' => 'CREDIT_CARD' => 'Hide Credit Card' => dbms_redact.regexp => null => '1=1' => dbms_redact.re_pattern_cc_l6_t4,regexp_replace_string => dbms_redact.re_redact_cc_middle_digits,regexp_position => dbms_redact.re_beginning,regexp_occurrence => dbms_redact.re_first ); end; /

101 ENAME HIREDATE CREDIT_CARD SMITH 17-DEC XXXXXX4172 ALLEN 20-FEB XXXXXX1949 WARD 22-FEB XXXXXX0198 JONES 02-APR XXXXXX8587 MARTIN 28-SEP XXXXXX5920 BLAKE 01-MAY XXXXXX9737 CLARK 09-JUN XXXXXX5275 SCOTT 19-APR XXXXXX7948

102 begin dbms_redact.add_policy( object_schema => 'ALEX',object_name => 'EMP',column_name => 'CREDIT_CARD',policy_name => 'gibberish',function_type => DBMS_REDACT.RANDOM,expression => '1=1' ); END; /

103 ENAME HIREDATE CREDIT_CARD SMITH 17-DEC-80 _Z^\1LYqgbfd9Tay ALLEN 20-FEB-81 dn9vpp_.lva^xxg6 WARD JONES 02-APR-81 \~+bn/mad'3jv7ui MARTIN 28-SEP-81 BLAKE 01-MAY-81 *PJ",qL2XR*(4yT CLARK 09-JUN-81!e5`E)g))m=hM1o SCOTT 19-APR-87 * V]>n%y2%^eFv-

104 ENAME HIREDATE CREDIT_CARD SMITH 17-DEC-80 ALLEN 20-FEB-81 WARD 22-FEB-81 {?-Z#/b0$G5b+7j8 JONES 02-APR-81 IKn4cRczQSv<kZk# MARTIN 28-SEP-81 qx=>90;?y`efa8cg BLAKE 01-MAY-81 otsnzmvhw\[v#u^p CLARK 09-JUN-81 <$/9d5T'D,7Al=\ SCOTT 19-APR-87 au$o]"p i},we*x

105 a word of warning

106 select from Redacted Data

107 SQL> select ename 2,hiredate 3,credit_card 4 from emp 5 where substr (credit_card, 1, 1) = 4 6 /

108 ENAME HIREDATE CREDIT_CARD SMITH 17-DEC-80 XXXXXXXXXXXXXXXX ALLEN 20-FEB-81 XXXXXXXXXXXXXXXX WARD 22-FEB-81 XXXXXXXXXXXXXXXX

109

110 and finally

111

112

113 regexplained.co.uk

114

115

116

117

118 regexp_replace

119 Thank You

120 a allapex? Alex Nuijten nuijten.blogspot.com

nuijten.blogspot.com

nuijten.blogspot.com nuijten.blogspot.com 4 Years 2009 2013 R1 Multitenant Architecture 2009 2013 R1 In Memory Option 2013 2014 R1 12.1.0.2 but what s in it for the Database Developer? Increased Size Limit SQL> create table

More information

a allapex SQL Model Clause: a Gentle introduction That s a lie! Alex Nuijten

a allapex SQL Model Clause: a Gentle introduction That s a lie! Alex Nuijten a allapex SQL Model Clause: a Gentle introduction That s a lie! Alex Nuijten a allapex @alexnuijten nuijten.blogspot.com Agenda 2003 Just like Analytic Functions Multidimensional Array from Query Results

More information

CH-15 SIMPLE QUERY AND GROUPING

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

More information

allapex SQL Model Clause: Gentle introduction That s a lie! Alex Nuijten a allapex nuijten.blogspot.com

allapex SQL Model Clause: Gentle introduction That s a lie! Alex Nuijten a allapex nuijten.blogspot.com a allapex SQL Model Clause: a Gentle introduction That s a lie! Alex Nuijten a allapex! @alexnuijten nuijten.blogspot.com 500+ Technical Experts Helping Peers Globally Agenda 3 Membership Tiers Oracle

More information

RDBMS Using Oracle. Lecture week 5. Lecture Overview

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

More information

Semester 1 Session 3. Database design

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

More information

Spool Generated For Class of Oracle By Satish K Yellanki

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

More information

5/10/2018. Connor McDonald

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

More information

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

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

More information

Relational Normalization Theory. Dr. Philip Cannata

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

More information

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

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

More information

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

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

More information

Analytic Functions 101

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

More information

CS Reading Packet: "Simple Reports - Part 2"

CS Reading Packet: Simple Reports - Part 2 CS 325 - Reading Packet: "Simple Reports - Part 2" p. 1 CS 325 - Reading Packet: "Simple Reports - Part 2" Sources: * Oracle9i Programming: A Primer, Rajshekhar Sunderraman, Addison Wesley. * Classic Oracle

More information

Made to Recycle. LEGOLAND FLORIDA RESORT Education Resource Guide Grades 2 nd -5 th

Made to Recycle. LEGOLAND FLORIDA RESORT Education Resource Guide Grades 2 nd -5 th Made to Recycle LEGOLAND FLORIDA RESORT Education Resource Guide Grades 2 nd -5 th Table of Contents: Welcome Page 3 Background Information Page 4 Before and After the Visit: Hands-On Investigations Page

More information

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

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

More information

Department of Transportation Rapid City Region Office 2300 Eglin Street P.O. Box 1970 Rapid City, SD Phone: 605/ FAX: 605/

Department of Transportation Rapid City Region Office 2300 Eglin Street P.O. Box 1970 Rapid City, SD Phone: 605/ FAX: 605/ Connecting South Dakota and the Nation Department of Transportation Rapid City Region Office 2300 Eglin Street P.O. Box 1970 Rapid City, SD 57709-1970 Phone: 605/394-2244 FAX: 605/394-1904 July 9, 2014

More information

Spool Generated For Class of Oracle By Satish K Yellanki

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

More information

From their website: The catch, if there is one, is two-fold:

From their website: The catch, if there is one, is two-fold: Through Lodgix.com, we are able to purchase bulk vacation certificates through ResortCerts.com. Purchasing these certificates from ResortCerts.com directly costs $599.00 for a 7 night stay at a resort

More information

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

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

More information

Orlando, FL. Evaluating & Improving Steam Turbine Performance. January 22-26, Earn 36 Professional Development Hours!

Orlando, FL. Evaluating & Improving Steam Turbine Performance. January 22-26, Earn 36 Professional Development Hours! Evaluating & Improving Steam Turbine Performance Orlando, FL January 22-26, 2018 Embassy Suites Lake Buena Vista 8100 Lake Street Orlando, FL 32836 Phone: 407-239-1144 Earn 36 Professional Development

More information

CP 94bis Statement of amounts due with weight brackets

CP 94bis Statement of amounts due with weight brackets CP 94bis Statement of amounts due with weight brackets Completion instructions Document version: 1.0 Date: 2016 03 29 UPU form template valid from: 2017 01 01 1 General rules A CP 94bis statement of amounts

More information

Orlando, FL. Evaluating & Improving Steam Turbine Performance. January 21-25, Earn 36 Professional Development Hours!

Orlando, FL. Evaluating & Improving Steam Turbine Performance. January 21-25, Earn 36 Professional Development Hours! Evaluating & Improving Steam Turbine Performance Orlando, FL January 21-25, 2019 Embassy Suites Lake Buena Vista 8100 Lake Street Orlando, FL 32836 Phone: 407-239-1144 Earn 36 Professional Development

More information

Orlando, FL. Evaluating & Improving Steam Turbine Performance. January 21-25, Earn 36 Professional Development Hours!

Orlando, FL. Evaluating & Improving Steam Turbine Performance. January 21-25, Earn 36 Professional Development Hours! Evaluating & Improving Steam Turbine Performance Orlando, FL January 21-25, 2019 Embassy Suites Lake Buena Vista 8100 Lake Street Orlando, FL 32836 Phone: 407-239-1144 Earn 36 Professional Development

More information

How to Register All group discount forms must be submitted from the same company, within 24 hours of one another

How to Register All group discount forms must be submitted from the same company, within 24 hours of one another May 4-7, 2015 Walt Disney World Dolphin & Swan Resort 1500 Epcot Resorts Blvd. Lake Buena Vista, FL 32830 Managed and Produced by ICMI, a division of UBM, LLC Group Registration Form Complete this form

More information

PATANJALI RISHIKUL, PRAYAGRAJ

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

More information

Anthony Carrick INFS7903 Assignment

Anthony Carrick INFS7903 Assignment INFS7903 Assignment Contents Task 1: Constraints... 2 1a - SQL to show all constraints:... 2 1b Implement the missing constraints... 2 Result (of rerunning the sql in 1a):... 3 Task 2: Triggers... 4 2a

More information

Spore Reproduction of Japanese Climbing Fern in Florida as a Function of Management Timing

Spore Reproduction of Japanese Climbing Fern in Florida as a Function of Management Timing Spore Reproduction of Japanese Climbing Fern in Florida as a Function of Management Timing Greg MacDonald 1, Candice Prince 1, Kimberly Bohn 2, Ashlynn Smith 1, and Mack Thetford 1 1 University of Florida,

More information

Q: If I sponsor a Consultant in May 2019 and she becomes a QNC in June 2019, will she count for the Summer Trip Qualifications?

Q: If I sponsor a Consultant in May 2019 and she becomes a QNC in June 2019, will she count for the Summer Trip Qualifications? Program: Summer Trip Family Edition 2019 When: July 11 14, 2019 Where: Orlando, Florida Qualification Dates: December 1, 2018 May 31, 2019 Reward: Earn your way to Summer Trip 2019 in Orlando, Florida!

More information

Understanding Customer Billing Data

Understanding Customer Billing Data Understanding Customer Billing Data Florida Water Resources Conference By: Joe Williams April 24, 2017 1 Uses of Customer Billing Data Establishing a basis Usage Trends Historic & Future Growth Revenue

More information

10off. electricity. our standard unit rate. Welcome Credit. Up to sseairtricity.com. Sales

10off. electricity. our standard unit rate. Welcome Credit. Up to sseairtricity.com. Sales Up to % * 10off our standard unit rate electricity + ** 30 Welcome Credit Sales 0345 601 4321 sseairtricity.com See inside for key Terms & Conditions. **Offer applies to DD & ebill customers only and can

More information

How to Recognize and Fix Data Faults That Can Make or Break Analytics

How to Recognize and Fix Data Faults That Can Make or Break Analytics How to Recognize and Fix Data Faults That Can Make or Break Analytics Data Interpretation Sampling By For further information contact (203)505-3180 caryshaw@optonline.net Copyright Cary S. Shaw 2013 For

More information

Approach to Successful S&OP October 20, 2010

Approach to Successful S&OP October 20, 2010 The 8-4-3-1 Approach to Successful S&OP Design and Implementation John E. Boyer, Jr. J. E. Boyer Company, Inc. www.jeboyer.com jeb@jeboyer.com (801) 721-5284 1 Objectives 8 - S&OP Process Steps 4 - Keys

More information

SQL> exec sample_font

SQL> exec sample_font NOTE itty bitty fonts in this presentation SQL> exec sample_font Can you read this? 1 Connor McDonald OracleDBA co.uk 2 3 bio slide 4 Connor McDonald 6 why?...now 7 version 8.0 8 9 a personal history 10

More information

Up to. off. our standard unit rate. electricity. Sales sseairtricity.com

Up to. off. our standard unit rate. electricity. Sales sseairtricity.com Up to 7 %* off our standard unit rate electricity Sales 0345 601 4321 sseairtricity.com Get more... with SSE Reward Win 2 VIP tickets to a show of your choice at The SSE Arena, Belfast ** How to enter

More information

30 Years of Tree Canopy Cover Change in Unincorporated and Incorporated Areas of Orange County,

30 Years of Tree Canopy Cover Change in Unincorporated and Incorporated Areas of Orange County, 30 Years of Tree Canopy Cover Change in Unincorporated and Incorporated Areas of Orange County, 1986-2016 Final Report to Orange County July 2017 Authors Dr. Shawn Landry, USF Water Institute, University

More information

HILLS CITY OF BEVERLY HILLS BEVERLY PUBLIC WORKS SERVICES DEPARTMENT MEMORANDUM TO: PUBLIC WORKS COMMISSION FROM:

HILLS CITY OF BEVERLY HILLS BEVERLY PUBLIC WORKS SERVICES DEPARTMENT MEMORANDUM TO: PUBLIC WORKS COMMISSION FROM: BEVERLY HILLS CITY OF BEVERLY HILLS PUBLIC WORKS SERVICES DEPARTMENT MEMORANDUM TO: FROM: PUBLIC WORKS COMMISSION Trish Rhay, Assistant Director of Public Works Services, Infrastructure & Field Operations

More information

Metadata Matters. Thomas Kyte

Metadata Matters. Thomas Kyte Metadata Matters Thomas Kyte http://asktom.oracle.com/ Did you know The optimizer uses constraints Statistics plus Extended statistics (profiles, virtual columns, etc) plus System statistics plus Dictionary

More information

South Dakota Rangeland and Pasture Grazing Records

South Dakota Rangeland and Pasture Grazing Records South Dakota State University Open PRAIRIE: Open Public Research Access Institutional Repository and Information Exchange Extension Circulars SDSU Extension 5-2007 South Dakota Rangeland and Pasture Grazing

More information

Corn and Soybean Market Update, August 9, 2017

Corn and Soybean Market Update, August 9, 2017 Corn and Soybean Market Update, August 9, 2017 Aaron Smith Assistant Professor Department of Agricultural and Resource Economics University of Tennessee Extension https://ag.tennessee.edu/arec/pages/cropeconomics.aspx

More information

Joe Ewing Vice President, Investor Relations

Joe Ewing Vice President, Investor Relations Nitrogen s Role in U.S. Agriculture Presented by: Wall Street Access Ag Day New York, NY Joe Ewing Vice President, Investor Relations Forward-Looking Statements This presentation may contain forward-looking

More information

OLAP Technologies and Applications

OLAP Technologies and Applications OLAP Technologies and Applications James Waite SAS Training Specialist Objectives Define Business Intelligence Identify role of OLAP in the BI Platform Discuss cube structure Demo SAS OLAP Applications

More information

135** Our incredible electricity welcome offer PLUS. Great discounts on your home electricity. Switch and we ll give you. sseairtricity.

135** Our incredible electricity welcome offer PLUS. Great discounts on your home electricity. Switch and we ll give you. sseairtricity. Our incredible electricity welcome offer Switch and we ll give you 135** PLUS Great discounts on your home electricity 100% GREEN ENERGY 1850 40 40 88 sseairtricity.com Choose your offer, your way... Option

More information

West Coast * Disneyland Resort Media Kit 2019

West Coast * Disneyland Resort Media Kit 2019 West Coast * Disneyland Resort Media Kit 2019 ABOUT OUR AUDIENCE More than 62,000 Disney employees work on the West Coast, including 30,000 Disneyland Resort cast members. OUR CONTENT The I.D. Incredible

More information

Modified Blaney-Criddle for Excel

Modified Blaney-Criddle for Excel Modified Blaney-Criddle for Excel This allocation program which calculates a maximum monthly supplemental crop requirement and an average annual supplemental requirement using the Modified Blaney-Criddle

More information

Electric Forward Market Report

Electric Forward Market Report Mar-01 Mar-02 Jun-02 Sep-02 Dec-02 Mar-03 Jun-03 Sep-03 Dec-03 Mar-04 Jun-04 Sep-04 Dec-04 Mar-05 May-05 Aug-05 Nov-05 Feb-06 Jun-06 Sep-06 Dec-06 Mar-07 Jun-07 Sep-07 Dec-07 Apr-08 Jun-08 Sep-08 Dec-08

More information

University of Michigan Eco-Driving Index (EDI) Latest data: August 2017

University of Michigan Eco-Driving Index (EDI)   Latest data: August 2017 University of Michigan Eco-Driving Index () http://www.ecodrivingindex.org Latest data: August 2017 Developed and issued monthly by Michael Sivak and Brandon Schoettle Sustainable Worldwide Transportation

More information

Woking. q business confidence report

Woking. q business confidence report Woking q1 business confidence report Woking q1 report headlines saw a new record in company registrations in Woking when compared to any previous. was a record quarter for company registrations in Woking

More information

Finding the Right Tool for your Purpose. Using Data to Show Improvement and the Need for Improvement

Finding the Right Tool for your Purpose. Using Data to Show Improvement and the Need for Improvement Finding the Right Tool for your Purpose Using Data to Show Improvement and the Need for Improvement Data Why does it matter? Why do we use it? Why don t we use it? How can we make the most of it? What

More information

Continuous Simulation Example Problem

Continuous Simulation Example Problem Continuous Simulation Example Problem The following examples provided an introduction to the continuous simulation hydrograph in the PONDS 3.2 Refined Method software, with an emphasis on wetland hydroperiod

More information

GROW! The Conference for Successful Management Consultants

GROW! The Conference for Successful Management Consultants GROW! The Conference for Successful Management Consultants October 4-6, 2012 Buena Vista Palace Hotel & Spa Orlando, Florida IMC / ICMCI 2012 Sponsorship, Exhibitor and GROW! On-line Conference Directory

More information

STEP BY STEP GUIDE FOR SIF (SALARY INFORMATION FILE) CREATION

STEP BY STEP GUIDE FOR SIF (SALARY INFORMATION FILE) CREATION STEP BY STEP GUIDE FOR SIF (SALARY INFORMATION FILE) CREATION Creation of a valid Salary Information File (SIF) for submission to the bank for processing via WPS requires the following 5 steps: Step I

More information

Becoming a Young Living Member

Becoming a Young Living Member Becoming a Young Living Member A Visual Walkthrough We want to make your enrollment experience as simple as possible. -Follow the graphics to see screen by screen procedures to enroll OR -Skip to the Step

More information

4c Using WinSLAMM to Evaluate LID Practices Hands-on Workshop. Using WinSLAMM to Evaluate LID Practices

4c Using WinSLAMM to Evaluate LID Practices Hands-on Workshop. Using WinSLAMM to Evaluate LID Practices Using WinSLAMM to Evaluate LID Practices This workshop will start with a prepared WinSLAMM model file and add Low Impact Development (LID) Practices to it. The two LID Practices that will be modeled are

More information

Memorandum. Date: February 27, 2012 To: Dr. Reese From: Katelyn Ciaccio RE: Graphing and Charting Assignment

Memorandum. Date: February 27, 2012 To: Dr. Reese From: Katelyn Ciaccio RE: Graphing and Charting Assignment Memorandum Date: February 27, 2012 To: Dr. Reese From: Katelyn Ciaccio RE: Graphing and Charting Assignment This document provides demonstrations and explanations of what I ve learned regarding the use

More information

Female Smallholders in the Financial Inclusion Agenda

Female Smallholders in the Financial Inclusion Agenda Annex to the Brief Female Smallholders in the Financial Inclusion Agenda Photo: Allison Shelley Emilio Hernandez, Yasmin Bin-Humam, Riccardo Ciacci, Niclas Benni and Susan Kaaria A joint research initiative

More information

Take a closer look at your Direct Debit. Your questions answered

Take a closer look at your Direct Debit. Your questions answered Take a closer look at your Direct Debit Your questions answered Set up an online account to keep in touch with your Direct Debit If you want to keep up-to-date more regularly, register for an online account.

More information

1725 Garrett St #1 Enumclaw, WA (253)

1725 Garrett St #1 Enumclaw, WA (253) Bill D. Black Diamond, WA Oct 27, 2016 Bill Q. Auburn, WA Oct 26, 2016 Seth C. Greenwater, WA Jun 27, 2016 Thomas H. Wilkeson, WA Jun 23, 2016 Betty B. Lacey, WA Jun 23, 2016 Kelly J. Arlington, WA May

More information

Grazing Management Different Strategies. Dr Jim Russell and Joe Sellers Iowa State University

Grazing Management Different Strategies. Dr Jim Russell and Joe Sellers Iowa State University Grazing Management Different Strategies Dr Jim Russell and Joe Sellers Iowa State University Cattle are important Keeping land in grasses reduces erosion and improves water quality Productive, well managed

More information

Thank you for your interest in Universal Studies Education Programs. Click here for the 2018 Order Form Click here for the 2017 Order Form

Thank you for your interest in Universal Studies Education Programs. Click here for the 2018 Order Form Click here for the 2017 Order Form Thank you for your interest in Universal Studies Education Programs. Click here for the 2018 Order Form Click here for the 2017 Order Form Universal Studies Order Form www.universalorlandoyouth.com 1-800-YOUTH15

More information

Becoming a Young Living Member

Becoming a Young Living Member Becoming a Young Living Member A Visual Walkthrough We want to make your enrollment experience as simple as possible. -Follow the graphics to see screen by screen procedures to enroll OR -Skip to the Step

More information

Water Planning and Stewardship Committee Item 6a February 8, 2016

Water Planning and Stewardship Committee Item 6a February 8, 2016 Water Planning and Stewardship Committee Item 6a February 8, 2016 Hydrologic Conditions State Water Project Allocation 2016 Water Supply Demand Balances Statewide Conservation Regulations WSDM Tracking

More information

MoneyBack on your. total bill

MoneyBack on your. total bill It pays to be smart... EARN MoneyBack on your total bill Dual Fuel customers get up to 200** back & Electricity customers get up to 112** back. Call us today on 1850 81 82 23 or online at sseairtricity.com/ssemoneyback

More information

Illinois in Drought. June 19, 2012, Updated June 21, 2012

Illinois in Drought. June 19, 2012, Updated June 21, 2012 June 19,, Updated June 21, Illinois in Drought The ISWS now considers central and southern Illinois to be fully in drought based on several impacts including the early season onset of reservoir drawdown

More information

Days Suitable for Fieldwork in Kentucky

Days Suitable for Fieldwork in Kentucky AEC-101 Days Suitable for Fieldwork in Kentucky Jordan Shockley and Tyler Mark, Agricultural Economics University of Kentucky College of Agriculture, Food and Environment Cooperative Extension Service

More information

Investigating the Start of the Rainy Season and the Best Sowing Dates for St. George, Antigua

Investigating the Start of the Rainy Season and the Best Sowing Dates for St. George, Antigua Investigating the Start of the Rainy Season and the Best Sowing Dates for St. George, Antigua By Dale Destin Climatologist Antigua and Barbuda Meteorological Service Climate Section Email: dale_destin@yahoo.com

More information

One-Time Lookback on Hours for Casual Employees. PPS Requirements Service Request 15211

One-Time Lookback on Hours for Casual Employees. PPS Requirements Service Request 15211 One-Time Lookback on Hours for Casual Employees PPS Requirements Service Request 15211 Final 12/7/00 Casual Employees Project Workgroup Author: Kathy Keller Table of Contents Table of Contents...i Background...

More information

Adele Tipton. Senior HR Business Partner - HSBC HIGHLY RESTRICTED

Adele Tipton. Senior HR Business Partner - HSBC HIGHLY RESTRICTED Adele Tipton Senior HR Business Partner - HSBC Agenda Introduction to first direct What we stand for our values and culture Values-led culture and engagement The first direct people experience how it happens

More information

SPORTS AND ENTERTAINMENT MARKETING CONFERENCE REGISTRATION KIT FEBRUARY 6-10, 2019 ORLANDO

SPORTS AND ENTERTAINMENT MARKETING CONFERENCE REGISTRATION KIT FEBRUARY 6-10, 2019 ORLANDO SPORTS AND ENTERTAINMENT MARKETING CONFERENCE REGISTRATION KIT FEBRUARY 6-10, 2019 ORLANDO SPORTS AND ENTERTAINMENT MARKETING CONFERENCE From a sell-out crowd of loyal fans waiting for the opening kickoff

More information

Grazing on the Santa Rita Experimental Range page 1 of 5 Livestock Grazing Management & Research Activities

Grazing on the Santa Rita Experimental Range page 1 of 5 Livestock Grazing Management & Research Activities Grazing on the Santa Rita Eximental Range page 1 of 5 Livestock Grazing Management & Research Activities Beginning in November 2007, a new livestock grazing management scheme was implemented on the Santa

More information

Public Information Request Invoice. ,.? /o / /

Public Information Request Invoice. ,.? /o / / Office of the Sheriff 70 Six Mile Cypress Parkway Fort Myers, FL 9 Lee County, Florida (9) 77-00 Invoice Number: Invoice Date: Public Information Request Invoice 7 Thursday, February, 0 Requested by: Lee

More information

Unleashing the true Power of SAS For Warranty Analytics for Automobile Industry

Unleashing the true Power of SAS For Warranty Analytics for Automobile Industry Paper 2905-2018 Unleashing the true Power of SAS For Warranty Analytics for Automobile Industry Prateek Kumar Singh, Bristlecone India Ltd; Paresh Peter Rodrigues, Bristlecone India Ltd; Saket Shubham,

More information

EXHIBITOR MOVE-IN For more information and helpful hints on pre-show procedures and move-in, please go to

EXHIBITOR MOVE-IN For more information and helpful hints on pre-show procedures and move-in, please go to SERVICE INFORMATION BOOTH EQUIPMENT Accounts Payable & Procure-To-Pay Conference & Expo May 07-09, 2017 Disney's Yacht & Beach Club Resort LAKE BUENA VISTA, FLORIDA Each 10' x 10' booth will be set with

More information

Using Weather Forecasting For Decision Tools For Animal Agriculture

Using Weather Forecasting For Decision Tools For Animal Agriculture Using Weather Forecasting For Decision Tools For Animal Agriculture Steve Buan National Weather Service Minnkota Agri-Builders and Equipment Suppliers Association 11 March 2016 Cattle Heat Stress Forecast

More information

UBT Performance Tracking Tool

UBT Performance Tracking Tool SECTION 4 COMPETENCY: Improving Performance UBT Performance Tracking Tool Purpose The Unit-Based Team Performance Tracking Tool provides a picture of how the UBT s actions impact overall performance. Experience

More information

Up to. off. our standard unit rate. electricity. Sales sseairtricity.com

Up to. off. our standard unit rate. electricity. Sales sseairtricity.com Up to 7 %* off our standard unit rate electricity Sales 0345 601 4321 sseairtricity.com Switch today! 24 Hr Home (Pence /kwh) 1 Year Home / 1 year fixed term contract 24hr meter Credit SSE Airtricity Standard

More information

Discovery Farms Minnesota N and P, what is happened in Farm Fields? Jerome Lensing January 9, 10, 11, 2018 AgVise Labs

Discovery Farms Minnesota N and P, what is happened in Farm Fields? Jerome Lensing January 9, 10, 11, 2018 AgVise Labs Discovery Farms Minnesota N and P, what is happened in Farm Fields? Jerome Lensing January 9, 10, 11, 2018 AgVise Labs Jerome.lensing@hotmail.com Discovery Farms is a farmer led water quality research

More information

Song Lake Water Budget

Song Lake Water Budget Song Lake Water Budget Song Lake is located in northern Cortland County. It is a relatively small lake, with a surface area of about 115 acres, and an average depth of about 14 feet. Its maximum depth

More information

FLORIDA. 5th NATIONAL DRINKING WATER SYMPOSIUM. National Perspectives on Infrastructure, Water Supply Sustainability & Regulation

FLORIDA. 5th NATIONAL DRINKING WATER SYMPOSIUM. National Perspectives on Infrastructure, Water Supply Sustainability & Regulation NATIONAL ASSOCIATION OF WATER COMPANIES Assuring Drinking Water Sustainability in a Time of Economic and Infrastructure Challenges and Change National Perspectives on Infrastructure, Water Supply Sustainability

More information

..Title Receive Report on Salinas Valley Water Conditions for the Third Quarter of Water Year

..Title Receive Report on Salinas Valley Water Conditions for the Third Quarter of Water Year ..Title Receive Report on Salinas Valley Water Conditions for the Third Quarter of Water Year 2016-2017..Report RECOMMENDATION: It is recommended that the Monterey County Water Resources Agency Board of

More information

hi, I m ben managing

hi, I m ben managing hi, I m ben ceo @ managing director @ a change in technology a change in customer behavior: cable penetration leads to massive opportunity nov 72 dec 77 sept 79 jan 80 jun 80 mar 83 may 82 aug 81 dec 80

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education www.xtremepapers.com UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *815678959* COMPUTER STUDIES 040/11 Paper 1 October/November 010 hours 30

More information

Energy Data Efficiencies & Inefficiencies. Speaker: Mike Meola

Energy Data Efficiencies & Inefficiencies. Speaker: Mike Meola Energy Data Efficiencies & Inefficiencies Speaker: Mike Meola Managing Your Data is Important»Energy management is the key to saving energy in your organization»just entering the data isn t enough»monitoring

More information

City of San Clemente Water Usage Report

City of San Clemente Water Usage Report Monthly Usage (AF) ACRE FEET City of San Clemente Overview of Usage FY 217-18 Monthly Water Use Type of Supply Total MWDOC 723 722 657 629 - - - - - - - - 2,731 Local Groundwater 33 23 69 84 - - - - -

More information

How to Configure the Workflow Service and Design the Workflow Process Templates

How to Configure the Workflow Service and Design the Workflow Process Templates How - To Guide SAP Business One 9.0 Document Version: 1.1 2013-04-09 How to Configure the Workflow Service and Design the Workflow Process Templates Typographic Conventions Type Style Example Description

More information

187, , %

187, , % Destination Performance Report Current Month and Year Lodging & Visitor Overview - October 218 Lodging Sales $39,326,928 8.6% Hotel Occupancy 78.2% -1.8% Hotel Demand 187,25 4.% Hotel ADR $176.93 7.6%

More information

Regional Habitat Indicators Project. Workshop #1. Nov 9, 2016

Regional Habitat Indicators Project. Workshop #1. Nov 9, 2016 Regional Habitat Indicators Project Workshop #1 Nov 9, 2016 Workshop Objectives Vet recommendations for management questions with Fist-to-Five Review and identify missing indicators Identify criteria for

More information

Bolton Town Hall February 24, George Knoecklein Northeast Aquatic Research Mansfield, CT

Bolton Town Hall February 24, George Knoecklein Northeast Aquatic Research Mansfield, CT Bolton Town Hall February 24, 214 George Knoecklein Northeast Aquatic Research Mansfield, CT Working Hypothesis 1. Deep drawdowns of Middle Bolton Lake fueled high growth rates of naiad in Lower Bolton

More information

PI SERVER 2015 AND FUTURE DATA

PI SERVER 2015 AND FUTURE DATA PI SERVER 2015 AND FUTURE DATA Steve Kwan, Denis Vacher Tuesday, December 16, 2015 Agenda Why Future Data? What s PI Server 2015? + how to get the Beta version Demo! + sneak peek at PI Visualization 2015

More information

Tertiary reserve: 15 min 1 h

Tertiary reserve: 15 min 1 h DESCRIPTION OF THE REQUIRED POSITIVE TERTIARY RESERVE ENERGY ABSTRACT Eva Marie Kurscheid Transmission system operators need tertiary to guarantee reliable grid operation. The used tertiary energy varies

More information

TechnoMetrica Auto Demand Index

TechnoMetrica Auto Demand Index TechnoMetrica Auto Demand Index December 2017 70 Hilltop Road, Ramsey, NJ 07446 Pho:201-986-1288 Fax:201-986-0119 www.technometrica.com Table Of Contents I. Methodology 3 II. Auto Demand Index 4-11 A.

More information

Southwest LRT Management Committee. April 27, 2011

Southwest LRT Management Committee. April 27, 2011 Southwest LRT Management Committee April 27, 2011 Today s Topics PE/DEIS Status Update Engineering Services Contract Park & Ride Guidelines Cash Flow Needs for Project Office Startup 2 PE/DEIS Status Update

More information

Installation & Calibration

Installation & Calibration Installation & Calibration Type to enter text ED4-SR SkidWeigh Plus System Lift Truck Onboard Weighing System - Active Session Recordings (Recycling Industry Application) Version: V1.02 General Installation

More information

LS2.A: Interdependent. Scale, Proportion, and Quantity Computational Thinking. Relationships in Ecosystems

LS2.A: Interdependent. Scale, Proportion, and Quantity Computational Thinking. Relationships in Ecosystems HS-LS2 Ecosystems: Interactions, Energy, and Dynamics HS-LS2-1 Use mathematical and/or computational representations to support explanations of factors that affect carrying capacity of ecosystems at different

More information

Write the words from the article into the definitions. The paragraph numbers are given to help you.

Write the words from the article into the definitions. The paragraph numbers are given to help you. environment: [noun] the natural world, including the land, water, air, plants and animals environmentally conscious: [adjective] being aware of the environment and our effect on it 1 QUIZ - HOW ENVIRONMENTALLY

More information

All Citrus Acreage, by Variety and Survey Year, and Changes Between Surveys Florida: Specialty fruit. Total

All Citrus Acreage, by Variety and Survey Year, and Changes Between Surveys Florida: Specialty fruit. Total CITRUS COMMERCIAL CITRUS INVENTORY PRELIMINARY REPORT Cooperating with the Florida Department of Agriculture and Consumer Services 2290 Lucien Way, Suite 300, Maitland, FL 3275-7058 (407) 648-603 (855)

More information

HV SHRM Member Survey

HV SHRM Member Survey HV SHRM Member Survey 1. Currently, we meet 7:30 a.m. 10:00 a.m. on the first Thursday of the month. In general, do Thursdays work for you? Yes 89.5% 34 No 10.5% 4 Of not, what days work better? 2 2. What

More information

PPL Timesheets Information for Employees and Employers

PPL Timesheets Information for Employees and Employers Public Partnerships, LLC Fiscal Agent Services 4991 Lake Brook Drive, Suite 90 Glen Allen, VA 23060 Toll Free Numbers Phone: 1-866-259-3009 TTY: 1-800-360-5899 Administrative Fax: 1-866-709-3319 Timesheet

More information

Bidding User Guide April 2018

Bidding User Guide April 2018 Bidding User Guide April 2018 Table of Contents Bidding... 3 PBS... 4 Vacancy Bidding... 6 Bid Packages... 12 Vacation Bid: Annual... 20 Vacation Bid: Monthly... 41 Displacement Bidding... 48 2 Bidding

More information

Exploring the Possibilities At Prado Dam

Exploring the Possibilities At Prado Dam Exploring the Possibilities At Prado Dam Greg Woodside, P.G., C.HG. Executive Director of Planning & Natural Resources December 5, 2017 The Orange County groundwater basin lies at the base of the Santa

More information