Sybase IQデータバックアップ
1518 ワード
詳細
バックアップにはtemp_を使用できます.extract_name 1の構文バックアップですが、タイミングタスクを使用すると次のエラーが発生します.
Handler for event 'test_ev' caused SQLSTATE '09W03'Result set not permitted in 'test_ev'
解決策
バックアップ文の動的実行
バックアップにはtemp_を使用できます.extract_name 1の構文バックアップですが、タイミングタスクを使用すると次のエラーが発生します.
Handler for event 'test_ev' caused SQLSTATE '09W03'Result set not permitted in 'test_ev'
解決策
:
CREATE PROCEDURE proc1()
BEGIN
SET TEMPORARY OPTION Temp_Extract_Column_Delimiter = '|';
SET TEMPORARY OPTION temp_extract_name1 = 'foo.out';
SELECT * FROM iq_table;
SET TEMPORARY OPTION temp_extract_name1 = '';
END;
CREATE EVENT "test_ev" ENABLE HANDLER
BEGIN
SELECT * INTO #tmp FROM proc1();
END;
TRIGGER EVENT test_ev;
バックアップ文の動的実行
if exists(select 1 from sys.sysprocedure where proc_name = 'p_test' and user_name(creator)='bdk') then
drop procedure bdk.p_test
end if;
create procedure bdk.p_test()
on exception resume
begin
declare @sql varchar(1000);
select 1; -- ,
set temporary option Temp_Extract_Column_Delimiter = '|';
set @sql='set temporary option Temp_Extract_Name1 =''/home/backup/abc.bak''';
execute(@sql);
set @sql='select * from table01;';
execute(@sql);
set temporary option Temp_Extract_Name1 = '';
end;
bdk.p_test