PASS Board Elections for 2007

By Bill Graziano on 18 July 2007 | 5 Comments | Tags: Conferences


I've been actively involved with PASS for the last four years. I was a volunteer for two years and I've been on the Board for two years. Serving on the Board has been a fantastic experience! I really enjoy the conference and this has given me a way to shape the event in ways I think will benefit the community. Serving on the Board gives you insight into how you put on a conference that expects over 2,000 attendees. It's a great way for technical people to increase their exposure to the financial, marketing or organizational aspects of an organization. If you've enjoyed the conferences but always wanted to change a few things -- now is your chance! Volunteer or run for the Board! Follow the link to PASS Board Elections for 2007...

Discuss this article: 5 Comments so far. Print this Article. This page has been read 1,374 times.

If you like this article you can sign up for our newsletter. We send it out each week that we post a new article. There's an opt-out link at the bottom of each newsletter so it's easy to unsubscribe at any time.

Email Address:

Related Articles

PASS Summit 2008 Speaker List (25 June 2008)

See Kalen Delaney's SQL Server Seminar in Kansas City (9 January 2008)

SQL Saturday 2007 - Free Orlando SQL Server Event in November (25 July 2007)

PASS Schedule is Available (10 July 2007)

Register for PASS 2007 (29 May 2007)

PASS 2007 Call for Speakers Open (5 February 2007)

PASS 2006 Call for Speakers is Open (7 March 2006)

PASS 2005 Call for Presentations Closed (5 January 2005)

Other Recent Forum Posts

Max() question (6 Replies)

SQL Newbie with a join question (3 Replies)

converting time question (4 Replies)

How to fix a table with a single bad record/index (6 Replies)

Update using two tables (3 Replies)

sub data in table (16 Replies)

Sample database (5 Replies)

foreign key problem.. (6 Replies)

Subscribe to SQLTeam.com

Weekly SQL Server newsletter with articles, forum posts, and blog posts via email:

SQLTeam.com Articles via RSS

SQLTeam.com Weblog via RSS

- Advertisement -

- Sponsor's Message -

SQLShare.com Videos

Renaming a Database

You won't do it often, but it's nice to know how, and you're not still using sp_renamedb are you? Join us for a quick look at how to use the alter syntax to change the db name along with a tip on how to quickly disconnect any remaining users from the database.

File Share Subscriptions in Reporting Services

Whether you want to generate PDF invoices for customers or do a daily export that will get processed by one of your vendors, the ability to deliver reports to a file share is a useful and simple feature baked in to Reporting Services. In this lesson Devin will show you how to do it and how to set most of the common options.

File Share Subscriptions in Reporting Services

Whether you want to generate PDF invoices for customers or do a daily export that will get processed by one of your vendors, the ability to deliver reports to a file share is a useful and simple feature baked in to Reporting Services. In this lesson Devin will show you how to do it and how to set most of the common options.

Using DB_ID and DB_Name Functions

Simple but effective, DB_ID and DB_Name give you a concise way to look up the id of a database from a name, or look up the name of a database from an id. There are times when you'll need to write the join to sys.sysdatabases, but when all you need is a quick conversion, these functions get it done.

Using @@Total_Read and @@Total_Write

Ever wondered how many physical reads and writes your SQL service is doing? Yes, it may seek a bit geeky, but it's often useful to have an idea if a server is read or write heavy. @@Total_Read and @@Total_Write show you the number of physical (not logical) reads since the last service restart, and from there we can easily calculate a percentage of reads if needed.