Nelson
9/6/2017 - 2:03 PM

S3 Integration bucket - Configuration

select config_name, config_value
from master.config
where config_name in (
  'OOSReport:ReportingBucket',
  'TransferOut:AssignmentInfoBucket', 
  'SimIntegration:SimBucket'
);
begin;

set local creativesystems.logged_user to 'system';
set search_path to master;

update config 
set config_value='-integrations' 
where config_name in (
  'OOSReport:ReportingBucket',
  'TransferOut:AssignmentInfoBucket', 
  'SimIntegration:SimBucket'
);


commit;