Jump Start: Querying Database Tables and Views
      by Michael Otey
Sometimes your code needs to do more than just query data from the database. For example, you might want to query the structure and objects in the database. For this type of query, a basic approach is to query the available tables and views in your database. For example, to list the tables in the AdventureWorks database, use SQL Server Query Editor to execute the following code:
USE adventureworks
GO
SELECT * FROM sys.tables
GO
Sys.tables is a system database that stores the names of all the tables in the current database. Likewise, if you want a list of all the views in a database, use the sys.views system table by executing the following code:
USE adventureworks
GO
SELECT * FROM sys.views
GO
********* Watch: Polyserve ***************
How to Build a Superior Windows File Serving Environment
      As the number of file servers and associated storage has grown rapidly, IT organizations have faced multiple challenges related to manageability, scalability, fit within existing infrastructure, availability, utilization and cost. In this free white paper, get the tools you need to provide a scalable, highly available CIFS file service using inexpensive, industry-standard servers that can be added incrementally as demands require, while retaining the management simplicity of a single server and a single pool of exported file systems.
      http://www.windowsitpro.com/whitepapers/polyserve/fileserving/index.cfm?code=SQLExpWatch1016
*************************************************
Check It Out: MSDE and Vista
      by Michael Otey, mikeo@windowsitpro.com
If you're currently running Microsoft SQL Server Desktop Engine (MSDE) for some of your applications and you're considering switching to Windows Vista, an upgrade for MSDE is definitely in your future. But before you upgrade, you should definitely check out the Microsoft white paper "Upgrading from MSDE 2000 to SQL Server 2005 Express Edition" at
      https://www.microsoft.com/sql/editions/express/upgrade.mspx
********* HOT SPOT: Intercerve ********************************
sqlSentry’s advanced monitoring and reporting delivers far-reaching insight into schedule-related performance issues, enabling you to optimize even the busiest schedule. Easily track events running across multiple servers--Replication, DTS, etc. Download a free trial now!
      http://www.sqlsentry.net/optimizing-sql-server-productivity-try-it-now5.asp?ad=SSMagUp_2006_10_16_B
3. ==== Resources and Events