Changes between Version 19 and Version 20 of MolgenisFaq


Ignore:
Timestamp:
2010-01-22T16:57:51+01:00 (14 years ago)
Author:
Morris Swertz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MolgenisFaq

    v19 v20  
    4848The Infobright open source version can only be populated using their own data loader. It doesn't support INSERT, UPDATE, DELETE so in practice it is useless for anything else than one-off data warehousing. Then you need to pay top dollar.
    4949
     50== How to remove *.svn directories ==
     51
     52Use the following bat script in windows
     53
     54{{{
     55for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do (
     56rd /s /q "%%i"
     57)
     58}}}
     59