Lista de exercícios de SQL SERVER 2005/2008 Considere o seguinte modelo de Banco de Dados:

Size: px
Start display at page:

Download "Lista de exercícios de SQL SERVER 2005/2008 Considere o seguinte modelo de Banco de Dados:"

Transcription

1 Lista de exercícios de SQL SERVER 2005/2008 Considere o seguinte modelo de Banco de Dados: Usar o script abaixo para inserir dados no banco de Dados IMIH, sabendo que os campos sublinhados são chaves. Não esquecer de declarar as chaves est rangeiras. Create datab ase IMIH Use IMIH cr eate tabl e Depto (coddepto char(5), nomedepto var char(20 ), pri mary key (coddep to )); insert into Depto val ues ('INF01', 'Informáti ca');

2 insert into Depto val ues ('MA T01', 'Matemáti ca'); insert into Depto val ues ('ELE 01', 'El etrôni ca') ; cr eate tabl e Di sci plina (coddepto char(5), numdi sc ch ar(5), nomedi sc var ch ar(20), cr edi tosdi sc i nteger, pri mary key (coddep to, nu mdi sc), forei gn key (coddepto ) ref er en ces Depto ); insert into Di sci plina val ues ('INF01', 'DIS01', 'Li ng Formai s', 4 ); insert into Di sci plina val ues ('INF01', 'DIS02', 'Teori a da Co mp', 4); insert into Di sci plina val ues ('INF01', 'DIS03', 'Programacao I', 8); insert into Di sci plina val ues ('MA T01', 'DIS0 4', 'Cál cu lo 1', 4); insert into Di sci plina val ues ('MA T01', 'DIS0 1', 'Cál cu lo 2', 6); cr eate tabl e PreReq (coddepto char(5), numdi sc ch ar(5), coddeptoprereq ch ar(5), numdi scprereq ch ar(5), pri mary key (coddep to, nu mdi sc, coddepto PreReq, numdi scp rereq), forei gn key (coddepto, nu mdi sc) r ef er ences di sci plina, forei gn key (coddepto PreReq, numdiscp rereq) references di sci plina);

3 insert into PreReq val ues ('INF01', 'DIS02', 'INF01', 'DIS01'); insert into PreReq val ues ('MA T01', 'DIS0 4', 'MAT01', 'DIS01'); insert into PreReq val ues ('INF01', 'DIS03', 'INF01', 'DIS02'); cr eate tabl e Turma (anosem i nteger, coddepto char(5), numdi sc ch ar(5), si gl atur char(5), capactur in teger, pri mary key (anosem, coddep to, nu mdisc, si gl atur), forei gn key (coddepto, nu mdi sc) r ef er ences Di sci pli na); val ues (20021, 'INF01 ', 'DIS01', 'TUR01', 30); val ues (20022, 'INF01 ', 'DIS01', 'TUR01', 30); val ues (20021, 'INF01 ', 'DIS02', 'TUR02', 30); val ues (20022, 'INF01 ', 'DIS03', 'TUR01', 200); val ues (20031, 'INF01 ', 'DIS03', 'TUR02', 30); val ues (20021, 'MAT01', 'DIS01', 'TUR01', 15);

4 val ues (20022, 'INF01 ', 'DIS03', 'TUR02', 25); cr eate tabl e Predi o (codp red i nteger, nomepred varchar(3 0), pri mary key (codp red)); insert into predi o val ues (43423, 'Informáti ca-aul as'); insert into predi o val ues (43421, 'Admini stração'); insert into predi o val ues (43424, 'Labor atóri os'); cr eate tabl e Sal a (codp red i nteger, numsal a integer, capacs al a i nteger, pri mary key (codp red, n umsal a), forei gn key( codp red)r ef eren ces Predi o); insert into sal a val ues (43423, 101, 3 0); insert into sal a val ues (43421, 102, 5 0); insert into sal a val ues (43424, 215, 4 0); cr eate tabl e Hor ario (anosem i nteger, coddepto char(5), numdi sc ch ar(5), si gl atur char(5), di asem i nteger,

5 horaini ci o char(5), numho ras i nteger, codpredi o integer, numsal a integer, pri mary key (anosem, coddep to, nu mdisc, si gl atur, di asem, horaini ci o), forei gn key (anosem, coddep to, nu mdi sc, si gl atur) refer en ces turma, forei gn key (codp redi o, numsal a) ref eren ces sal a); insert into horario val ues (20021, 'INF01 ', 'DIS01', 'TUR01', 2, '10:30', 60, 43423, 101); insert into horario val ues (20021, 'INF01 ', 'DIS02', 'TUR02', 3, '10:30', 60, 43423, 101); insert into horario val ues (20022, 'INF01 ', 'DIS03', 'TUR02', 4, '08:30', 45, 43424, 215); insert into horario val ues (20021, 'INF01 ', 'DIS01', 'TUR01', 4, '13:30', 60, 43423, 101); cr eate tabl e Ti tul acao (codtit integer, nometi t var ch ar(20), pri mary key (codtit)); insert into Ti tul acao val ues (1, 'Doutor'); insert into Ti tul acao val ues (2, 'Mestre'); insert into Ti tul acao val ues (3, 'Especi ali sta') ; insert into Ti tul acao val ues (4, 'Graduado');

6 cr eate tabl e Professor (codp rof char(5 ), nomeprof var char(50), codti t integer, coddepto char(5), pri mary key (codp rof), forei gn key (codtit) refer ences Ti tul acao, forei gn key (coddepto ) ref er en ces Depto ); insert into Professo r val ues ('Pro01', 'Antunes', 1, 'INF01'); insert into Professo r val ues ('Pro02', 'Mari a dos Santo s', 2, 'INF01'); insert into Professo r val ues ('Pro03', 'Paulo', 3, 'MAT01'); insert into Professo r val ues ('Pro04', 'Gabri el ', 2, 'MAT01'); cr eate tabl e ProfTurma (anosem i nteger, coddepto char(5), numdi sc ch ar(5), si gl atur char(5), codprof char(5), pri mary key (anosem, coddep to, nu mdisc, si gl atur, codprof), forei gn key (anosem, coddep to, nu mdi sc, si gl atur) refer en ces Tu rma, forei gn key (codp rof) referen ces Professor); insert into ProfTurma val ues (20021, 'INF01 ', 'DIS01', 'TUR01', 'Pro 01'); insert into ProfTurma val ues (20022, 'INF01 ', 'DIS01', 'TUR01', 'Pro 01'); insert into ProfTurma

