Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
集計値を含む列を含むVIEWを作成しました(出力をvarchar2データ型に格納します)。varchar2(4000)など、どのレコードが上限を超えているかを確認する方法はありますか?「文字列バッファが小さすぎます」というエラーが原因で、テーブルを作成できませんでした。文字長を超えるレコードがいくつあるかがわかれば、おそらく部分文字列を使おうと思っていました。
ビューを作成しているので。selectステートメントで定義されます
だからあなたはできる
select <columns>,length(column you have to check) from <tableName> group by <columns> having length<column> > 4000;