نتایج جستجو برای: duodenal ulcer perforation

تعداد نتایج: 71261  

2017
Rajat Piplani Samir K Acharya Deepak Bagga

We report a rare case of incomplete congenital duodenal obstruction (Type 1 duodenal atresia) in association with situs inversus totalis presenting with gastric perforation in a neonate. The infantogram was suggestive of perforation with air under diaphragm along with dextrocardia. On exploration, a pin point perforation at fundus near lesser curvature along with situs inversus was noted. Prima...

Journal: :British journal of industrial medicine 1986
A Sonnenberg G S Sonnenberg

The pronounced geographical and temporal variations in gastric and duodenal ulcer suggest that important environmental factors must play a part in their aetiology. To determine the nature of possible factors, the Registrar General's decennial supplement and the vital statistics special reports of the United States Department of Health, Education, and Welfare on occupational mortality were analy...

2013
Ivan Barillaro Veronica Grassi Angelo De Sol Claudio Renzi Giovanni Cochetti Francesco Barillaro Alessia Corsi Alban Cacurri Adolfo Petrina Lucio Cagini Carlo Boselli Roberto Cirocchi Giuseppe Noya

INTRODUCTION The duodenum is the second seat of onset of diverticula after the colon. Duodenal diverticulosis is usually asymptomatic, but duodenal perforation with abscess may occur. CASE PRESENTATION Woman, 83 years old, emergency hospitalised for generalized abdominal pain. On the abdominal tomography in the third portion of the duodenum a herniation and a concomitant full-thickness breach...

Journal: :The Korean journal of gastroenterology = Taehan Sohwagi Hakhoe chi 2011
Hyung Seok Nam Gwang Ha Kim Dong Uk Kim Mun Ki Choi Yang Seon Yi Jong Min Hwang Suk Kim

Endoscopic retrograde biliary drainage (ERBD) is useful for the palliative decompression of biliary obstruction. However, the complications of ERBD include cholangitis, hemorrhage, acute pancreatitis, obstruction of the stent, and duodenal perforation. Pressure necrosis on the duodenal mucosa by the stent may contribute to perforation. Although duodenal perforation following ERBD is very rare c...

Abolghasem Ajami, Ahad Alizadeh, Alireza Rafiei, Amin TalebiBezmin Abadi, Mojtaba Shadman, Vahid Hosseini, Zahra Hosseini-khah ,

Background: Cytotoxin-associated gene A (CagA)-positive strains of Helicobacter pylori are associated with gastroduodenal diseases. Evidences have suggested that the type of H pylori CagA EPIYA motifs may be associated with specific disorders (i.e., gastritis, peptic ulcer, or gastric cancer).  We investigated the prevalence of different EPIYA motifs (A, B, C, or D) in H. pylori strains is...

2014
Ludwig Heusner

.. Objectives: To evaluate the spectrum of non-appendicular perforation peritonitis and their management outcome in a peripheral teaching hospitals. Study design: Retrospective descriptive, Interventional. Setting: Surgical Department Aziz Bhatti Shaheed (Teaching) Hospital Nawaz Sharif Medical College University of Gujrat& Surgical Department Islam Medical College Sialkot. Study period: Februa...

H Jojaji

Prevalence of helicobacter pylori was evaluated by urease test in 513 patients undergoing GI endoscopy, in hospital No1 Kerman university of medical sciences and health services from June 1992 through April 1993. H. Pylori was detected in 56.9℅ of tested samples by urease test. There was no significant correlation with sex, age and cigarette smoking. Prevalence of H.pylori was 16℅ in control gr...

Journal: :Revista do Colegio Brasileiro de Cirurgioes 2012
Jairo Júnior Casali Orli Franzon Nicolau Fernandes Kruel Bruno Duarte Neves

OBJECTIVE To analyze the epidemiological profile of patients with gastroduodenal ulcer perforation and verify if the presence of H. pylori in the peritoneal and intraluminal secretions of these patients can be assessed by rapid urease test. METHODS We conducted a prospective, descriptive, cross-sectional study with data from patients in a hospital at a regional level, in patients with peptic ...

Journal: :Gut 1969
P Cassell

During the last 15 years there has been an evolution in the management of perforated peptic ulcer. The established policy of immediate laparotomy and simple closure of the lesion has been challenged by those advocating either non-operative conservatism (Taylor and Warren, 1956) or, at the other extreme, emergency definitive surgery (Judin, 1937; Cooley, Jordan, Brockman, and DeBakey, 1955; Emme...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->