@Stoic Joker:
It is indeed a dangerous proposition. If the database remains working, moving data around by shrinking may be the step that saved your database..or it will create more severe problems. I would try that last.
Now I must say that I am not too accustomed wit SQL Server, Oracle is what I know. But the lessons learned in my encounters with that fickle beast apply to SQL Server as well.
@questforfla:
To create a full dump from your database, it shouldn't take much more than:
USE <insert database name>;
GO
BACKUP DATABASE <insert database name>
TO DISK = 'Z:\Bak\SQLServer\<insert database name>.bak'
WITH FORMAT,
MEDIANAME = 'SQLServerBackup',
NAME = 'Full Backup of <insert database name>';
GO
Creating another database server with SQL Server Express on a different computer should be easy. The defaults provided by the installer are sufficient for a database like yours. You will encounter problems restoring a database on the same server, so make sure you use a different server on a different computer!
Uploading the dump you created to the new server is also not difficult:
RESTORE DATABASE [NewDatabaseName]
FROM DISK = N'Z:\Bak\SQLServer\<insert database name>.bak'
WITH FILE = 1, NOUNLOAD, STATS = 10
This can also be done with the SQL Server Management Suite (SSMS for short), an option enabled by default in the installer. It was in the SQL Server 2012 software I used to setup my server, and that is the only SQL Server I have experience with. Even if the old DB server doesn't have it installed, you can install it on the new server and use SSMS to connect to the old server. If you know the passwords for the old server, you will be amazed how easy it is to export the old database and import it into the new database. SSMS is a very nice tool and easier to work with than what Oracle delivers with their server software. I can tell you that much.
SSMS (for SQL Server 2012 at least) comes with functionality to compare databases. The Oracle software also comes with such functionality and that software doesn't care if the compared databases are not on the same db server. I assume it is the same with SSMS. Even if that is not the case, there are 3rd party tools or scripts that will.
You could try the TOAD for SQL Server server (available in free/commercial versions). TOAD is much more powerful than the Oracle software and the TOAD for SQL Server software should be in the same league.
Dumping and restoring your database is the first option I would try. Mainly because that is the easiest (especially if there is a redundant SQL Server running in your environment).
Cloning the hard disk from the old server is the second option. But assuming that this server remained active during this thread, it should be first option by now.
After that I would try shrinking the database and more or less hope if that works out.
Next time your company negotiates for a new license from the company that delivers the software you work with, get the most angry person that works there and make him/her curse them to hell about holding your data hostage, especially in cases with imminent hardware failure. And seriously look for other vendors of similar software, and let the current vendors know your company is doing so.