criacao_banco_dados-variavel_MOD.html
26.1 KB
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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta charset="UTF-8">
<title>i3GeoSaude</title>
<link media="screen" href="./files/estilos.css" type="text/css"
rel="stylesheet">
<!--[if lt IE 10]>
<![endif]-->
<link rel="stylesheet" type="text/css" href="./files/estilos.css">
</head>
<body class="blue-bg">
<div id="wrapper-flex">
<div style="background-color: white;">
<div class="f-page-auto-cell Code" id="doc">
<div class="imginicio"><img onclick="window.history.back()" style="border: 0px solid ; width: 40px; height: 40px;" alt="inicio" src="files/inicio.gif"></div>
<h1>Criação
de banco de dados no i3GeoSaúde </h1>
<a name="inicio"></a><br>
Os dados utilizados pelo i3GeoSaúde precisam estar armazenados
em
tabelas em um banco de dados Postgres. Para facilitar o gerenciamento
desse banco de dados o i3GeoSaúde dispõe de um
sistema
simples que permite realizar algumas operações
sobre esse
banco de dados.<br>
<br>
Por questões de segurança, esse gerenciador
só
permite realizar operações de
alteração do
banco no contexto do esquema chamado i3geo_metaestat. Para os demais
esquemas o gerenciador permite apenas a
visualização das
tabelas.<br>
<br>
O banco de dados que é distribuído com o
i3GeoSaúde
(usb ou máquina virtual) já contém
esse esquema
dentro de um banco de dados chamado “i3geosaude”.
Nessa
situação de uso não é
necessário
nenhuma configuração adicional, pois os
parâmetros
de conexão com esse banco já estão
registrados no
i3GeoSaúde, se você quiser usar um outro banco de
dados
será necessário criar o esquema i3geo_metaestat e
registrar os parâmetros de conexão (veja a
opção “Conexões”
existente no sistema
de administração).<br>
<br>
Se você já possuí tabelas com dados
estatísticos e quer usá-las nos cartogramas
você
poderá fazê-lo desde que essas tabelas estejam
armazenadas
no mesmo “database” onde estiverem armazenadas as
tabelas
com os dados geográficos. Ou seja, as tabelas com os dados
devem
estar no mesmo “database” onde estão as
tabelas com
as geometrias. Novamente, você não
precisará se
preocupar com isso se estiver utilizando o banco de dados
padrão.<br>
<br>
Essas tabelas já existentes não
poderão ser
editadas pelo i3GeoSaúde, ou seja, algumas das funcionalidades
que
permitem adição de novos dados ou
alteração, não funcionarão
para essas
tabelas. Por exemplo, o i3GeoSaúde permite que o
usuário
administrador clique em um bairro e altere os valores armazenados.
Apenas as tabelas que são padrão do
i3GeoSaúde
permitem esse tipo de edição interativa.<br>
<br>
Se você está criando o seu próprio
banco de dados,
independente do que é fornecido junto com o sistema,
você
poderá criar as tabelas padrão conforme o
procedimento
descrito abaixo.<br>
<br>
Uma outra função importante do sistema de
gerenciamento
é o envio para o banco de dados de um arquivo contendo os
limites das unidades espaciais as quais os dados
estatísticos
estarão relacionados. Para esse envio você
deverá
possuir um arquivo no formato “shapefile”, que
é
bastante comum dentre os softwares de geoprocessamento (você
pode
usar softwares como o gvSIG ou QGIS para gerar esse formato).<br>
<br>
Da mesma forma que para os dados normais, o i3GeoSaúde
já
fornece algumas tabelas que contém os limites municipais do
Brasil, limites estaduais e alguns limites de bairros. Esses dados
são editáveis e o i3GeoSaúde fornece um
editor de
limites geográficos. Se você não
possuí o
arquivo “shapefile” é
possível usar esse
editor para traçar de forma interativa os seus bairros ou
outro
tipo de limite geográfico.<br>
<br>
<div class="trail-box">
<div class="trail-box-header"><img src="files/trails-box-tr.png"
class="right" alt="" height="21" width="7"><img
src="files/trails-box-tl.png" class="left" alt="" height="21" width="7"><comment
title=" here is the box header "
xmlns="http://disruptive-innovations.com/zoo/nvu"><comment
title=" here is the box header "
xmlns="http://disruptive-innovations.com/zoo/nvu"></comment></comment>
<h1><span style="font-weight: bold;">Procedimento manual
para criação de
tabelas padrão</span><a name="ancora"></a></h1>
</div>
<div class="trail-box-content"><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"> Essa
operação só é
necessária se
você não quiser utilizar o banco de dados
padrão do
i3GeoSaúde.<br>
<br>
Abra as opções em
"Metadados Estatísticos" e
escolha "gerenciador de tabelas de dados
estatísticos"
conforme mostrado na <span style="font-weight: bold;">Figura 1</span>
(Menu de opções de
Metadados Estatísticos).<br>
</span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><br>
<br>
<img src="imagens/tabelaAtualizada/Figura1.jpg" alt="figura1"
style="width: 400px; height: 142px;"></span>
<ul>
</ul>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); font-weight: bold;">Figura
1:<span class="Apple-converted-space"> </span></span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;">Menu
de opções de Metadados Estatísticos.<br>
<br>
Uma vez na interface de criação de tabelas
execute os
seguintes passos:<br>
<br>
<span style="font-weight: bold;">1</span>
- Selecione a
conexão com o banco, no caso "i3geosaude";<span
style="font-weight: bold;"><br>
2</span> - Selecione o esquema<span
style="font-style: italic; font-weight: bold;"> "</span><span
style="font-style: italic;"></span>i3geo_metaestat",
que é o padrão do i3GeoSaúde. Outros
esquemas, que
não seja "i3geo_metaestat", não estão
aptos a
receber
dados pela
opção "Upload de dados para uma
variável</span>";<br>
<span style="font-weight: bold;">3</span>
- Clique no botão "Criar uma nova tabela";<span
style="font-weight: bold;"></span><br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><br>
</span><img style="width: 400px; height: 226px;" alt="Figura2"
src="imagens/tabelaAtualizada/Figura2.jpg"><br>
<span style="font-weight: bold;"> Figura 2</span>:
Editor de tabela.<br>
<br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;">Em
seguida, surge uma janela
solicitando o nome da tabela conforme a <span
style="font-weight: bold;">Figura 3</span>.</span><br>
<br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"> </span><img
style="width: 250px; height: 103px;" alt="figura4"
src="imagens/tabelaAtualizada/Figura3.jpg"><br>
<span style="font-weight: bold;">
Figura 3</span>:
Definição do nome da tabela.<br>
<br>
<br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;">Uma
vez a tabela criada, deve-se criar suas colunas, que
correspondem aos atributos para a variável no
i3GeoSaúde. Para isso, clique no botão
"Adicionar uma
nova
coluna" , como visto na <span style="font-weight: bold;">Figura 4</span>.
<br>
<br>
</span><img style="width: 400px; height: 168px;" alt="figura3"
src="imagens/tabelaAtualizada/Figura4.jpg"><br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><span
style="font-weight: bold;"> Figura 4</span>:
Definindo colunas.</span><br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"></span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><br>
Após
definido o nome da nova coluna (<span style="font-weight: bold;">Figura
4</span>) , surgirá uma
janela,
na forma de
caixa de
texto (veja <span style="font-weight: bold;">Figura 5</span>),
solicitando informações sobre
o
tipo de dados da coluna, ou seja, qual o formato do
conteúdo
inserido. Neste caso, os nomes e tipos são
pré-definidos
no i3GeoSaúde, conforme a explicação a
seguir.</span><br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"></span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><br>
<br>
<img style="width: 250px; height: 127px;" alt="Figura5"
src="imagens/tabelaAtualizada/Figura5.jpg"><br>
<span style="font-weight: bold;">Figura 5</span>:
Definição do tipo de dados da tabela.<br>
<br>
</span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><br>
Para
a criar uma tabela de dados, algumas convenções
são previamente
definidas no i3GeoSaúde. Isso ocorre com os nomes
das
colunas (e seus
tipos de dados), com exceção </span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;">da
coluna "gid", que é
gerada automaticamente por ele</span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;">.
<br>
<br>
Acompanhe a seguir as colunas obrigatórias para a leitura
dos
dados pelo i3GeoSaúde :<br>
1- Criar a coluna "id_medida_variavel", com o tipo "integer";<br>
2- Criar a coluna "codigoregiao", com o tipo "text";<br>
3- </span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;">Criar
a coluna "ano", com o tipo "Integer";<br>
4- Criar a coluna "mes", com o tipo "integer";</span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;">
<br>
5- Criar a coluna "dia", com o tipo "integer";</span><br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;">6-
Criar a coluna "hora", com o tipo "integer".<br>
<br>
</span>A última coluna
é aquela que servirá de
parâmetro da medida da variável. Essa coluna deve
ser
criada
com o nome que for mais adequado, e seu tipo deve ser
numérico
(integer). <span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><br>
<br>
Uma vez criada a tabela e suas colunas , pode-se baixar, na forma de
arquivo CSV (com os dados delimitados por virgula), a tabela para
futura inserção de dados pelo usuário.
O arquivo
CSV pode ser aberto como planilha em um software como </span><span
style="font-size: 11pt;"><small>LibreOffice</small></span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;">,
para ser alimentado com as informações. A
operação de criação do
arquivo CSV é
visto na Figura 6, indicado pelo clique do botão "CSV".
Após o clique no botão, você deve
salvar o arquivo
em uma pasta no seu computador.<br>
<br>
<br>
<img style="width: 400px; height: 97px;" alt="figura7"
src="imagens/tabelaAtualizada/Figura7.jpg"><big><big><span
style="font-weight: bold;"></span></big></big></span><br>
<span style="font-weight: bold;"> Figura 6</span>:
Geração do arquivo CSV.<br>
<br>
Esse procedimento pode ser visto no vídeo tutorial. <a
target="_blank"
href="videos/video_criando_tabela/sandbox/criando_tabela.html"><span
style="color: rgb(204, 0, 0);">Clique aqui para ver o
vídeo</span></a>.<br>
<br>
<br>
<div class="trail-box-header"><img src="files/trails-box-tr.png"
class="right" alt="" height="21" width="7"><img
src="files/trails-box-tl.png" class="left" alt="" height="21" width="7"><comment
title=" here is the box header "
xmlns="http://disruptive-innovations.com/zoo/nvu"><comment
title=" here is the box header "
xmlns="http://disruptive-innovations.com/zoo/nvu"></comment></comment>
<h1><a name="importdados"></a></h1>
<h1><span style="font-weight: bold;">Importando dados
à
variável</span></h1>
</div>
<br>
<big><big><span style="font-weight: bold;">
<small><small><span style="font-weight: bold;"><span
style="font-weight: bold;"></span></span></small></small></span><small><small>Se
você já possuí dados em planilhas ou
outro tipo de
formato você poderá utilizar algum software que
permita
converter esses dados para o formato CSV (o LibreOffice por exemplo).<br>
<br>
Para inserir os dados existentes em um arquivo CSV escolha no menu
"Metadados estatísticos" a opção
"Upload de dados
para uma variavel" (ver <span style="font-weight: bold;">Figura 7</span>).<br>
<br>
É fundamental que os seus dados contenha uma coluna com o
código que identifica o limite geográfico ao qual
está relacionado. Por exemplo, se você
está
trabalhando com dados referentes a bairros, cada linha de dados do
arquivo CSV deve ter uma das colunas contendo o código do
bairro. Esse código deve ser exatamente o mesmo
código
utilizado na tabela que contém os limites
geográficos.
Essa tabela com os limites geográficos é a que
foi criada
ao ser feito o upload de um arquivo “shapefile” ou
aquelas
que já são fornecidas com o i3GeoSaúde.
Nesse
último caso, os identificadores são os mesmos
utilizados
pelo IBGE, tanto para UF, municípios e bairros.<br>
<br>
<img style="width: 587px; height: 217px;" alt="figura7"
src="imagens/tabelaAtualizada/Figura8.jpg"></small></small><span
style="font-weight: bold;"><small><small><span
style="font-weight: bold;"><span style="font-weight: bold;"></span></span></small></small><br>
<small> Figura
7: </small></span><small>Seleção
da opção "upload de dados para uma
variável".</small><br>
<br>
</big></big>
<p class="MsoNormal"><big><big><a name="csv"></a></big></big><span
style="font-size: 11pt;"><small>Conforme
visto na <span style="font-weight: bold;">Figura 8</span>, </small></span><span
style="font-size: 11pt;"><small>deve-se
primeiramente </small></span><span style="font-size: 11pt;"><small>escolher
o nome da variável e sua medida; neste exemplo, </small></span><span
style="font-size: 11pt;"><small>chama-se
de "exemplo" a variável, e </small></span><span
style="font-size: 11pt;"><small>"exemplo1"
</small></span><span style="font-size: 11pt;"><small>a
medida da variável. Em seguida, faça a carga dos
dados a
partir do "upload" do arquivo </small></span><span
style="font-size: 11pt;"><small>CSV que se encontra em seu computador.
Lembre que esse arquivo deve estar pré-formatado
conforme
as exigências do i3GeoSaúde</small></span><span
style="font-size: 11pt;"><small>.
Para mais detalhes sobre
criação e edição do</small></span><span
style="font-size: 11pt;"><small> CSV,
veja <a target="_blank" href="arquivoCSV.html">como
criar uma tabela de
dados no LibreOffice</a>.</small></span></p>
<big><big><br>
</big></big><img src="imagens/tabelaAtualizada/Figura9.jpg" alt="f"
style="background-color: rgb(153, 153, 153); width: 400px; height: 293px;"><br>
<span style="font-weight: bold;">
Figura 8</span>: Upload do arquivo
CSV com os dados.<br>
<br>
<br>
<span style="font-size: 11pt;"><small>
Depois disso, como visto na
<span style="font-weight: bold;">Figura 9</span>,
selecione as colunas que são relevantes para a
definição da variável. No exemplo,
considere como
relevantes as colunas "codigoregiao" e </small></span><span
style="font-size: 11pt;"><small>"pop_total",
como fundamentais para a
utilização d</small></span><span style="font-size: 11pt;"><small>a
variável.</small></span>
<br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><big><big><small><small><span
style="color: rgb(204, 0, 0);"><br>
<img style="width: 200px; height: 417px;" alt="figura9"
src="imagens/tabelaAtualizada/Figura12.jpg"><br>
</span><span style="font-weight: bold;">
Figura 9</span>:
Seleção de colunas e do tipo de
inclusão.<br>
</small></small></big></big></span><br>
Observe que na Figura 9 é necessário informar o
tipo de
inclusão dos dados (opções
"acrescentar" e
"substituir"). Nesse caso, como é a primeira vez que
é
carregado o arquivo, escolha "acrescentar". Para finalizar, clique em
"Concluir envio". Caso a carga seja efetuada com sucesso,
surgirá a imagem vista na <span style="font-weight: bold;">Figura
10</span>, mostrando a quantidade
de
linhas carregadas na base de dados.<br>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><big><big><small><small><br>
<br>
<img style="width: 250px; height: 95px;" alt=""
src="imagens/tabelaAtualizada/Figura11.png"><br>
<span style="font-weight: bold;">
Figura 10:</span>
Finalização do processo de carga dos
dados.<br>
<br>
</small></small></big></big></span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><big><big><small><small>O
vídeo</small></small></big></big></span><span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"><big><big><small><small>
dessa tarefa pode ser acompanhada pelo vídeo tutorial, <a
target="_blank"
href="videos/video_upload_tabela/sandbox/upload_tabela.html">clicando
aqui</a>.<br>
<br>
</small></small></big></big></span><a href="index.html"></a></div>
</div>
<span
style="color: rgb(51, 51, 51); font-family: Verdana,Helvetica,Arial; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;"></span></div>
</div>
</div>
</body>
</html>