Skip to content

Instantly share code, notes, and snippets.

Created October 27, 2011 20:20
Show Gist options
  • Save anonymous/1320756 to your computer and use it in GitHub Desktop.
Save anonymous/1320756 to your computer and use it in GitHub Desktop.
butch test
declare
dbversion number;
begin
select to_number(substr(version,1,instr(version, '.')-1)) version into dbversion from v$instance;
if dbversion >= 11 then
DBMS_NETWORK_ACL_ADMIN.create_acl(
acl=>'cimx.xml',
description=>'CIMx Standard ACL',
principal=>'CIMXDBIN',
is_grant=>TRUE,
privilege=>'connect');
end if;
end;
/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment