Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/07/2010, 08:07
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 18 años, 8 meses
Puntos: 39
Respuesta: Insertar + de 100.000 registros en poco tiempo

Prueba con OPENROWSET. Aqui un ejemplo:
Código SQL:
Ver original
  1. USE pubs
  2. GO
  3. INSERT INTO tutabla
  4. SELECT a.*
  5. FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
  6.    'c:\MSOffice\Access\Samples\northwind.mdb';'admin';'mypwd', Orders)
  7.    AS a
  8. GO
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.