Archives

How to fix the Oracle error ORA-14664: Cannot use PL/SQL expressions in reference partitioning parent key?

In this post, you’ll learn more about the Oracle ErrorORA-14664: Cannot use PL/SQL expressions in reference partitioning parent key with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-14664: Cannot use PL/SQL expressions in reference partitioning parent key Reason for the Error ORA-14664: Cannot use PL/SQL expressions in reference partitioning parent key Parent key of…

How to fix the Oracle error ORA-08194: Flashback Table operation is not allowed on materialized views?

In this post, you’ll learn more about the Oracle ErrorORA-08194: Flashback Table operation is not allowed on materialized views with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-08194: Flashback Table operation is not allowed on materialized views Reason for the Error ORA-08194: Flashback Table operation is not allowed on materialized views An attempt was…

How to fix the Oracle error ORA-02281: duplicate or conflicting CACHE/NOCACHE specifications?

In this post, you’ll learn more about the Oracle ErrorORA-02281: duplicate or conflicting CACHE/NOCACHE specifications with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-02281: duplicate or conflicting CACHE/NOCACHE specifications Reason for the Error ORA-02281: duplicate or conflicting CACHE/NOCACHE specifications Self-evident. How to fix the Error ORA-02281: duplicate or conflicting CACHE/NOCACHE specifications ? You can…

How to fix the Oracle error ORA-01182: cannot create database file string – file is in use or recovery?

In this post, you’ll learn more about the Oracle ErrorORA-01182: cannot create database file string – file is in use or recovery with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-01182: cannot create database file string – file is in use or recovery Reason for the Error ORA-01182: cannot create database file string –…

How to fix the Oracle error ORA-01502: index ‘string.string’ or partition of such index is in unusable state?

In this post, you’ll learn more about the Oracle ErrorORA-01502: index ‘string.string’ or partition of such index is in unusable state with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-01502: index ‘string.string’ or partition of such index is in unusable state Reason for the Error ORA-01502: index ‘string.string’ or partition of such index is…

How to fix the error ORA-00237: snapshot operation disallowed: control file newly created?

In this post, you’ll learn more about the Oracle ErrorORA-00237: snapshot operation disallowed: control file newly created with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-00237: snapshot operation disallowed: control file newly created Reason for the Error ORA-00237: snapshot operation disallowed: control file newly created An attempt to invoke cfileMakeAndUseSnapshot with a currently mounted…

SQL Server Error Code – 4134 metadata stored on disk for computed col

In this blog post, you’ll learn more about the SQL Server Error Code 4134 and the error message description that is shown SQL Server Error Code 4134 SQL Server Error Description for the Code :4134 Metadata stored on disk for computed column ‘%.*ls’ in table ‘%.*ls’ did not match the column definition. In order to avoid possible index corruption, please drop and recreate this computed…

How to Get the Path to special folder using C# ?

If you want to get the path to the special of the user like My Documents etc. , you can use the Environment.GetFolder with the enum “Environment.SpecialFolder”. How to Get the Path to special folder using C# ? Below is a sample code snippet demonstrating on how to do it.