7 val ues (20021, 'INF01 ', 'DIS02', 'TUR02', 'Pro 02'); insert into ProfTurma val ues (20021, 'MAT01', 'DIS01', 'TUR01', 'Pro 03'); insert into ProfTurma val ues (20021, 'MAT01', 'DIS01', 'TUR01', 'Pro 02');

8 Lista Obter todos os dado s dos professores. 2. Obter o có di go e o nome dos professores. 3. Obter a capaci dade d as turmas. 4. Obter os di ferentes val ores de cap aci dades de turmas. 5. Obter o nome d as di sci plinas do depto INF01, desde qu e tenham mai s de 5 cr édi tos. 6. Obter o có di go do prédi o ch amado Laborató rio s. 7. Obter o código da sal a e o có di go do prédi o, desde qu e a sal a tenh a capaci dade superi or a 35 lugares. 8. Obter o nome dos professo res qu e têm ti tul ação 1 e qu e tr abal ham no depto INF Obter o nome do s pro fessores qu e têm ti tul ação 2 ou que tr abal h am no depto INF Retorne o códi go e o nome do s professores que po ssuem o sobreno me S antos. 11. Sabendo que cad a cr édi to de di sci plina co rr esponde a 15hsaul a, retorn e o nome da di sci pli n a e o seu número de horas-au l a.

9 Lista Obtenh a os nomes das di sci plinas segui das do no me de seu departamento. 2. Obtenh a os nomes dos prof essor es que possu em ti tul ação de Dr. 3. Obtenh a os nomes dos prof essor es que mi ni straram aul as em 1999/2. 4. Obtenh a os número s das sal as do prédio de nome Labor atórios cuja capaci dade seja mai or que Obtenh a os nomes das di sci plinas que fo ram ofer eci das em 2000/1. 6. Obtenh a os número s das sal as do prédio "Labor atóri os". 7. Obtenh a os nomes dos prof essor es segui dos do nome de seu departamento. 8. Obtenh a os códi gos dos professor es que não possuem turma em 1999/2. 9. Nomes dos d epartamentos qu e possu em di sci plinas qu e não apr esentam pr é-r equi si to. 10. Obtenha o s có di gos dos professo res que mi ni strar am aul as em 1999/2 e 200 0/ Obtenha o s nomes do s dep artamentos em que h á pel o menos uma di sci plina com mai s qu e três cr édi to s.

