forked from tranSMART-Foundation/transmart-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sanofi RC2 dumped from oracle, tables and sequences ported to postgres
- Loading branch information
1 parent
03f5d2a
commit 4effd7f
Showing
696 changed files
with
7,256 additions
and
2,102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/csh -f | ||
|
||
set table = $argv[1]; | ||
set ok = 1; | ||
set masterdir="/data/scratch/git-london/transmart-data"; | ||
|
||
if (! -e ddl/postgres/$table.sql) then | ||
echo "ddl/postgres/$table.sql not found" | ||
set ok = 0; | ||
endif | ||
if (! -e $masterdir/ddl/postgres/$table.sql) then | ||
echo "$masterdir/ddl/postges/$table.sql not found" | ||
set ok = 0; | ||
endif | ||
|
||
if(! $ok) then | ||
exit | ||
endif | ||
|
||
diff ddl/postgres/$table.sql $masterdir/ddl/postgres/$table.sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.