Marshall’s Weblog

Embiggen Your Mind

Marshall’s Weblog header image 4

Entries from March 2004

The Real World

March 31st, 2004 · No Comments

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”.

[Read more →]

Tags: General

Everlasting Book Of Names

March 31st, 2004 · No Comments

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/

[Read more →]

Tags: General

Some Interesting or Informative Articles

March 10th, 2004 · No Comments

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 to 2000 or higher

[Read more →]

Tags: Programming

Restoring a SQL Server from a backup file

March 5th, 2004 · No Comments

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’ TO ‘D:\Test\dbase.mdf’,
MOVE ‘dbase_logTO ‘D:\Test\dbase.ldf’
Where dbase and [...]

[Read more →]

Tags: Programming