Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. Error starting at line : 51 in command -
  2. alter table schemaname.tablename
  3. modify PARTITION BY RANGE (CREATEDATE)
  4. (
  5. PARTITION p1 VALUES LESS THAN (TO_DATE('25-MAY-2019', 'DD-MON-YYYY')),
  6. PARTITION p2 VALUES LESS THAN (TO_DATE('28-MAY-2019', 'DD-MON-YYYY')),
  7. PARTITION p3 VALUES LESS THAN (TO_DATE('29-MAY-2019', 'DD-MON-YYYY')),
  8. PARTITION p4 VALUES LESS THAN (TO_DATE('01-JUN-2019', 'DD-MON-YYYY'))
  9. )
  10.  
  11. *Error report -
  12. ORA-00600: internal error code, arguments: [kaf lob buffer overwrite], [2192], [466], [], [], [], [], [], [], [], [], []
  13. 00600. 00000 - "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]"
  14. *Cause: This is the generic internal error number for Oracle program
  15. exceptions. It indicates that a process has encountered a low-level,
  16. unexpected condition. The first argument is the internal message
  17. number. This argument and the database version number are critical in
  18. identifying the root cause and the potential impact to your system.*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement