Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Can sp_pkeys be used as a function in T-SQL?
Message
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Can sp_pkeys be used as a function in T-SQL?
Divers
Thread ID:
00796849
Message ID:
00796849
Vues:
150
Hi. I'm attempting to make use of a SP from within a SQL statement. What I would like to return is a table of table names that have a trigger associated as well as the primary key's column name associated with the table. The problem I am having is retrieving the PK for the retrieve tables.

Here's what I have so far, but as you can see with the portion immediately following the sp_pkeys SP, it is incomplete and destined for failure.

SELECT sysobjects.name, sp_pkeys sysobjects.name
FROM sysobjects
WHERE (id IN
(SELECT DISTINCT parent_obj FROM sysobjects WHERE xtype = 'TR'))
ORDER BY name

Any suggestions?

Doug
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform