<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%> <% var rs_test = Server.CreateObject("ADODB.Recordset"); rs_test.ActiveConnection = MM_cn_forum_STRING; rs_test.Source = "SELECT * FROM FORUM_CATEGORY"; rs_test.CursorType = 0; rs_test.CursorLocation = 2; rs_test.LockType = 1; rs_test.Open(); var rs_test_numRows = 0; %> <% // *** Recordset Stats, Move To Record, and Go To Record: declare stats variables // set the record count var rs_test_total = rs_test.RecordCount; // set the number of rows displayed on this page if (rs_test_numRows < 0) { // if repeat region set to all records rs_test_numRows = rs_test_total; } else if (rs_test_numRows == 0) { // if no repeat regions rs_test_numRows = 1; } // set the first and last displayed record var rs_test_first = 1; var rs_test_last = rs_test_first + rs_test_numRows - 1; // if we have the correct record count, check the other stats if (rs_test_total != -1) { rs_test_numRows = Math.min(rs_test_numRows, rs_test_total); rs_test_first = Math.min(rs_test_first, rs_test_total); rs_test_last = Math.min(rs_test_last, rs_test_total); } %> <% // *** Recordset Stats: if we don't know the record count, manually count them if (rs_test_total == -1) { // count the total records by iterating through the recordset for (rs_test_total=0; !rs_test.EOF; rs_test.MoveNext()) { rs_test_total++; } // reset the cursor to the beginning if (rs_test.CursorType > 0) { if (!rs_test.BOF) rs_test.MoveFirst(); } else { rs_test.Requery(); } // set the number of rows displayed on this page if (rs_test_numRows < 0 || rs_test_numRows > rs_test_total) { rs_test_numRows = rs_test_total; } // set the first and last displayed record rs_test_last = Math.min(rs_test_first + rs_test_numRows - 1, rs_test_total); rs_test_first = Math.min(rs_test_first, rs_test_total); } %> IMQS.ie
IMQS.ie home
home
public info
profile & objectives
the industry
environment
news, events, talks
schoolzone
photo gallery
careers + training
membership info
links + resources
contact us

member services

members only
> login <
articles archive
imqs.ie email
editors only
> login <
control panel
Industry Overview
 Mining << previous | next >>
 Current Status, Statistics and Prospects
Ireland currently has three underground zinc-lead mines in production and is the largest producer of lead concentrates. Ireland now ranks 7th largest producer of Zinc concentrates in the world and 12th largest producer of lead concentrates. The three base metal mines are, in order of discovery, Navan, Galmoy and Lisheen.

Navan mine started production in 1977 and is the largest Zinc mine in Europe. Galmoy and Lisheen started production more recently in 1997 and 1998 respectively.


Mining of gypsum has been carried out continuously at Kingscourt since 1936 both underground and in open pits. Current production is in the order of 500,000tpa and the gypsum is used locally to manufacture plasterboard.

Rock salt is being worked at Kilroot, Northern Ireland by underground dry mining of five distinct beds of salt at varying thickness from 6m to 20m. Processed rock salt is used for winter de-icing of roads in Ireland, the UK and USA. The mine has production capabilities of up to half a million tonnes per annum of rock salt. 

Irelands only commercial gold mine is operated by Galantas Gold Corporation at Cavanacaw, Omagh, Co. Tyrone.

The mining sector has not escaped turmoil in 2008. Ireland produces 4% of the world’s zinc; however zinc prices, like many other commodities, are depressed. The Galmoy mine in Co. Kilkenny will close in May 2009, while Tara in Co Meath and Lisheen in Co. Tipperary face difficult trading conditions.

contd. >>
related

IMQS sponsors
Index
1. Introduction
2. Mining
3. Quarrying

IMQS news
latest headlines
© Irish Mining and Quarrying Society 2002-2007 | developed by silvermoonmedia.com
IMQS.ie home <% rs_test.Close(); %>