Blog

How to fix the Oracle error ORA-12028: materialized view type is not supported by master site string?

In this post, you’ll learn more about the Oracle ErrorORA-12028: materialized view type is not supported by master site string with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-12028: materialized view type is not supported by master site string Reason for the Error ORA-12028: materialized view type is not supported by master site string…

SQL Server Error Code – 35396 effective dop of %u is too high for colu

In this blog post, you’ll learn more about the SQL Server Error Code 35396 and the error message description that is shown SQL Server Error Code 35396 SQL Server Error Description for the Code :35396 Effective DOP of %u is too high for columnstore compression on table id %d because each thread only has %I64d KB for compression. Please retry using the MAXDOP hint to…

SQL Server Error Code – 22835 could not update the metadata for databa

In this blog post, you’ll learn more about the SQL Server Error Code 22835 and the error message description that is shown SQL Server Error Code 22835 SQL Server Error Description for the Code :22835 Could not update the metadata for database %s to indicate that a Change Data Capture job has been dropped. The failure occurred when executing the command ā€˜%s’. The error returned…

SQL Server Error Code – 8527 an attempt to create a distributed trans

In this blog post, you’ll learn more about the SQL Server Error Code 8527 and the error message description that is shown SQL Server Error Code 8527 SQL Server Error Description for the Code :8527 An attempt to create a distributed transaction export token failed with this error: %ls. Contact your Microsoft Distributed Transaction Coordinator (MS DTC) system administrator.

SQL Server Error Code – 3448 rollback encountered a page with a log s

In this blog post, you’ll learn more about the SQL Server Error Code 3448 and the error message description that is shown SQL Server Error Code 3448 SQL Server Error Description for the Code :3448 Rollback encountered a page with a log sequence number (LSN) less than the original log record LSN. Could not undo log record %S_LSN, for transaction ID %S_XID, on page %S_PGID,…

InterSystems IRIS General Error Code – 45

In this post, you’ll learn about the General error code 45 in InterSystems IRIS database the reason why you are receiving the error message when using the InterSystems IRIS data platform Error Code : 45 Reason for the Error code 45 in InterSystems IRIS DBMS some or all database files were not deleted

Windows System Error Code 8222 – ERROR_NO_PROMOTION_ACTIVE (0x201E)]

In this post, you’ll learn about the Windows System Error ERROR_NO_PROMOTION_ACTIVE (0x201E)] and the reason why you are receiving the error message How does this Error in Windows Look like? Error Code 8222 ERROR_NO_PROMOTION_ACTIVE (0x201E)] Why do you receive the System Error Error Code 8222 ERROR_NO_PROMOTION_ACTIVE (0x201E)] in Windows? A domain controller promotion is not currently active

How to Clone an Object in JQuery ?

If you are looking at cloning an object in JQuery , you can do that using the jQuery’s extend method . You can perform the shallow copy or deep copy by setting the parameters. Below is a sample code snippet demonstrating how to clone an object in JQuery How to Clone an Object in JQuery ? The above method performs the shallow copy . You…

What is difference between ‘Name’ and ‘x:Name’ in Xaml ?

When working with a control in Xaml (WPF/Silverlight/Windows Phone /Windows Store App) , you will notice that for a control , there are 2 options to specify the name for the control . One using “Name” property and other using “x:Name” property. What is difference between ‘Name’ and ‘x:Name’ in Xaml ? Both the properties refer to the same item . We generally use x:Name…