This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
< 2015-08-24 11:26:55.137 AMT >ERROR: base backup could not send data, aborting backup | |
< 2015-08-24 11:26:55.137 AMT >FATAL: connection to client lost | |
< 2015-08-24 11:36:23.262 AMT >LOG: database system was interrupted; last known up at 2015-08-24 11:26:55 AMT | |
< 2015-08-24 11:36:23.263 AMT >LOG: creating missing WAL directory "pg_xlog/archive_status" | |
< 2015-08-24 11:36:23.263 AMT >LOG: starting archive recovery | |
< 2015-08-24 11:36:23.348 AMT >LOG: restored log file "000000010000000000000007" from archive | |
< 2015-08-24 11:36:23.353 AMT >LOG: redo starts at 0/70000C8 | |
< 2015-08-24 11:36:23.354 AMT >LOG: consistent recovery state reached at 0/7000230 | |
< 2015-08-24 11:36:23.442 AMT >LOG: restored log file "000000010000000000000008" from archive | |
< 2015-08-24 11:36:23.732 AMT >LOG: restored log file "000000010000000000000009" from archive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Olá Amigos ! | |
Aqui no trabalho temos uma aplicação feita em java que as vezes se torna irresponsivo | |
sendo necessário reiniciar a aplicação. Algumas vezes apenas reiniciar não basta, a aplicação | |
para em algum estágio da inicialização. Quando isso acontece eu verifico no banco se existe | |
algum locks ou ainda alguma transação pendente com: | |
# select * from pg_prepared_xacts | |
Geralmente nada encontro, mas quando reinicio o servidor do postgresql a aplicação java inicializa e volta funcionar normalmente. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if($(this).siblings('input').val() != '') { | |
$(this).siblings('input').val(''); | |
App.Relatorio(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Msg 2627, Level 14, State 1, Line 3 | |
Violation of PRIMARY KEY constraint 'PK_ASSUNTO'. Cannot insert duplicate key in object 'SMARTCLIENTESTF.ASSUNTO'. The duplicate key value is (11818). | |
The statement has been terminated. | |
Msg 2627, Level 14, State 1, Line 4 | |
Violation of PRIMARY KEY constraint 'PK_ASSUNTO'. Cannot insert duplicate key in object 'SMARTCLIENTESTF.ASSUNTO'. The duplicate key value is (11853). | |
The statement has been terminated. | |
Msg 2627, Level 14, State 1, Line 5 | |
Violation of PRIMARY KEY constraint 'PK_ASSUNTO'. Cannot insert duplicate key in object 'SMARTCLIENTESTF.ASSUNTO'. The duplicate key value is (11806). | |
The statement has been terminated. | |
Msg 2627, Level 14, State 1, Line 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This message was created automatically by mail delivery software. | |
A message that you sent could not be delivered to one or more of its | |
recipients. This is a permanent error. The following address(es) failed: | |
[email protected] | |
SMTP error from remote mail server after RCPT TO:<[email protected]>: | |
host aspmx.l.google.com [74.125.137.27]: 550-5.1.1 The email account that you tried to reach does not exist. Please try |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var App = { | |
modulo: 'galeria', | |
tipoDestaque: 'unico', | |
// tipoDestaque: 'varios', | |
delay: null, | |
requisicao: null, | |
pagina_corrente: 0, | |
Init: function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
123.jpg | |
122.jpg | |
121.jpg | |
120.jpg | |
11.jpg | |
119.jpg | |
118.jpg | |
117.jpg | |
116.jpg | |
115.jpg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function DataGarantiaPopup() { | |
/* retorna data de garantia do bem escolhido */ | |
$('select[name=bem_cod]').change(function(){ | |
var bem_cod = $(this).val(); | |
var bem = $(this).find('option:selected').text(); | |
var posicao = $(this).find('option:selected').index(); | |
if(posicao > 0) { | |
$('div[class=modulo-painel-titulo-esquerdo]').text(bem); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
IFS=" | |
" | |
incremento=0; | |
echo "Inserindo dados na tabela migracao_pc..."; | |
for i in $(cat patrimonio_pc.csv) | |
do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in $(cat bedi_dados.txt) | |
do | |
if [ $i -gt 5000 ] | |
then | |
echo $i "<-- manda email"; | |
#mail bla bla bla bla | |
else |