Ver Mensaje Individual
  #6 (permalink)  
Antiguo 24/10/2006, 13:50
Avatar de Andres95
Andres95
Colaborador
 
Fecha de Ingreso: diciembre-2004
Mensajes: 1.802
Antigüedad: 20 años, 1 mes
Puntos: 38
Código:
select name as [Foreing Key] from dbo.sysobjects where OBJECTPROPERTY(id, N'IsForeignKey') = 1 and parent_obj = object_id(N'<MiTabla>') 
select name as [Primary Key] from dbo.sysobjects where OBJECTPROPERTY(id, N'IsPrimaryKey') = 1 and parent_obj = object_id(N'<MiTabla>')
solo sustituye <Mitabla> por la tabla que deseas consultar
__________________
La sencillez y naturalidad son el supremo y último fin de la cultura...
--
MCTS : SQL Server 2008, .NET Framework 3.5, ASP.NET Applications.

Última edición por Andres95; 24/10/2006 a las 13:57