Which Oracle table uses a sequence?

前端 未结 5 1190
夕颜
夕颜 2021-01-05 08:17

Having a sequence, I need to find out which table.column gets its values. As far as I know, Oracle doesn\'t keep track of this relationship. So, looking up for the sequence

5条回答
  •  無奈伤痛
    2021-01-05 08:37

    Use GREP to scan your entire source for "myseq.NextVal" - myseq being the one you're looking for....

提交回复
热议问题