
go

create database  epi
ON 
( NAME = epi,
   FILENAME = 'c:\epi\epi.m '
    )
LOG ON
( NAME = 'epi_log',
   FILENAME = 'c:\epi\epi.ldf' )
GO

restore database EPI from disk ='c:\epi\SauvegardeEPI.dat'
with replace
, move 'epi2003SQL_dat'  to 'c:\epi\epi.mdf',
move 'epi2003SQL_log'  to 'c:\epi\epi.ldf'
go

EXEC sp_revokelogin 'BUILTIN\Administrators'
GO

