created sequence not visible [message #661421] |
Fri, 17 March 2017 02:30  |
 |
oratech10
Messages: 26 Registered: September 2011
|
Junior Member |
|
|
command i executed:
SQL> create sequence CSPROD.DEALID_US777_OF
2 minvalue 10001
3 maxvalue 999999999999999999999999999
4 start with 30881
5 increment by 1
6 cache 20;
Sequence created.
SQL> select * from all_sequences where sequence_name like '%DEALID_US777_OF%';
SEQUENCE_OWNER SEQUENCE_NAME MIN_VALUE MAX_VALUE INCREMENT_BY CYCLE_FLAG ORDER_FLAG CACHE_SIZE LAST_NUMBER
------------------------------ ------------------------------ ---------- ---------- ------------ ---------- ---------- ---------- -----------
|
|
|
|
|
|
|
|
|
|
|
|
Re: created sequence not visible [message #663664 is a reply to message #661421] |
Wed, 14 June 2017 00:47   |
prabhakarkamath
Messages: 15 Registered: February 2006
|
Junior Member |
|
|
Few additional points:
1. You can make use of table DBA_SEQUENCES (you may need admin access)
2. I suspect you are creating it from USER1 and sequence is in USER2. So, check whether you logged in with the user with the same user as owner of the sequence.
Hope this helps.
|
|
|
|