We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e361984 commit 0d1ae00Copy full SHA for 0d1ae00
.github/actions/database-migration-image/entry.sh
@@ -4,7 +4,7 @@ cat > /tmp/create-app-user.sql <<EOF
4
declare
5
user_count integer;
6
begin
7
- select count(*) into user_count from dba_users where username='&1';
+ select count(*) into user_count from dba_users where upper(username)=upper('&1');
8
if (user_count = 0) then
9
execute immediate 'create user &1 identified by "&2"';
10
else
0 commit comments