Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/08/2006, 17:51
Avatar de Andres95
Andres95
Colaborador
 
Fecha de Ingreso: diciembre-2004
Mensajes: 1.802
Antigüedad: 20 años, 1 mes
Puntos: 38
Código:
USE pubs
GO
SELECT c.*, o.*
FROM Northwind.dbo.Customers AS c INNER JOIN 
   OPENROWSET('Microsoft.Jet.OLEDB.4.0', 
   'c:\NWIND.MDB';'Admin';'', Orders) 
   AS o
   ON c.CustomerID = o.CustomerID 
GO

Última edición por Andres95; 11/08/2006 a las 18:14