10 Lista Obter o s códi gos dos diferentes depar tamen tos que tem turmas no ano-semestre 2 002/1 2. Obter o s códi gos dos professo res qu e são do departamento de códi go 'INF01' e qu e mi ni straram ao menos u ma tur ma em 2002/1. 3. Obter o s horários de aul a (di a da seman a,ho ra i ni ci al e n úmero de horas mi ni str adas) do professor "An tu nes" em 2002/1. 4. Obter o s nomes do s departamentos que têm turmas qu e, em 2002/1, têm au l as na s al a 1 01 do prédi o denomi nado ' Informáti ca- Aul as'. 5. Obter o s códi gos dos professo res co m tí tul o denomi nado 'Do utor' que não mi ni straram aul as em 2002/1. 6. Obter o s i denti fi cadores das sal as (códi go do prédi o e número da sal a) que, em 200 2/1: a. nas segu ndas-f ei ras (di a da seman a = 2), ti ver am ao menos uma turma do depar tamen to 'Informáti ca', e b. n as quar tas-f ei ras (di a d a seman a = 4), ti veram ao menos u ma turma mi ni strada pel o pro fessor denominado 'Antunes'. 7. Obter o di a da seman a, a hora de i ní cio e o nú mero de ho ras d e cada horári o de cada turma mi ni strada por u m professor de nome `Antunes', em 20 02/1, na sal a número 101 do prédio de códi go Para cada di sci plin a que possui pré-requi si to, obter o no me da di sci plina segui do do no me da di sci plina que é seu pré-requi si to. 9. Obter o s nomes das di sci pli nas que não são pr é-requi si to. 10. Obter o s nomes do cen tes cu ja ti tul ação tem códi go diferente de Obter o s nomes do s dep ar tamento s que têm turmas qu e, em 2002/1, têm au l as na s al a 1 01 do prédi o denomi nado ' Info rmáti ca- Aul as'. 12. Obter o n ome d e cad a departamen to segui do do nome de cada uma d e su as di sci plin as qu e possui mai s que tr ês cr édi tos (caso o departamento não tenha di sci plin as o u caso o dep artamento não tenha disci pli nas com mai s que três cr édi tos, seu n ome deve ap ar ecer segui do de vazi o). 13. Obter o o s nomes dos professores que são do depar tamento deno mi nado 'Informáti ca', sejam doutores, e qu e, em 2002/2, mi ni straram al guma turma de di sci plina do departamento 'Informáti ca' qu e tenha mai s que três créd i to s.

11 14. Obter o n úmero de di sci plinas do depar tamento denomi nado Informáti ca'. 15. Obter o s nomes das di sci pli nas do departamento deno mi nado Informáti ca qu e têm o mai or número de cr édi tos dentr e as di sci plinas deste dep artamento. 16. Para cada depar tamento, obter seu nome e o número de di sci plinas do departamento. Obter o resul tado em ordem d escendente de número de di sci pl inas

1.- L a m e j o r o p c ió n e s c l o na r e l d i s co ( s e e x p li c a r á d es p u é s ).

1.- L a m e j o r o p c ió n e s c l o na r e l d i s co ( s e e x p li c a r á d es p u é s ). PROCEDIMIENTO DE RECUPERACION Y COPIAS DE SEGURIDAD DEL CORTAFUEGOS LINUX P ar a p od e r re c u p e ra r nu e s t r o c o rt a f u e go s an t e un d es a s t r e ( r ot u r a d e l di s c o o d e l a

More information

Put the human back in Human Resources.

Put the human back in Human Resources. Put the human back in Human Resources A Co m p l et e Hu m a n Ca p i t a l Ma n a g em en t So l u t i o n t h a t em p o w er s HR p r o f essi o n a l s t o m eet t h ei r co r p o r a t e o b j ect

More information

G ri d m on i tori n g w i th N A G I O S (*) (*) Work in collaboration with P. Lo Re, G. S av a and G. T ortone WP3-I CHEP 2000, N F N 10.02.2000 M e e t i n g, N a p l e s, 29.1 1.20 0 2 R o b e r 1

More information

SCO TT G LEA SO N D EM O Z G EB R E-

SCO TT G LEA SO N D EM O Z G EB R E- SCO TT G LEA SO N D EM O Z G EB R E- EG Z IA B H ER e d it o r s N ) LICA TIO N S A N D M ETH O D S t DVD N CLUDED C o n t e n Ls Pr e fa c e x v G l o b a l N a v i g a t i o n Sa t e llit e S y s t e

More information

TRANSFERÊNCIAS BANCÁRIAS INTERNACIONAIS

TRANSFERÊNCIAS BANCÁRIAS INTERNACIONAIS Os clientes Markets.com podem reforçar a sua conta por transferência através de vários bancos à volta do mundo. Veja a lista abaixo para mais detalhes: TRANSFERÊNCIAS BANCÁRIAS INTERNACIONAIS ROYAL BANK

More information

III Bienal de Autismo Página 1 / 43

III Bienal de Autismo Página 1 / 43 III Bienal de Autismo Página 1 / 43 A Direcção da APPDA N ort e dá -v os as B oas V in das à I I I B ien al de Au t is m q u e es t a corres p on da à s v os s as ex p ect at iv as com o t em a em deb

More information

Campus Sustainability Assessment and Related Literature

Campus Sustainability Assessment and Related Literature Campus Sustainability Assessment and Related Literature An Annotated Bibliography and Resource Guide Andrew Nixon February 2002 Campus Sustainability Assessment Review Project Telephone: (616) 387-5626

More information

Seu servidor deverá estar com a versão 3.24 ou superior do Mikrotik RouterOS e no mínimo 4 (quatro) placas de rede.

Seu servidor deverá estar com a versão 3.24 ou superior do Mikrotik RouterOS e no mínimo 4 (quatro) placas de rede. Provedor de Internet e Serviços - (41) 3673-5879 Balance PCC para 3 links adsl com modem em bridge (2 links de 8mb, 1 link de 2mb). Seu servidor deverá estar com a versão 3.24 ou superior do Mikrotik RouterOS

More information

Enterprise Data Center A c h itec tu re Consorzio Operativo Gruppo MPS Case S t u d y : P r o g et t o D i sast er R ec o v er y Milano, 7 Febbraio 2006 1 Il G r u p p o M P S L a B a n c a M o n t e d

More information

I n la n d N a v ig a t io n a co n t r ib u t io n t o eco n o m y su st a i n a b i l i t y

I n la n d N a v ig a t io n a co n t r ib u t io n t o eco n o m y su st a i n a b i l i t y I n la n d N a v ig a t io n a co n t r ib u t io n t o eco n o m y su st a i n a b i l i t y and KB rl iak s iol mi a, hme t a ro cp hm a5 a 2k p0r0o 9f i,e ls hv oa nr t ds eu rmv oedye l o nf dae cr

More information

FORT WAYNE COMMUNITY SCHOOLS 12 00 SOUTH CLINTON STREET FORT WAYNE, IN 468 02 6:02 p.m. Ma r c h 2 3, 2 015 OFFICIAL P ROCEED ING S Ro l l Ca l l e a r d o f h o o l u e e o f t h e r t y m m u t y h o

More information

Application Note: Cisco A S A - Ce r t if ica t e T o S S L V P N Con n e ct ion P r of il e Overview: T h i s a p p l i ca ti o n n o te e x p l a i n s h o w to co n f i g u r e th e A S A to a cco m

More information

C o a t i a n P u b l i c D e b tm a n a g e m e n t a n d C h a l l e n g e s o f M a k e t D e v e l o p m e n t Z a g e bo 8 t h A p i l 2 0 1 1 h t t pdd w w wp i j fp h D p u b l i c2 d e b td S t

More information

Collaboration in Public H e alth be tw e e n U niv e rs ity of H e id e lbe rg and U niv e rs ity of D ar e s S alaam How t h e c oop e r a t i on e m e r g e d Informal c ont ac t s from e arly 1 9

More information

Opis przedmiotu zamówienia - zakres czynności Usługi sprzątania obiektów Gdyńskiego Centrum Sportu

Opis przedmiotu zamówienia - zakres czynności Usługi sprzątania obiektów Gdyńskiego Centrum Sportu O p i s p r z e d m i o t u z a m ó w i e n i a - z a k r e s c z y n n o c i f U s ł u i s p r z» t a n i a o b i e k t ó w G d y s k i e C eo n t r u m S p o r t us I S t a d i o n p i ł k a r s k i

More information

With Rejoicing Hearts/ Con Amor Jovial. A Fm7 B sus 4 B Cm Cm7/B

With Rejoicing Hearts/ Con Amor Jovial. A Fm7 B sus 4 B Cm Cm7/B for uli With Rejoic Herts/ on mor ol dition # 10745-Z1 ime ortez Keyord ccompniment y effy Honoré INTRO With energy ( = c 88) Keyord * m7 B sus 4 B 7/B mj 9 /B SMPL B 7 *Without percussion, egin he 1995,

More information

JCUT-3030/6090/1212/1218/1325/1530

JCUT-3030/6090/1212/1218/1325/1530 JCUT CNC ROUTER/CNC WOODWORKING MACHINE JCUT-3030/6090/1212/1218/1325/1530 RZNC-0501 Users Guide Chapter I Characteristic 1. Totally independent from PC platform; 2. Directly read files from U Disk; 3.

More information

BLADE 12th Generation. Rafał Olszewski. Łukasz Matras

BLADE 12th Generation. Rafał Olszewski. Łukasz Matras BLADE 12th Generation Rafał Olszewski Łukasz Matras Jugowice, 15-11-2012 Gl o b a l M a r k e t i n g Dell PowerEdge M-Series Blade Server Portfolio M-Series Blades couple powerful computing capabilities

More information

CRM: customer relationship management: o revolucionário marketing de relacionamento com o cliente P

CRM: customer relationship management: o revolucionário marketing de relacionamento com o cliente P CRM: customer relationship management: o revolucionário marketing de relacionamento com o cliente Download: CRM: customer relationship management: o revolucionário marketing de relacionamento com o cliente

More information

EuroRec Repository. Translation Manual. January 2012

EuroRec Repository. Translation Manual. January 2012 EuroRec Repository Translation Manual January 2012 Added to Deliverable D6.3 for the EHR-Q TN project EuroRec Repository Translations Manual January 2012 1/21 Table of Content 1 Property of the document...

More information

INGLÊS. Aula 13 DIRECT AND INDIRECT SPEECH

INGLÊS. Aula 13 DIRECT AND INDIRECT SPEECH INGLÊS Aula 13 DIRECT AND INDIRECT SPEECH Direct(Quoted) And Indirect(Reported) Speech Você pode responder esta pergunta: "What did he/she say?" de duas maneiras: - Repetindo as palavras ditas (direct

More information

H ig h L e v e l O v e r v iew. S te p h a n M a rt in. S e n io r S y s te m A rc h i te ct

H ig h L e v e l O v e r v iew. S te p h a n M a rt in. S e n io r S y s te m A rc h i te ct H ig h L e v e l O v e r v iew S te p h a n M a rt in S e n io r S y s te m A rc h i te ct OPEN XCHANGE Architecture Overview A ge nda D es ig n G o als A rc h i te ct u re O ve rv i ew S c a l a b ili

More information

1. Oblast rozvoj spolků a SU UK 1.1. Zvyšování kvalifikace Školení Zapojení do projektů Poradenství 1.2. Financování 1.2.1.

1. Oblast rozvoj spolků a SU UK 1.1. Zvyšování kvalifikace Školení Zapojení do projektů Poradenství 1.2. Financování 1.2.1. 1. O b l a s t r o z v o j s p o l k a S U U K 1. 1. Z v y š o v á n í k v a l i f i k a c e Š k o l e n í o S t u d e n t s k á u n i e U n i v e r z i t y K a r l o v y ( d á l e j e n S U U K ) z í

More information

Online Products. Maximize your participation with the. The World s Leading Events Organizer

Online Products. Maximize your participation with the. The World s Leading Events Organizer The World s Leading Events Organizer Wherever in the world you want to do business...... our events deliver contacts, content and communities with the power to transform your business Maximize your participation

More information

SCHOOL PESTICIDE SAFETY AN D IN TEG R ATED PEST M AN AG EM EN T Statutes put into law by the Louisiana Department of Agriculture & Forestry to ensure the safety and well-being of children and school personnel

More information

G S e r v i c i o C i s c o S m a r t C a r e u ي a d e l L a b o r a t o r i o d e D e m o s t r a c i n R ل p i d a V e r s i n d e l S e r v i c i o C i s c o S m a r t C a r e : 1 4 ع l t i m a A c

More information

Bioinformática BLAST. Blast information guide. Buscas de sequências semelhantes. Search for Homologies BLAST

Bioinformática BLAST. Blast information guide. Buscas de sequências semelhantes. Search for Homologies BLAST BLAST Bioinformática Search for Homologies BLAST BLAST - Basic Local Alignment Search Tool http://blastncbinlmnihgov/blastcgi 1 2 Blast information guide Buscas de sequências semelhantes http://blastncbinlmnihgov/blastcgi?cmd=web&page_type=blastdocs

More information

Aplicação ASP.NET MVC 4 Usando Banco de Dados

Aplicação ASP.NET MVC 4 Usando Banco de Dados Aplicação ASP.NET MVC 4 Usando Banco de Dados Neste exemplo simples, vamos desenvolver uma aplicação ASP.NET MVC para acessar o banco de dados Northwind, que está armazenado no servidor SQL Server e, listar

More information

Certification Protocol For Certifica Minas Café - UTZ Certified

Certification Protocol For Certifica Minas Café - UTZ Certified Certification Protocol For Certifica Minas Café - UTZ Certified Certification Protocol Version 1.1, February 2014 www.utzcertified.org Copies of this document are available for free in electronic format

More information

How to Subnet a Network How to use this paper Absolute Beginner: Read all Sections 1-4 N eed a q uick rev iew : Read Sections 2-4 J ust need a little h elp : Read Section 4 P a r t I : F o r t h e I P

More information

m Future of learning Zehn J a hr e N et A c a d ei n E r f o l g s p r o g r a m Cisco E x p o 2 0 0 7 2 6. J u n i 2 0 0 7, M e sse W ie n C. D or n in g e r, b m u k k 1/ 12 P r e n t t z d e r p u t

More information

Prova Escrita de Inglês

Prova Escrita de Inglês EXAME NACIONAL DO ENSINO SECUNDÁRIO Decreto-Lei n.º 74/2004, de 26 de março Prova Escrita de Inglês 10.º e 11.º Anos de Escolaridade Continuação bienal Prova 550/2.ª Fase 8 Páginas Duração da Prova: 120

More information

First A S E M R e c to rs C o n f e re n c e : A sia E u ro p e H ig h e r E d u c a tio n L e a d e rsh ip D ia l o g u e Fre ie U n iv e rsitä t, B e rl in O c to b e r 2 7-2 9 2 0 0 8 G p A G e e a

More information

online magazine first edition 2009 berkeley club of france - online magazine - first edition 2009 berkeley club of france

online magazine first edition 2009 berkeley club of france - online magazine - first edition 2009 berkeley club of france berkeley club of france - online magazine - first edition 2009 online magazine first edition 2009 berkeley club of france in this issue... The BCF Online Magazine Published by the Berkeley Club of France

More information

THINK SUCCESS MAKE IT HAPPEN ANNA NOT MISSING HER ENGLISH CLASS. myclass AN ENGLISH COURSE THAT FITS YOUR LIFE

THINK SUCCESS MAKE IT HAPPEN ANNA NOT MISSING HER ENGLISH CLASS. myclass AN ENGLISH COURSE THAT FITS YOUR LIFE THINK SUCCESS MAKE IT HAPPEN ANNA NOT MISSING HER ENGLISH CLASS myclass AN ENGLISH COURSE THAT FITS YOUR LIFE Porquê myclass Why myclass? A importância do Inglês é fundamental tanto na construção da sua

More information

O que é WinRDBI O WinRDBI (Windows Relational DataBase Interpreter) é uma ferramenta educacional utilizada pela Universidade do Estado do Arizona, e que fornece uma abordagem ativa para entender as capacidades

More information

<?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"

<?xml version=1.0 encoding=utf-8?> <soapenv:envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/ Applicazioni Java W S con Ax is sistema di tr ac c iab il ità ag r o al imen tar e Ing. Mario G.C.A. Cimino M.G.C.A.Cimino, Applicazioni Java-W S con Ax is, D ipar t ime nt o d i I ng e g ne r ia d e ll

More information

Identifique a oração que está no Simple Future Tense :

Identifique a oração que está no Simple Future Tense : SIMPLE PAST REGULAR AND IRREGULAR VERBS AFIRMATIVE NEGATIVE AND INTERROGATIVE FORMS Questão (1) - Peter wins the game and begins to cry. A forma CORRETA no passado dos verbos sublinhados é: a) won - began

More information

SUITABILITY OF RELATIVE HUMIDITY AS AN ESTIMATOR OF LEAF WETNESS DURATION

SUITABILITY OF RELATIVE HUMIDITY AS AN ESTIMATOR OF LEAF WETNESS DURATION SUITABILITY OF RELATIVE HUMIDITY AS AN ESTIMATOR OF LEAF WETNESS DURATION PAULO C. SENTELHAS 1, ANNA DALLA MARTA 2, SIMONE ORLANDINI 2, EDUARDO A. SANTOS 3, TERRY J. GILLESPIE 3, MARK L. GLEASON 4 1 Departamento

More information

Online Department Stores. What are we searching for?

Online Department Stores. What are we searching for? Online Department Stores What are we searching for? 2 3 CONTENTS Table of contents 02 Table of contents 03 Search 06 Fashion vs. footwear 04 A few key pieces 08 About SimilarWeb Stepping up the Competition

More information

Chem 115 POGIL Worksheet - Week 4 Moles & Stoichiometry Answers

Chem 115 POGIL Worksheet - Week 4 Moles & Stoichiometry Answers Key Questions & Exercises Chem 115 POGIL Worksheet - Week 4 Moles & Stoichiometry Answers 1. The atomic weight of carbon is 12.0107 u, so a mole of carbon has a mass of 12.0107 g. Why doesn t a mole of

More information

Warsaw School of Economics (SGH)

Warsaw School of Economics (SGH) www.sgh.waw.pl Fo un ded in 1906, the War saw Scho ol of Eco no mics (Szko ła Głów na Han dlo wa w War - sza wie, SGH) is the ol dest pu blic uni ver si ty of eco no mics and business in Po land. Education.

More information

Origami ASSEMBLY INSTRUCTIONS SUPPLIED MATERIAL

Origami ASSEMBLY INSTRUCTIONS SUPPLIED MATERIAL - HOLES F OR THE WALL PLUGS. - AG UJEROS PARA LOS T ACO S DE FIJACIÓN. - LÖCHER F ÜR DIE DÜBEL. ORIGAMI REF.: 4500 - Use this template t o instal the lamp followind all st ep s d escribed in th e Installation

More information

Logística Empresarial - Uma disciplina Vital. Missão da Logística. Supply Chain Management Gerenciamento da Cadeia de Suprimentos. Capítulo 1 - Ballou

Logística Empresarial - Uma disciplina Vital. Missão da Logística. Supply Chain Management Gerenciamento da Cadeia de Suprimentos. Capítulo 1 - Ballou Logística Empresarial - Uma disciplina Vital Supply Chain Management Gerenciamento da Cadeia de Suprimentos Capítulo 1 - Ballou Missão da Logística A missão da logística é dispor da mercadoria ou o serviço

More information

IBM Solution Design Method

IBM Solution Design Method Solution Design Method IBM Solution Design Method Introduction IBM Solution Design Method Introduction: o Objectives o Introduction o Unified Method Architecture 2 Goals and Objectives Goals: Disciplined

More information

M2273-Updating Your Database Administration Skills to Microsoft SQL Server 2005

M2273-Updating Your Database Administration Skills to Microsoft SQL Server 2005 M2273-Updating Your Database Administration Skills to Microsoft SQL Server 2005 Este é um curso de 35 horas queirá dotar os participantes com know-how necessário para efectuar um upgrade de conhecimentos

More information

B I N G O B I N G O. Hf Cd Na Nb Lr. I Fl Fr Mo Si. Ho Bi Ce Eu Ac. Md Co P Pa Tc. Uut Rh K N. Sb At Md H. Bh Cm H Bi Es. Mo Uus Lu P F.

B I N G O B I N G O. Hf Cd Na Nb Lr. I Fl Fr Mo Si. Ho Bi Ce Eu Ac. Md Co P Pa Tc. Uut Rh K N. Sb At Md H. Bh Cm H Bi Es. Mo Uus Lu P F. Hf Cd Na Nb Lr Ho Bi Ce u Ac I Fl Fr Mo i Md Co P Pa Tc Uut Rh K N Dy Cl N Am b At Md H Y Bh Cm H Bi s Mo Uus Lu P F Cu Ar Ag Mg K Thomas Jefferson National Accelerator Facility - Office of cience ducation

More information

03 infra TI RAID. MTBF; RAID Protection; Mirroring and Parity; RAID levels; write penalty

03 infra TI RAID. MTBF; RAID Protection; Mirroring and Parity; RAID levels; write penalty 03 infra TI RAID MTBF; RAID Protection; Mirroring and Parity; RAID levels; write penalty Por que RAID? Redundant Array Inexpensive Disks x Redudant Array Independent Disks Performance limitation of disk

More information

São Paulo, 18 de abril de 2012. Provas de Inglês Substitutivas E. Fundamental II e E. Médio. Prezados Pais,

São Paulo, 18 de abril de 2012. Provas de Inglês Substitutivas E. Fundamental II e E. Médio. Prezados Pais, São Paulo, 18 de abril de 2012. Provas de Inglês Substitutivas E. Fundamental II e E. Médio Prezados Pais, De 19 a 25 de abril, serão aplicadas as Provas de Inglês (Midterm Tests) Substitutivas do primeiro

More information

ArcHC_3D research case studies (FCT:PTDC/AUR/66476/2006) Casos de estudo do projecto ArcHC_3D (FCT:PTDC/AUR/66476/2006)

ArcHC_3D research case studies (FCT:PTDC/AUR/66476/2006) Casos de estudo do projecto ArcHC_3D (FCT:PTDC/AUR/66476/2006) ArcHC_3D research case studies (FCT:PTDC/AUR/66476/2006) Casos de estudo do projecto ArcHC_3D (FCT:PTDC/AUR/66476/2006) 1 Casa de Valflores - Loures 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Capela de S. Frutuoso

More information

LISTENING REVOLUTION THE. 3rd 6th Grades

LISTENING REVOLUTION THE. 3rd 6th Grades THE LISTENING REVLUTIN TECHNLGY, MUSIC AND YU 3rd 6th Grades Lesson 4 ye bjective Students will learn the song ye by James Papoulis and prepare to sing it together at the BP concert. This piece includes

More information

GENERAL INFORMAT ION:

GENERAL INFORMAT ION: > > >, < > < < _ Pos ta lc od e_ > > > PERFORM ANCE APPRAISAL Employee Name: [Click here

More information

The Business Case for D om aink ey s I d ent ified M ail Andy Spillane V ic e P r es ident, Y ah o o! M February 13, 2006 ail 1 Fighting Spam & Email Abuse R eq uir es a M ulti-fac eted Appr o ac h DomainKeys

More information

Normas ETSI e IETF para Assinatura Digital. Ernandes Lopes Bezerra. Ernandes. 26 de dezembro de 2012

Normas ETSI e IETF para Assinatura Digital. Ernandes Lopes Bezerra. Ernandes. 26 de dezembro de 2012 Normas ETSI e IETF para Assinatura Digital Lopes Bezerra 26 de dezembro de 2012 by 1 Acrônimos TERMO BES CAdES CMS DER DNS DN EPES ETSI HTTP IETF LCR LDAP LTV OID PAdES PDF TR TS URI URL XAdES DESCRIÇÃO

More information

Classe AGI - PHP 5.x

Classe AGI - PHP 5.x Classe AGI - PHP 5.x Contents Package AGI Procedural Elements 2 agi_lib_v5x.php 2 Package AGI Classes 3 Class AGI 3 Constructor construct 3 Method exec_command 4 Method getagi_env 4 Method getdebug 4 Method

More information

Lockheed Martin s Move to Assurance: Software Safety and Security Certification Best Practices (BP)

Lockheed Martin s Move to Assurance: Software Safety and Security Certification Best Practices (BP) Lockheed Martin s Move to Assurance: Software Safety and Security Certification Best Practices (BP) Dennis Beard, CISSP Lockheed Martin Syracuse, NY August 7, 2007 Page 1 Agenda Best Practices Guidebook

More information

Cisco Security Agent (CSA) CSA je v í c eúčelo v ý s o f t w a r o v ý ná s t r o j, k t er ý lze p o už í t k v ynuc ení r ů zný c h b ezp ečno s t ní c h p o li t i k. CSA a na lyzuje c h o v á ní a

More information

Device I n s t r u m en t a t io n E x a m p l es : I P S L A s & N et F l o w Presented by Emmanuel Tychon Techni cal M ark eti ng Eng i neer TU D resden, J anuary 1 7 th 2 0 0 7 1. C is co I O S I P

More information

Prova Escrita de Inglês

Prova Escrita de Inglês EXAME FINAL NACIONAL DO ENSINO SECUNDÁRIO Prova Escrita de Inglês 11.º Ano de Escolaridade Continuação bienal Decreto-Lei n.º 139/2012, de 5 de julho Prova 550/1.ª Fase 8 Páginas Duração da Prova: 120

More information

CLASS TEST GRADE 11. PHYSICAL SCIENCES: CHEMISTRY Test 6: Chemical change

CLASS TEST GRADE 11. PHYSICAL SCIENCES: CHEMISTRY Test 6: Chemical change CLASS TEST GRADE PHYSICAL SCIENCES: CHEMISTRY Test 6: Chemical change MARKS: 45 TIME: hour INSTRUCTIONS AND INFORMATION. Answer ALL the questions. 2. You may use non-programmable calculators. 3. You may

More information

Prova Escrita de Inglês

Prova Escrita de Inglês EXAME FINAL NACIONAL DO ENSINO SECUNDÁRIO Prova Escrita de Inglês 11.º Ano de Escolaridade Continuação bienal Decreto-Lei n.º 139/2012, de 5 de julho Prova 550/2.ª Fase 8 Páginas Duração da Prova: 120

More information

FINANCING TOOLS FOR MARINE CONSERVATION: OVERVIEW OF NEW FUNDING STRATEGIES?

FINANCING TOOLS FOR MARINE CONSERVATION: OVERVIEW OF NEW FUNDING STRATEGIES? FINANCING TOOLS FOR MARINE CONSERVATION: OVERVIEW OF NEW FUNDING STRATEGIES?! 21.10% 25.88% HIGH FUTURE 53.02% FIGURE 9. PUBLIC VERSUS PRIVATE SECTOR PAYING 13.10% 17.30% LOW FUTURE 69.60%!"#$%&#'()'*%$"+,$%-".%/0)).1-%'1&%

More information

Health First Medicare Plans Dental Directory

Health First Medicare Plans Dental Directory Consultorios dentales de la red DeltaCare USA Health First Medicare Plans Dental Directory for Classic (HMO-POS) and Employer Group Plans About our Dental Network The Classic (HMO-POS) and Employer Group

More information

He Will Hold Me Fast (When I Fear My Faith Will Fail)

He Will Hold Me Fast (When I Fear My Faith Will Fail) ? 9? 1? Full Hope (h = 66) (v:fm7) 1. When. Those. (v:fm7) Till When Pre ust? I ll I cious ice could not Raed ith Bought by / love Him faith fear saves life tempt / nev let Him at are /C faith H bled /C

More information

Nearer, My God, to Thee

Nearer, My God, to Thee , My Thee as pformed by BYU ocal Point (feat. BYU Men's horus) Original hymn lyrics by SARA F. ADAMS Latin lyrics by AMES L. STEENS Music by LOWELL MASON and AMES L. STEENS Arranged by AMES L. STEENS ocal

More information

HCAHPS Quality Assurance Guidelines V9.0 Technical Corrections and Clarifications Revised August 2014

HCAHPS Quality Assurance Guidelines V9.0 Technical Corrections and Clarifications Revised August 2014 Subsequent to the release of the HCAHPS Quality Assurance Guidelines V9.0 (QAG V9.0), it has been determined that there are specific content items that require correction, addition and/or further clarification.

More information

W Cisco Kompetanse eek end 2 0 0 8 SMB = Store Mu ll ii gg hh eter! Nina Gullerud ng ulleru@ c is c o. c o m 1 Vår E n t e r p r i s e e r f a r i n g... 2 S m å o g M e llo m s t o r e B e d r i f t e

More information

PSTN. Gateway. Switch. Supervisor PC. Ethernet LAN. IPCC Express SERVER. CallManager. IP Phone. IP Phone. Cust- DB

PSTN. Gateway. Switch. Supervisor PC. Ethernet LAN. IPCC Express SERVER. CallManager. IP Phone. IP Phone. Cust- DB M IPCC EXPRESS Product Solution (IPCC - IP Co n t a c t Ce n t e r ) E i n f ü h r u n g Ü b e r h u nd e r t M il l io ne n N u t ze r - P r o g no s e n zu f o l g e w e r d e n e s in d ie s e m J ah

More information

M Official Bologna S e m inar Joint d e gr e e s- A H allm ar k of t h e E u r op e an H igh e r E d u cat ion A r e a? R e s u l t s o f q u e s t i o n n a i r e s e n t t o B o l o g n a F o l l o w

More information

Representação de Caracteres

Representação de Caracteres Representação de Caracteres IFBA Instituto Federal de Educ. Ciencia e Tec Bahia Curso de Analise e Desenvolvimento de Sistemas Introdução à Ciência da Computação Prof. Msc. Antonio Carlos Souza Coletânea

More information

Access Data Object (cont.)

Access Data Object (cont.) ADO.NET Access Data Object (cont.) What is a Dataset? DataTable DataSet DataTable DataTable SqlDataAdapter SqlConnection OleDbDataAdapter Web server memory Physical storage SQL Server 2000 OleDbConnection

More information

Boletim Técnico. Esta implementação consiste em atender a legislação do intercâmbio eletrônico na versão 4.0 adotado pela Unimed do Brasil.

Boletim Técnico. Esta implementação consiste em atender a legislação do intercâmbio eletrônico na versão 4.0 adotado pela Unimed do Brasil. Produto : Totvs + Foundation Saúde + 11.5.3 Chamado : TFOQEI Data da criação : 27/08/12 Data da revisão : 10/09/12 País(es) : Brasil Banco(s) de Dados : Esta implementação consiste em atender a legislação

More information

proxy cert request dn, cert, Pkey, VOMS cred. (short lifetime) certificate: dn, ca, Pkey mod_ssl pre-process: parameters->

proxy cert request dn, cert, Pkey, VOMS cred. (short lifetime) certificate: dn, ca, Pkey mod_ssl pre-process: parameters-> Overview of the New S ec u rity M od el WP6 Meeting V I D t G R I D C o nf er enc e B r c el o ne, 1 2-1 5 M y 2 0 0 3 Overview focus is on VOMS C A d e t il s r e in D 7. 6 Se cur it y D e sig n proxy

More information

SBGames 2007 Relato Computing Track Full Papers

SBGames 2007 Relato Computing Track Full Papers SBGames 2007 Relato Computing Track Full Papers Marcelo Walter, Bruno Feijó, Jorge Barbosa 9/novembro/2007 Estatísticas 55 papers sem problemas 4 papers com problemas (fora do prazo, artigo não submetido)

More information

R e t r o f i t o f t C i r u n i s g e C o n t r o l

R e t r o f i t o f t C i r u n i s g e C o n t r o l R e t r o f i t o f t C i r u n i s g e C o n t r o l VB Sprinter D e s c r i p t i o n T h i s r e t r o f i t c o n s i s t s o f i n s t a l l i n g a c r u i s e c o n t r o l s wi t c h k i t i n

More information

MOTORI ELETTRICI TRIFASE SERIE MS MOTORI ELETTRICI MONOFASE SERIE MY

MOTORI ELETTRICI TRIFASE SERIE MS MOTORI ELETTRICI MONOFASE SERIE MY RI RI OORI RICI OO RI Y Caratteristiche tecniche / echnical characteristics I mo to ri ran stec no se rie e Y sono chiu si e do ta ti di ven to la di raf fred da men to. and Y se ries ran stec no mo tors

More information

Vom prozessorientierten Wissensmanagement zum intelligenten Engineering-Portal

Vom prozessorientierten Wissensmanagement zum intelligenten Engineering-Portal Vom prozessorientierten Wissensmanagement zum intelligenten Engineering-Portal Praxisbericht aus der Entwicklung von Hochauftriebsystemen für Verkehrsflugzeuge KnowTech Stuttgart, 24.-25.10.2012 Thomas

More information

Governor s Cybersecurity Task Force. Monday, November 23, 2015 Roughrider Room State Capitol Building

Governor s Cybersecurity Task Force. Monday, November 23, 2015 Roughrider Room State Capitol Building Governor s Cybersecurity Task Force Monday, November 23, 2015 Roughrider Room State Capitol Building Agenda Topic October Meeting Highlights Lt. Gov. Drew Wrigley NAIC Cybersecurity Overview Adam Hamm,

More information

Using Predictive Modeling to Reduce Claims Losses in Auto Physical Damage

Using Predictive Modeling to Reduce Claims Losses in Auto Physical Damage Using Predictive Modeling to Reduce Claims Losses in Auto Physical Damage CAS Loss Reserve Seminar 23 Session 3 Private Passenger Automobile Insurance Frank Cacchione Carlos Ariza September 8, 23 Today

More information

How To Be A Successful Thai

How To Be A Successful Thai D The Joint Master of Science eg ree C ou rse in V eterinary P u b l ic H eal th ( MScVPH), F U -C MU Dr. L e rt ra k S ri k i t j a k a rn R e g i o n a l C e n t re f o r V e t e ri n a ry P u b l i

More information

G d y n i a U s ł u g a r e j e s t r a c j i i p o m i a r u c z a s u u c z e s t n i k ó w i m p r e z s p o r t o w y c h G d y s k i e g o O r o d k a S p o r t u i R e k r e a c j i w r o k u 2 0

More information

Unit 16 : Software Development Standards O b jec t ive T o p r o v id e a gu ide on ho w t o ac h iev e so f t wa r e p r o cess improvement through the use of software and systems engineering standards.

More information

Overview of Spellings on www.spellzoo.co.uk

Overview of Spellings on www.spellzoo.co.uk Overview of Spellings on www.spellzoo.co.uk Year 1 Set 1: CVC words Set 2: CVC and CCVC words Set 3: CVC, CCVC and CCVCC words Set 4: Words containing 'ch', 'sh', 'th' and 'wh' Set 5: Words ending in 'll',

More information

NADABAS. Report from a short term mission to the National Statistical Institute of Mozambique, Maputo Mozambique. 16-27 April 2012

NADABAS. Report from a short term mission to the National Statistical Institute of Mozambique, Maputo Mozambique. 16-27 April 2012 MZ:2012:04r NADABAS Report from a short term mission to the National Statistical Institute of Mozambique, Maputo Mozambique 16-27 April 2012 within the frame work of the AGREEMENT ON CONSULTING ON INSTITUTIONAL

More information

S E 5/9. Checks & Forms for. BIS Software www.bisformsdivision.com 888.629.9640

S E 5/9. Checks & Forms for. BIS Software www.bisformsdivision.com 888.629.9640 BTM MO _TH ER SAFE PO SS 89 70 DEN E. H VE AMPD R FA 303-, C EN X; 74 O AV 30 0-62 8023 E. 3-22 06 1 0-74 24 IBIL ITIE S ST AT DA TE E RE FE RE NC E DAT AC E CO UN T NU CO DE ME NT MBE R DE SC DA TE RIPT

More information

Positioning 40 and 100 GbE in data center inter-sw itch l ink ap p l ications and 40GbE PM D recom m endations Adam Carter, Cisco Al essan dro B arb ieri, Cisco 1 m Data Center inter-s w itc h l ink ap

More information

bow bandage candle buildings bulb coins barn cap corn

bow bandage candle buildings bulb coins barn cap corn b c bow bandage candle buildings bulb coins barn cap corn Copyright (C) 1999 Senari Programs Page 1 SoundBox Montessori d f darts dice door dove forest farm film foot fish Copyright (C) 1999 Senari Programs

More information

CUSTOMER INFORMATION SECURITY AWARENESS TRAINING

CUSTOMER INFORMATION SECURITY AWARENESS TRAINING CUSTOMER INFORMATION SECURITY AWARENESS TRAINING IN T RO DUCT ION T h i s c o u r s e i s d e s i g n e d to p r o v i d e yo u w i t h t h e k n o w l e d g e to p r o t e c t y o u r p e r s o n a l

More information

SM 3300 - Interface modules

SM 3300 - Interface modules Vissersdijk 4 4301 ND Zierikzee The Netherlands Tel. +31 111 413656 Fax. +31 111 416919 www.deltapowersupplies.com DELTA ELEKTRONIKA B.V. SM 3300 - Interface modules Mod els Description INT MOD M/S Master/Slave

More information

Chem 115 POGIL Worksheet - Week 4 Moles & Stoichiometry

Chem 115 POGIL Worksheet - Week 4 Moles & Stoichiometry Chem 115 POGIL Worksheet - Week 4 Moles & Stoichiometry Why? Chemists are concerned with mass relationships in chemical reactions, usually run on a macroscopic scale (grams, kilograms, etc.). To deal with

More information

SEPTEMBER Unit 1 Page Learning Goals 1 Short a 2 b 3-5 blends 6-7 c as in cat 8-11 t 12-13 p

SEPTEMBER Unit 1 Page Learning Goals 1 Short a 2 b 3-5 blends 6-7 c as in cat 8-11 t 12-13 p The McRuffy Kindergarten Reading/Phonics year- long program is divided into 4 units and 180 pages of reading/phonics instruction. Pages and learning goals covered are noted below: SEPTEMBER Unit 1 1 Short

More information

Prova Escrita de Inglês

Prova Escrita de Inglês EXAME FINAL NACIONAL DO ENSINO SECUNDÁRIO Prova Escrita de Inglês 11.º Ano de Escolaridade Continuação bienal Decreto-Lei n.º 139/2012, de 5 de julho Prova 550/1.ª Fase 8 Páginas Duração da Prova: 120

More information

Empresas líderes usam TI como direcionador de inovação e mudança

Empresas líderes usam TI como direcionador de inovação e mudança Convivendo com a Complexidade Simplificando a T.I. Cyro Diehl 1 71% das Empresas Dizem que inovação é o fator #1 de competitividade Empresas líderes usam TI como direcionador de inovação e mudança Contudo,

More information

13 melhores extensões Magento melhorar o SEO da sua loja

13 melhores extensões Magento melhorar o SEO da sua loja Lojas Online ou Lojas Virtuais Seleção das melhores lojas para comprar online em Portugal. Loja virtual designa uma página na Internet com um software de gerenciamento de pedidos (carrinho de compras)

More information

MCSD Azure Solutions Architect [Ativar Portugal] Sobre o curso. Metodologia. Microsoft - Percursos. Com certificação. Nível: Avançado Duração: 78h

MCSD Azure Solutions Architect [Ativar Portugal] Sobre o curso. Metodologia. Microsoft - Percursos. Com certificação. Nível: Avançado Duração: 78h MCSD Azure Solutions Architect [Ativar Portugal] Microsoft - Percursos Com certificação Nível: Avançado Duração: 78h Sobre o curso A GALILEU integrou na sua oferta formativa, o Percurso de Formação e Certificação

More information

Data Center end users for 40G/100G and market dy nami c s for 40G/100G on S M F Adam Carter Ci s c o 1 W Now that 40GbE is part of the IEEE 802.3ba there will be a wid er array of applic ation s that will

More information

MS IN EARLY CHILDHOOD STUDIES

MS IN EARLY CHILDHOOD STUDIES MS IN EARLY CHILDHOOD STUDIES Child Development (CD) C D001 - T h eo r ies of C h i ld D eve l opm e nt Demo ns t rate a n understand i ng of theories and concepts o f ch ild deve lo pme nt. C D002 - K

More information

e Videobewaking ov er I P Marty K n o p e rt 1 A l l m z u l l b t g r u m a k h w k h w k z a l z r E p r m a r k t t c m a r k t Video vision: e vor en va n video en in de na ij e oek om st eb ik en

More information

MAX. IP Conferencing Phone

MAX. IP Conferencing Phone MAX IP Conferencing Phone User s Guide Telephone 1.800.283.5936 1.801.974.3760 FAX 1.801.974.3669 E-mail On the Web tech.support@clearone.com www.clearone.com MAX IP User s Guide CLEARONE PART NO. 800-158-301

More information

FAMILY INDEPENDENCE ADMINISTRATION Seth W. Diamond, Executive Deputy Commissioner

FAMILY INDEPENDENCE ADMINISTRATION Seth W. Diamond, Executive Deputy Commissioner FAMILY INDEPENDENCE ADMINISTRATION Seth W. Diamond, Executive Deputy Commissioner James K. Whelan, Deputy Commissioner Policy, Procedures and Training Lisa C. Fitzpatrick, Assistant Deputy Commissioner

More information