アウトプットができる技術者に

it's a time to take a new step !

2014-01-26から1日間の記事一覧

Sybase ASE 入門 Transaction Log の削除

Transaction Log が Full になると以下のようなエラーメッセージが出る。 The transaction log in database ${dbname} is almost full. Your transaction is being suspended until space is made available in the log.対処法 dump transaction ${dbname} w…

Sybase ASE 入門 PrimaryKeyの作成・削除

Primary Key alter table test_table add PRIMARY KEY (id) これでも可能 sp_primarykey test_table, id 確認方法 # その1 sp_helpconstraint test_table # その2 sp_pkeys test_table primary key の削除 alter talbe で追加した場合は、alter table を使…

Sybase ASE 入門 merge

merge statement では Table a のデータを Table b に マージできます。 BatchJobなどで work table の データを 本番用 Tableにコミットする場合に便利?不安定なので個人的にはあまり推奨できない。 普通にupdate,insertしても結果はほぼ同じなので。Sampl…