Categories
Latest Postings
Links
Archives
|
Oracle Error Codes - Personalize Your Homepage4. February 2010 by admin.
Oracle Error Codes - Error Messages By Product - Messages, Descriptions, Causes and Recommended Actions
Posted in Uncategorized | 1 Comment » Python Exception Handling15. January 2009 by admin.
The try statement- try and except keywords Program below asks the user for input until a valid integer and handle ValueError exceptions. >>> while True: A try statement may have more than one except clause. An except clause may include many exceptions. Example: Posted in Python, Uncategorized | No Comments » Perl Exception Handling15. January 2009 by admin.
Exception handling mechanism, the eval {} block. eval { Within the eval block, in case a syntax error or runtime error, or a die statement is executed, then an undefined value is returned by eval, and $@ is set to the error message. Since the error message store in $@ is a simple scalar, checking the type of error that has occurred is error prone $@ does not tell where the exception occurred. Starting from Perl 5.005, Exception Handling can be done: eval { if ($@) { MyFileException exception class can be built with as much functionality as desired. Posted in Perl, Uncategorized | No Comments » Oracle Exception Handling15. January 2009 by admin.
Oracle Predefined Exceptions, User Defined Exception, OTHERS errors handling ————————————————————————————————- ———————————————————————————— Oracle Error Codes - Error Messages By Product Posted in Oracle, Uncategorized | No Comments » ORA-00001 unique constraint (string.string) violated23. October 2008 by admin.
Cause: An UPDATE or INSERT statement attempted to insert a duplicate key. Action: Either remove the unique restriction or do not insert the key. Commens: In relational database design, a unique key or primary key is a candidate key to uniquely identify each row in a table. A unique key or primary key comprises a single column or set of columns. No two distinct rows in a table can have the same value (or combination of values) in those columns. Depending on its design, a table may have arbitrarily many unique keys but at most one primary key. Oracle Error Codes - Error Messages By Product Posted in Oracle, Uncategorized | 1 Comment » | |||||||||||||||||||||||||||||||||||||||||||||||||
