Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to access SQL Server 2000 tables

Status
Not open for further replies.

dcintern

Programmer
Jun 3, 2006
2
US
Hello,

I am trying to write a java program that will connect to a SQL Server DB, run some queries, pull some data and try to find some trends in the data.

The problem is that I have a copy of the Database, but I don't have SQL Server. I have been given a backup copy of the database though (SQL Server 2000). I know that in addition to the JDBC driver for SQL Server 2000 I will need something else to be able to access the DB. They have stopped selling SQL Server 2000, also the software tends to be a little expensive.

Is there anything else that I can use that will allow me the functionality og being able to run queries and pull data from the DB using JDBC? Will installing MSDE allow me to do that? Or is there someother software that will allow me to do that? Or do I have no other option excelt installing SQL Server 2000?

Any help is greatly appreciated.

Thanks
 
MSDE has a 2 gigabyte limit. If your database is smaller than that, you could install MSDE and attach the database. To download MSDE:


MSDE does not include any GUI interface tools. Instead, you could download SQL Server Express 2005. You can attach a SQL 2000 database to it. This does include GUI tools (SQL Server Management Studio Express) to attach the database.

You can download it here:



-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top