Archives

SQL Server Error Code – 22911 the capture job cannot be used by change

In this blog post, you’ll learn more about the SQL Server Error Code 22911 and the error message description that is shown SQL Server Error Code 22911 SQL Server Error Description for the Code :22911 The capture job cannot be used by Change Data Capture to extract changes from the log when transactional replication is also enabled on the same database. When Change Data Capture…

How to fix the Oracle error ORA-00981: cannot mix table and system auditing options?

In this post, you’ll learn more about the Oracle ErrorORA-00981: cannot mix table and system auditing options with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-00981: cannot mix table and system auditing options Reason for the Error ORA-00981: cannot mix table and system auditing options Table and system-wide auditing options were specified in the…

How to fix the Oracle error ORA-13865: Module name must be specified?

In this post, you’ll learn more about the Oracle ErrorORA-13865: Module name must be specified with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-13865: Module name must be specified Reason for the Error ORA-13865: Module name must be specified Attempt to enable/disable a service-level statistics aggregation without a module specification How to fix the…

How to fix the Oracle error ORA-15741: no COMPARE_PERFORMANCE execution exists for SQL Performance Analyzer task “string”?

In this post, you’ll learn more about the Oracle ErrorORA-15741: no COMPARE_PERFORMANCE execution exists for SQL Performance Analyzer task “string” with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-15741: no COMPARE_PERFORMANCE execution exists for SQL Performance Analyzer task “string” Reason for the Error ORA-15741: no COMPARE_PERFORMANCE execution exists for SQL Performance Analyzer task “string”…

How to fix the Oracle error ORA-28384: cannot perform Tablespace Encryption?

In this post, you’ll learn more about the Oracle ErrorORA-28384: cannot perform Tablespace Encryption with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-28384: cannot perform Tablespace Encryption Reason for the Error ORA-28384: cannot perform Tablespace Encryption Tablespace Encryption was attempted when PKI certificate-based Master Key was in use. How to fix the Error ORA-28384:…

How to fix the Oracle error ORA-41617: action preference name “string” collides with an event attribute name?

In this post, you’ll learn more about the Oracle ErrorORA-41617: action preference name “string” collides with an event attribute name with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-41617: action preference name “string” collides with an event attribute name Reason for the Error ORA-41617: action preference name “string” collides with an event attribute name…

How to fix the Oracle error QSM-02021: set operator encountered in mv?

In this post, you’ll learn more about the Oracle ErrorQSM-02021: set operator encountered in mv with the details on why you receive this error and the possible solution to fix it. Oracle Error Description QSM-02021: set operator encountered in mv Reason for the Error QSM-02021: set operator encountered in mv The capability in question is not supported when the materialized view uses set operators such…

MariaDB Error 1512 – ER_ONLY_ON_RANGE_LIST_PARTITION

In this post, you’ll learn more about the MariaDB Error 1512 ER_ONLY_ON_RANGE_LIST_PARTITION with the details of the error message and why you receive this error Maria DB Error Description MariaDB Error 1512 – ER_ONLY_ON_RANGE_LIST_PARTITION with the sqlState HY000 Error Description for the MariaDB Error ER_ONLY_ON_RANGE_LIST_PARTITION %s PARTITION can only be used on RANGE/LIST partitions

MariaDB Error 1771 – ER_SKIPPING_LOGGED_TRANSACTION

In this post, you’ll learn more about the MariaDB Error 1771 ER_SKIPPING_LOGGED_TRANSACTION with the details of the error message and why you receive this error Maria DB Error Description MariaDB Error 1771 – ER_SKIPPING_LOGGED_TRANSACTION with the sqlState HY000 Error Description for the MariaDB Error ER_SKIPPING_LOGGED_TRANSACTION Skipping transaction %s because it has already been executed and logged.

Raima RDM Error -10000 eNOMEMORY

In this blog post, let’s learn about the error message “-10000 eNOMEMORY” in Raima RDM and the description of the error message. Error Message -10000 – eNOMEMORY Error Details Out of memory

How to Create an Empty array without defining the size in C# ?

When we create an array in C# , we tend to define the size of the array as shown below. Can we create an array without defining the size ? The best option in this  scenario is to use the collection. You can use the Generic List which allows you to add as many items as possible and then you can use the ToArray method…