Bill McEvoy
  

Bill McEvoy is Master Chef/DBA for the Cooking with SQL Web site. He's been a DBA since SQL Server 4.2, and he specializes in batch processing and performance tuning.
Email address: bill@cookingwithsql.com
Web site: http://cookingwithsql.com

17 results found for Bill McEvoy, displaying items 1 - 17

T-SQL 101, Lesson 5

Understand the differences between inner, outer, and cross joins before you use them in your queries.

SQL Server Magazine

T-SQL 101, Lesson 4 This article is only available to subscribers.  Sign up now and get instant access!

Thanks to the GROUP BY clause, you can write SELECT queries that produce detailed reports.

SQL Server Magazine

T-SQL 101, Lesson 3 This article is only available to subscribers.  Sign up now and get instant access!

SELECT queries aren't just for retrieving data. You can also summarize that data by incorporating COUNT, MIN, MAX, AVG, and SUM functions into SELECT queries.

SQL Server Magazine

Take the Drudgery Out of Making Sure Your Databases Are Being Backed Up Properly This article is only available to registered users.  Sign up now and get instant access!

Ensuring that databases are being backed up properly is an important but time-consuming task, especially for DBAs who manage multiple servers and databases. The sp_ShowBackups stored procedure makes this task quick and easy.

SQL Server Magazine

2 Stored Procedures to Tune Your Indexes This article is only available to registered users.  Sign up now and get instant access!

If you have to perform a full index analysis, here are two T-SQL stored procedures you can use to get detailed information about the indexes in a single table or an entire database.

SQL Server Magazine

T-SQL101, Lesson 2 This article is only available to subscribers.  Sign up now and get instant access!

Using a database named MyDB, a table named MyTable, and some dummy tables, you can learn how to create T-SQL queries that insert new data, update existing data, and delete old data.

SQL Server Magazine

2 Stored Procedures to Tune Your Indexes

Windows IT Pro

T-SQL 101, Lesson 1 This article is only available to subscribers.  Sign up now and get instant access!

Whether you are new to T-SQL or you just want to brush up on the basics, you'll want to read and save this guide that walks you through how to write SELECT statements. Learn how to order and rename columns and how to filter and sort results.

SQL Server Magazine

T-SQL 101, Lesson 1

Windows IT Pro

Stored Procedure Documents Scheduled Jobs in SQL Server

Using SQL Server Management Studio (SSMS) to document job schedules involves a lot of mouse-clicking and cutting and pasting. You can avoid all that hassle by using the sp_ShowJobSchedules stored procedure.

SQL Server Magazine

Take Advantage of Osql and Bcp Without Having to Remember All Their Command-Line Options

Here's a stored procedure that consolidates the basic functions of osql and bcp. Switching between these utilities' output is simply a matter of changing the value of an input parameter.

SQL Server Magazine

Searching the Web for SQL Topics? Give SQL Hunter a Try

Here's a search engine that targets SQL-related Web sites, which means you can enter fewer parameters when conducting searches for SQL material.

SQL Server Magazine

A Quick and Easy Way to View Errorlog Files This article is only available to registered users.  Sign up now and get instant access!

Using sp_ShowErrors to view SQL Server errorlog files is time-saving alternative to manually reviewing them in Enterprise Manager.

SQL Server Magazine

Retrieve Triggers from the SQL Command Prompt

The sp_ListTriggers stored procedure lets you list all the triggers in the current database or the triggers in a specific table.

SQL Server Magazine

Prove That the Database Isn't to Blame

If you've ever had users call to tell you that a SQL Server database is slow, you'll likely find sp_Now a handy tool. This stored procedure determines what processes are currently executing and consuming resources on a database server.

SQL Server Magazine

Pull Out Text from HTML Code

The ScrapeText function accepts an HTML string as input and returns a plain text string by simply skipping over any text contained within the tags < and > tags.

SQL Server Magazine

Stored Procedure Searches for Strings This article is only available to registered users.  Sign up now and get instant access!

Here's a stored procedure that searches the syscomments, sysobjects, syscolumns system tables in the local database for any reference to the string you specify.

SQL Server Magazine

Add these Headlines to your Website