Describe table structure with MS SQL Server

This is the second in a series of three posts about using the sp_tables, sp_columns and sp_stored_procedures stored procedures with Microsoft SQL Server databases. This post is about sp_columns which is used to describe the table structure of a SQL Server table. The simplest way to use sp_columns to show the columns and related information …

Read more

Disable the MySQL query cache without restarting MySQL

The MySQL query cache enables caching of queries which, in theory, should speed querying the database up. It’s possible to disable the MySQL query cache without restarting the server, although you also need to edit the configuration file to make the changes stick on restart.