File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 8686 /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'YourStrong@Passw0rd' -Q "CREATE DATABASE [Whatever];"
8787 - name : Create Oracle user
8888 run : |
89- sql test/test@localhost/FREEPDB1 @.github/workflows/sql/oracle.sql
89+ sql test/test@localhost/FREEPDB1 <<EOF
90+ WHENEVER SQLERROR EXIT SQL.SQLCODE
91+ SET ECHO ON
92+ SET FEEDBACK ON
93+ SET SERVEROUTPUT ON
94+ @.github/workflows/sql/oracle.sql
95+ EXIT;
96+ EOF
97+
9098 - name : Restore dependencies
9199 run : |
92100 dotnet restore Migrator.slnx
Original file line number Diff line number Diff line change 1+ WHENEVER SQLERROR EXIT SQL .SQLCODE
2+
13alter session set container = freepdb1;
24create user k identified by k;
35grant
@@ -13,4 +15,6 @@ grant resource to k with admin option;
1315grant connect to k with admin option;
1416grant
1517 unlimited tablespace
16- to k with admin option;
18+ to k with admin option;
19+
20+ exit;
You can’t perform that action at this time.
0 commit comments