Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Sybase Central を使用すると、統合データベース内の同期スクリプトを調べることができます。
custdb.sql ファイルは、ml_add_connection_script または ml_add_table_script を呼び出して、各同期スクリプトを統合データベースに追加します。
custdb.sql の次の行は、ULProduct テーブル用のテーブルレベルのスクリプトを追加します。このスクリプトは、download_cursor イベントで実行されます。スクリプトには、SELECT 文が 1 つあります。
call ml_add_table_script( 'CustDB 12.0', 'ULProduct', 'download_cursor', 'SELECT prod_id, price, prod_name FROM ULProduct' ) go