sql >> Database >  >> RDS >> PostgreSQL

Fout:EXDEV:cross-device link niet toegestaan, hernoem '/tmp/ op Ubuntu 16.04 LTS

Hetzelfde probleem. Tijdelijke oplossing:lees het tijdelijke bestand, schrijf het bestand op een nieuwe locatie en verwijder het tijdelijke bestand:

        // Read the file
        fs.readFile(oldpath, function (err, data) {
            if (err) throw err;
            console.log('File read!');

            // Write the file
            fs.writeFile(newpath, data, function (err) {
                if (err) throw err;
                res.write('File uploaded and moved!');
                res.end();
                console.log('File written!');
            });

            // Delete the file
            fs.unlink(oldpath, function (err) {
                if (err) throw err;
                console.log('File deleted!');
            });
        });


  1. SQL Inner join op geselecteerde instructies

  2. Kan LISTAGG . niet gebruiken

  3. DISTINCT ON in django

  4. Coderingen corrigeren