نتایج جستجو برای: dental stones

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

Journal: :British medical journal 1983
I A Bouchier

During the decade in which the medical dissolution of gall stones has become feasible several drugs have been introduced but only the two listed in the British National Formulary have been intensively evaluated and shown to be effective--chenodeoxycholic acid and the closely allied ursodeoxycholic acid. The dissolution of gall stones was last reviewed in the "BMF" in 1976, at which stage experi...

Journal: :Cureus 2023

Aim: To investigate the effect of different types nanoparticles on compressive strength (CS) and diametral tensile (DTS) type IV dental stones. Materials methods: A total 100 specimens were made from mould for all five groups. Four commercially available (aluminium oxide (Al2O3), silicon dioxide (SiO2), zinc (ZnO), zirconium (ZrO2)) used in this study a concentration 10%. CS DTS tests performed...

Journal: :ACP journal club 2002
Gary Curhan

Patients 120 men (mean age 45 y) who had idiopathic hypercalciuria (urinary calcium excretion > 300 mg/d) on an unrestricted diet, recurrent formation of calcium oxalate stones ( ≥ 2 colic episodes with expulsion of stones or radiographic evidence of retained stones), no known condition commonly associated with calcium nephrolithiasis, no previous visit to a stone disease centre, and no current...

Journal: :BMJ 1989
D P Markby

there have been only isolated reports of gall stones occurring during octreotide treatment.' Gall bladder contraction and cholecystokinin secretion in response to food are almost abolished by its administration4 and may contribute to stone formation. The high incidence of gall stones might have been due to the higher doses of the drug which we used. None of our patients had symptoms from the ga...

Journal: :The Medical journal of Malaysia 1989
G McAll L K Ghee R Edward

Bladder stones in men are thought to be almost exclusively due to outflow obstruction. We studied the incidence of operations for urinary outflow obstruction and bladder stone to establish the relationship between these two conditions in Kelantan. In only 48 (31%) of 154 men undergoing removal of bladder stones was a procedure for outflow obstruction performed. Thus the remaining 69% had no cli...

Journal: :Eastern Mediterranean health journal = La revue de sante de la Mediterranee orientale = al-Majallah al-sihhiyah li-sharq al-mutawassit 2006
D S Qaader S Y Yousif L K Mahdi

Epidemiology and pathogenesis in urinary stones diagnosed in 184 patients were studied. Mean age was 38.3 years. Male to female ratio was 2.5:1. Stones were predominantly of mixed type: calcium oxalate was the commonest compound. Anatomical distribution of urinary stones was 67.4% renal, 12.5% ureteric and 14.6% bladder. Recurrence rate following previous surgical removal was 15.0%. Bacteria we...

2012
Johanna Laukkarinen Juhani Sand Isto Nordback

For decades, one well-known risk factor for the development of gallbladder stones has been hypothyroidism. Recent studies have interestingly reported that the risk in particular for common bile duct (CBD) stones increases in clinical and subclinical hypothyroidism. There are multiple factors that may contribute to the formation and/or accumulation of CBD stones in hypothyroid patients, includin...

Journal: :Nihon Hinyokika Gakkai zasshi. The japanese journal of urology 1991
S Kubo T Arakawa H Nakajo K Nomura H Ishida A Irie S So S Rokkaku M Iwamura I Kasai

Thirty patients (16 men and 14 women) with cystine urinary stones were treated by extracorporeal shock wave lithotripsy (Dormer HM-3) from December 1984 through October 1989. The average patient age was 35.2 years with a range of 14 to 59 years. Seventy per cent of these subjects had had previous open surgical operations for stones. The cases consisted of 7 ureteral stones and 37 renal stones, ...

Journal: :Archives of surgery 2002
Kazuhisa Uchiyama Hironobu Onishi Masaji Tani Hiroyuki Kinoshita Masaki Ueno Hiroki Yamaue

HYPOTHESIS Because of its complicated clinicopathologic features, hepatolithiasis is difficult to treat, and there is no established method of treating patients with intrahepatic stones. DESIGN Retrospective case-control study. SETTING Second Department of Surgery, Wakayama Medical University, School of Medicine, Wakayama, Japan (January 1, 1971-December 31, 2000). PATIENTS Eighty-nine pa...

2012
Eun Kwang Choi Glen A. Lehman

Pancreatic duct stones are a common complication during the natural course of chronic pancreatitis and often contribute to additional pain and pancreatitis. Abdominal pain, one of the major symptoms of chronic pancreatitis, is believed to be caused in part by obstruction of the pancreatic duct system (by stones or strictures) resulting in increasing intraductal pressure and parenchymal ischemia...

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

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

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"; } -->