aaronfeng / schema_runner

A tool written in F# that allows one to run sql scripts in sequence. Supports Oracle and SQLServer. Current implementation is not complete, but it should be failrly easy to finish it.

This URL has Read+Write access

schema_runner / SchemaInfo.xml
100644 14 lines (12 sloc) 0.491 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Configuration>
  <IncludeDirectories>
    <Directory Name='C:\TEMP\Current\'/>
    <Directory Name='C:\TEMP\Archive\'/>
  </IncludeDirectories>
 
  <DatabaseGroup Name='sql'>
    <Database Name='Test1' Server='localhost' Type='MsSql' User='sa' Password='sa' SchemaTable='SchemaInfo'/>
  </DatabaseGroup>
  
  <DatabaseGroup Name='oracle'>
    <Database Name='Test1' Server='localhost' Type='Oracle' User='Test1' Password='test1' SchemaTable='SchemaInfo'/>
  </DatabaseGroup>
</Configuration>