Can you afford to loose the datafile? on such case what you can do is:
Code:
   Mount the instance

    select * from v$recover_file;

    alter database datafile 'path/filename' offline drop;

    alter database open;
Sam