Skip to Content
Inside Microsoft® SQL Server™ 2005
book

Inside Microsoft® SQL Server™ 2005

by Itzik Ben-Gan, Lubor Kollar, Dejan Sarka
May 2006
Intermediate to advanced
536 pages
15h 13m
English
Microsoft Press
Content preview from Inside Microsoft® SQL Server™ 2005

EXEC

The EXEC command (short for EXECUTE) has two uses: one is to execute a stored procedure, and the other is to execute a dynamic batch. The latter gets a character string within parentheses as an input and invokes the code within that character string. In the following section, I’ll describe EXEC(<string>) and some interesting enhancements introduced in SQL Server 2005 that increase its functionality.

A Simple EXEC Example

As a simple example of using EXEC, the following code returns the count of rows from a given variable table name:

SET NOCOUNT ON; USE Northwind; DECLARE @schemaname AS NVARCHAR(128), @tablename AS NVARCHAR(128); SET @schemaname = N'dbo'; SET @tablename = N'Orders'; DECLARE @objectname AS NVARCHAR(517); SET @objectname = QUOTENAME(@schemaname) ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Microsoft® SQL Server® 2008 For Dummies®

Microsoft® SQL Server® 2008 For Dummies®

Mike Chapple
Microsoft® SQL Server® 2008 Bible

Microsoft® SQL Server® 2008 Bible

Paul Nielsen, Mike White, Uttam Parui
A Developer’s Guide to SQL Server 2005

A Developer’s Guide to SQL Server 2005

Bob Beauchemin, Dan Sullivan
Microsoft® SQL Server® 2008 Internals

Microsoft® SQL Server® 2008 Internals

Paul Randal Kalen Delaney Kimberly Tripp, and Conor Cunningham

Publisher Resources

ISBN: 0735621977Supplemental ContentErrata