Au_info Ringer, Anne

au_lname au_fname title                             pub_name

-------- -------- ---------------------            ----------

Ringer   Anne     The Gourmet Microwave    Binnet & Hardley

Ringer   Anne     Is Anger the Enemy?                         New Age Books

(2 rows affected, return status = 0)

 

Следующая сохраненная процедура выполняет запросы к системным таблицам. По заданному названию таблицы, процедура выдает название таблицы, названия индексов этой таблицы и идентификаторы индексов.

 

create proc showind @table varchar(30) as

select table_name = sysobjects.name,

index_name = sysindexes.name, index_id = indid