Month: November 2008

Access

Blog History

Distribution Specific Documentation

Google - to find the best and worst solution, but which is which? Generally when you attempt something on Linux you will Google and then try and filter through pages till you find the `best' solution. But what gaurantee do you have that the information is written by...

read more

Databases in MSDE

Login using osql Windows Auth osql -E SQL Auth osql -U sa List databases 1>sp_databases 2>go To list the tables in a database 1>use dbname 2>go 1>sp_tables 2>go To show the table structure 1>use dbname 2>go 1>sp_help table_name 2>go Attach a DB exec sp_attach_db...

read more