-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdump ds1.sql
623 lines (440 loc) · 12.8 KB
/
dump ds1.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.3.5
-- Dumped by pg_dump version 9.3.5
-- Started on 2015-06-17 16:35:57 BRT
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET search_path = public, pg_catalog;
--
-- TOC entry 198 (class 1255 OID 16613)
-- Name: altera_salario(integer, numeric); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION altera_salario(integer, numeric) RETURNS boolean
LANGUAGE plpgsql
AS $_$
declare
v_nome func.nome%type;
v_salario func.salario%type;
p_codigo alias for $1;
p_aumento alias for $2;
begin
select into v_nome,v_salario nome,salario from func where codigo=p_codigo;
raise notice'nome:%',v_nome;
raise notice'salario atual:%',v_salario;
v_salario:=v_salario+p_aumento;
raise notice'novo salario:%',v_salario;
update func set salario=v_salario where codigo=p_codigo;
return 't';
end;
$_$;
ALTER FUNCTION public.altera_salario(integer, numeric) OWNER TO postgres;
--
-- TOC entry 199 (class 1255 OID 16614)
-- Name: contador_cli(); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION contador_cli() RETURNS integer
LANGUAGE plpgsql
AS $$
declare
registro record;
qtde integer;
begin
qtde:=0;
for registro in select * from func loop
qtde:=qtde+1;
raise notice 'nome:%,salario:%,codigo:%',registro.nome,registro.salario,registro.codigo;
end loop;
return qtde;
end;
$$;
ALTER FUNCTION public.contador_cli() OWNER TO postgres;
--
-- TOC entry 200 (class 1255 OID 16615)
-- Name: fatorial(integer); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION fatorial(integer) RETURNS integer
LANGUAGE plpgsql
AS $_$
declare
arg integer;
begin
arg := $1;
if arg is null or arg < 0 then
raise notice 'valor inválido!';
return null;
else
if arg = 1 then
return 1;
else
declare
next_value integer;
begin
next_value := fatorial(arg-1)*arg;
return next_value;
end;
end if;
end if;
end;
$_$;
ALTER FUNCTION public.fatorial(integer) OWNER TO postgres;
--
-- TOC entry 201 (class 1255 OID 16616)
-- Name: fatorial2(integer); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION fatorial2(integer) RETURNS integer
LANGUAGE plpgsql
AS $_$
declare
arg integer;
begin
arg := $1;
if arg is null or arg < 0 then
raise notice 'valor invalido';
return null;
else
if arg = 1 then
return 1;
else
declare
next_value integer;
begin
next_value:=fatorial(arg-1)*arg;
return next_value;
end;
end if;
end if;
end;
$_$;
ALTER FUNCTION public.fatorial2(integer) OWNER TO postgres;
--
-- TOC entry 202 (class 1255 OID 16617)
-- Name: media(numeric, numeric); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION media(numeric, numeric) RETURNS numeric
LANGUAGE plpgsql
AS $_$
declare
result numeric;
begin
result:=($1+$2)/2;
return result;
end;
$_$;
ALTER FUNCTION public.media(numeric, numeric) OWNER TO postgres;
--
-- TOC entry 203 (class 1255 OID 16618)
-- Name: media(numeric, numeric, numeric); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION media(numeric, numeric, numeric) RETURNS numeric
LANGUAGE plpgsql
AS $_$
declare
result numeric;
begin
result:=($4+$5+$6)/3;
return result;
end;
$_$;
ALTER FUNCTION public.media(numeric, numeric, numeric) OWNER TO postgres;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- TOC entry 175 (class 1259 OID 16627)
-- Name: entrada; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE entrada (
id integer NOT NULL,
hora_entrada timestamp without time zone,
hora_saida timestamp without time zone,
placa_veiculo character varying,
valor money,
andar_vaga integer,
numero_vaga integer
);
ALTER TABLE public.entrada OWNER TO postgres;
--
-- TOC entry 176 (class 1259 OID 16633)
-- Name: entrada_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE entrada_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.entrada_id_seq OWNER TO postgres;
--
-- TOC entry 2057 (class 0 OID 0)
-- Dependencies: 176
-- Name: entrada_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE entrada_id_seq OWNED BY entrada.id;
--
-- TOC entry 177 (class 1259 OID 16635)
-- Name: funcionario; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE funcionario (
id integer NOT NULL,
login character varying NOT NULL,
senha character varying,
admin boolean NOT NULL
);
ALTER TABLE public.funcionario OWNER TO postgres;
--
-- TOC entry 178 (class 1259 OID 16641)
-- Name: funcionario_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE funcionario_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.funcionario_id_seq OWNER TO postgres;
--
-- TOC entry 2058 (class 0 OID 0)
-- Dependencies: 178
-- Name: funcionario_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE funcionario_id_seq OWNED BY funcionario.id;
--
-- TOC entry 179 (class 1259 OID 16643)
-- Name: preco; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE preco (
id integer NOT NULL,
valor money,
tipo integer
);
ALTER TABLE public.preco OWNER TO postgres;
--
-- TOC entry 180 (class 1259 OID 16646)
-- Name: preco_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE preco_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.preco_id_seq OWNER TO postgres;
--
-- TOC entry 2059 (class 0 OID 0)
-- Dependencies: 180
-- Name: preco_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE preco_id_seq OWNED BY preco.id;
--
-- TOC entry 181 (class 1259 OID 16648)
-- Name: tipo; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE tipo (
id integer NOT NULL,
nome character varying
);
ALTER TABLE public.tipo OWNER TO postgres;
--
-- TOC entry 182 (class 1259 OID 16654)
-- Name: tipo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE tipo_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.tipo_id_seq OWNER TO postgres;
--
-- TOC entry 2060 (class 0 OID 0)
-- Dependencies: 182
-- Name: tipo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE tipo_id_seq OWNED BY tipo.id;
--
-- TOC entry 183 (class 1259 OID 16656)
-- Name: vaga; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE vaga (
andar integer NOT NULL,
numero integer NOT NULL,
tipo_vaga integer
);
ALTER TABLE public.vaga OWNER TO postgres;
--
-- TOC entry 184 (class 1259 OID 16659)
-- Name: veiculo; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE veiculo (
placa character varying(8) NOT NULL,
tipo integer,
marca character varying,
modelo character varying,
cor character varying,
CONSTRAINT veiculo_placa_fmt CHECK (((placa)::text ~ '[A-Z]{3}-[0-9]{4}'::text))
);
ALTER TABLE public.veiculo OWNER TO postgres;
--
-- TOC entry 1912 (class 2604 OID 16668)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY entrada ALTER COLUMN id SET DEFAULT nextval('entrada_id_seq'::regclass);
--
-- TOC entry 1913 (class 2604 OID 16669)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY funcionario ALTER COLUMN id SET DEFAULT nextval('funcionario_id_seq'::regclass);
--
-- TOC entry 1914 (class 2604 OID 16670)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY preco ALTER COLUMN id SET DEFAULT nextval('preco_id_seq'::regclass);
--
-- TOC entry 1915 (class 2604 OID 16671)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY tipo ALTER COLUMN id SET DEFAULT nextval('tipo_id_seq'::regclass);
--
-- TOC entry 2041 (class 0 OID 16627)
-- Dependencies: 175
-- Data for Name: entrada; Type: TABLE DATA; Schema: public; Owner: postgres
--
--
-- TOC entry 2061 (class 0 OID 0)
-- Dependencies: 176
-- Name: entrada_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('entrada_id_seq', 1, false);
--
-- TOC entry 2043 (class 0 OID 16635)
-- Dependencies: 177
-- Data for Name: funcionario; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO funcionario (id, login, senha, admin) VALUES (4, 'joao', 'mango', false);
--
-- TOC entry 2062 (class 0 OID 0)
-- Dependencies: 178
-- Name: funcionario_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('funcionario_id_seq', 4, true);
--
-- TOC entry 2045 (class 0 OID 16643)
-- Dependencies: 179
-- Data for Name: preco; Type: TABLE DATA; Schema: public; Owner: postgres
--
--
-- TOC entry 2063 (class 0 OID 0)
-- Dependencies: 180
-- Name: preco_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('preco_id_seq', 1, false);
--
-- TOC entry 2047 (class 0 OID 16648)
-- Dependencies: 181
-- Data for Name: tipo; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO tipo (id, nome) VALUES (1, 'Carro');
INSERT INTO tipo (id, nome) VALUES (2, 'Moto');
INSERT INTO tipo (id, nome) VALUES (3, 'Utilitario');
--
-- TOC entry 2064 (class 0 OID 0)
-- Dependencies: 182
-- Name: tipo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('tipo_id_seq', 3, true);
--
-- TOC entry 2049 (class 0 OID 16656)
-- Dependencies: 183
-- Data for Name: vaga; Type: TABLE DATA; Schema: public; Owner: postgres
--
--
-- TOC entry 2050 (class 0 OID 16659)
-- Dependencies: 184
-- Data for Name: veiculo; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO veiculo (placa, tipo, marca, modelo, cor) VALUES ('ABC-1234', 1, 'Honda', '2013', 'Agouti');
INSERT INTO veiculo (placa, tipo, marca, modelo, cor) VALUES ('CDE-5555', 2, 'smt', '2000', 'avc');
--
-- TOC entry 1918 (class 2606 OID 16675)
-- Name: entrada_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY entrada
ADD CONSTRAINT entrada_pkey PRIMARY KEY (id);
--
-- TOC entry 1920 (class 2606 OID 16677)
-- Name: funcionario_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY funcionario
ADD CONSTRAINT funcionario_pkey PRIMARY KEY (id);
--
-- TOC entry 1922 (class 2606 OID 16679)
-- Name: preco_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY preco
ADD CONSTRAINT preco_pkey PRIMARY KEY (id);
--
-- TOC entry 1924 (class 2606 OID 16681)
-- Name: tipo_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY tipo
ADD CONSTRAINT tipo_pkey PRIMARY KEY (id);
--
-- TOC entry 1926 (class 2606 OID 16683)
-- Name: vaga_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY vaga
ADD CONSTRAINT vaga_pkey PRIMARY KEY (andar, numero);
--
-- TOC entry 1928 (class 2606 OID 16685)
-- Name: veiculo_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY veiculo
ADD CONSTRAINT veiculo_pkey PRIMARY KEY (placa);
--
-- TOC entry 1929 (class 2606 OID 16686)
-- Name: entrada_andar_vaga_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY entrada
ADD CONSTRAINT entrada_andar_vaga_fkey FOREIGN KEY (andar_vaga, numero_vaga) REFERENCES vaga(andar, numero);
--
-- TOC entry 1930 (class 2606 OID 16691)
-- Name: entrada_placa_veiculo_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY entrada
ADD CONSTRAINT entrada_placa_veiculo_fkey FOREIGN KEY (placa_veiculo) REFERENCES veiculo(placa);
--
-- TOC entry 1931 (class 2606 OID 16696)
-- Name: preco_tipo_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY preco
ADD CONSTRAINT preco_tipo_fkey FOREIGN KEY (tipo) REFERENCES tipo(id);
--
-- TOC entry 1933 (class 2606 OID 16701)
-- Name: tipo_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY veiculo
ADD CONSTRAINT tipo_fkey FOREIGN KEY (tipo) REFERENCES tipo(id);
--
-- TOC entry 1932 (class 2606 OID 16706)
-- Name: vaga_tipo_vaga_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY vaga
ADD CONSTRAINT vaga_tipo_vaga_fkey FOREIGN KEY (tipo_vaga) REFERENCES tipo(id);
--
-- TOC entry 2056 (class 0 OID 0)
-- Dependencies: 7
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--
REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;
-- Completed on 2015-06-17 16:35:57 BRT
--
-- PostgreSQL database dump complete
--