# Installation with ACS

From the ACS **Run SQL script** you can simply paste the following SQL code and run it.

replace the name release.savf with the version you need ie noxDbUtf8-2025-12-15.savf 

It will pull the savefile and create a library NOXDBUTF8.  


```sql
begin
    declare buf blob(2G);
    set buf =  systools.httpgetblob (
        url => 'https://webfiles.system-method.com/download/noxDbUtf8/release.savf' ,
        httpheader => null
    );

    call qsys2.ifs_write_binary(
        path_name => '/tmp/release.savf',
        line => buf ,
        overwrite => 'REPLACE'
    );

    begin 
        declare continue handler for sqlstate '38501' begin end;
        call qcmdexc ('CRTLIB noxdbutf8');
    end;
    call qcmdexc ('CPYFRMSTMF FROMSTMF(''/tmp/release.savf'') TOMBR(''/QSYS.lib/NOXDBUTF8.lib/RELEASE.FILE'') MBROPT(*REPLACE) CVTDTA(*NONE)');
    call qcmdexc ('RSTLIB SAVLIB(NOXDBUTF8) DEV(*SAVF) SAVF(NOXDBUTF8/RELEASE)');

end;
```