現在、postgres 8.4にbyteaとして保存されているファイルがいくつかあります。ファイルタイプは.doc、.odt、.pdf、.txtなどです。
バックアップを行う必要があるため、Postgresに保存されているすべてのファイルをダウンロードする方法を知っていてもかまいません。 bytea形式ではなく、元のファイル形式でそれらが必要です。
ありがとう!
これを試して:
COPY (SELECT yourbyteacolumn FROM yourtable WHERE <add your clauses here> ...) TO 'youroutputfile' (FORMAT binary)
ダウンロードするデータが多い場合は、最初に行を取得してから、各行を繰り返し処理してbyteaフィールドをファイルに書き込むことができます。
$resource = pg_connect('Host=localhost port=5432 dbname=website user=super password=************');
// grab all the user IDs
$userResponse = pg_query('select distinct(r.id) from resource r
join connection c on r.id = c.resource_id_from
join resource rfile on c.resource_id_to = rfile.id and rfile.resource_type_id = 10
join file f on rfile.id = f.resource_id
join file_type ft on f.file_type_id = ft.id
where r.resource_type_id = 38');
// need to work through one by one to handle data
while($user = pg_fetch_array($userResponse)){
$user_id = $user['id'];
$query = 'select r.id, f.data, rfile.resource_type_id, ft.extension from resource r
join connection c on r.id = c.resource_id_from
join resource rfile on c.resource_id_to = rfile.id and rfile.resource_type_id = 10
join file f on rfile.id = f.resource_id
join file_type ft on f.file_type_id = ft.id
where r.resource_type_id = 38 and r.id = ' . $user_id;
$fileResponse = pg_query($query);
$fileData = pg_fetch_array($fileResponse);
$data = pg_unescape_bytea($fileData['data']);
$extension = $fileData['extension'];
$fileId = $fileData['id'];
$filename = $fileId . '.' . $extension;
$fileHandle = fopen($filename, 'w');
fwrite($fileHandle, $data);
fclose($fileHandle);
}
DO $$
DECLARE
l_lob_id OID;
r record; BEGIN
for r in
select data, filename from bytea_table
LOOP
l_lob_id:=lo_from_bytea(0,r.data);
PERFORM lo_export(l_lob_id,'/home/...'||r.filename);
PERFORM lo_unlink(l_lob_id);
END LOOP;
END; $$
ベストは私が知っている、bytea to fileはアプリレベルで実行する必要があります。
(9.1は、ファイルシステムデータラッパーのcontribでこれを変更する可能性があります。lo_export関数もありますが、ここでは適用されません。)
これが私が思いつくことができる最も簡単なものです:
psql -qAt "select encode(file,'base64') from files limit 1" | base64 -d
-qAt
は、出力のフォーマットを削除するため重要です。これらのオプションは、psql
シェル内でも使用できます。