The Real World
by Marshall on March 31, 2004
I read this a long time ago and it took me forever to find the link to it again. Sometimes this game can be very frustrating but it is still the best game out there to “play”.
Everlasting Book Of Names
by Marshall on March 31, 2004
Back from vacation in lovely New Orleans. Pictures and stuff will be up once I get off of my lazy ass. Cool site for comming up with names for characters: http://ebon.pyorre.net/
Some Interesting or Informative Articles
by Marshall on March 10, 2004
Here are a few articles I have lying aroung the office. There is an article from InformIT.com which describes Framework Patterns: Exception Handling, Logging, and Tracing Here is another useful one if you are upgrading your Windows domain from NT4 (…)
Restoring a SQL Server from a backup file
by Marshall on March 5, 2004
To restore a SQL Server database from backup file only, do the following RESTORE FILELISTONLY FROM DISK=’path of .BAK’ Then, do the following RESTORE DATABASE databasename FROM DISK = ‘C:\Program Files\Microsoft SQL Server\BACKUP\dbasebackup.BAK’ WITH STATS = 10, REPLACE, MOVE ‘dbase’ (…)