Archives
How to fix the Oracle error ORA-37173: null dimension source data?
In this post, you’ll learn more about the Oracle ErrorORA-37173: null dimension source data with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-37173: null dimension source data Reason for the Error ORA-37173: null dimension source data The user specified NULL for one of the members of the dimension sources argument How to fix the…
How to fix the Oracle error RMAN-00577: PIPE requires that TARGET be specified on the command line?
In this post, you’ll learn more about the Oracle ErrorRMAN-00577: PIPE requires that TARGET be specified on the command line with the details on why you receive this error and the possible solution to fix it. Oracle Error Description RMAN-00577: PIPE requires that TARGET be specified on the command line Reason for the Error RMAN-00577: PIPE requires that TARGET be specified on the command line…
How to fix the Oracle error PRCD-01195: Option to remove the target node was not allowed for aborting online relocation...
In this post, you’ll learn more about the Oracle ErrorPRCD-01195: Option to remove the target node was not allowed for aborting online relocation of policy-managed RAC One Node database {0} with the details on why you receive this error and the possible solution to fix it. Oracle Error Description PRCD-01195: Option to remove the target node was not allowed for aborting online relocation of policy-managed…
How to fix the Oracle error CLSR-00522: Resource string is not registered?
In this post, you’ll learn more about the Oracle ErrorCLSR-00522: Resource string is not registered with the details on why you receive this error and the possible solution to fix it. Oracle Error Description CLSR-00522: Resource string is not registered Reason for the Error CLSR-00522: Resource string is not registered CRS resource is not registered. How to fix the Error CLSR-00522: Resource string is not…
How to fix the Oracle error IMG-00821: area N queue clear failed?
In this post, you’ll learn more about the Oracle ErrorIMG-00821: area N queue clear failed with the details on why you receive this error and the possible solution to fix it. Oracle Error Description IMG-00821: area N queue clear failed Reason for the Error IMG-00821: area N queue clear failed Cause: An internal error has occured. How to fix the Error IMG-00821: area N queue…
How to fix the Oracle error INS-10013: The installer has detected that current home is not registered in the central...
In this post, you’ll learn more about the Oracle ErrorINS-10013: The installer has detected that current home is not registered in the central inventory on this system. with the details on why you receive this error and the possible solution to fix it. Oracle Error Description INS-10013: The installer has detected that current home is not registered in the central inventory on this system. Reason…
Win32 COM Error – RO_E_METADATA_INVALID_TYPE_FORMAT 0x80000011
In this post, you’ll learn more about the Error RO_E_METADATA_INVALID_TYPE_FORMAT 0x80000011 that is returned when working with the COM-based APIs in Win32 Win32 COM Error RO_E_METADATA_INVALID_TYPE_FORMAT 0x80000011 Win32 COM Error Error Description Typename has an invalid format.
Win32 COM Error – OSS_NULL_FCN – 0x80093015
In this post, you’ll learn more about the Error OSS_NULL_FCN – 0x80093015 that is returned when working with the COM-based APIs in Win32 Win32 COM Error OSS_NULL_FCN – 0x80093015 Win32 COM Error Error Description OSS ASN.1 Error: Invalid data.
Win32 COM Error – TPM_E_PCP_PROFILE_NOT_FOUND – 0x8029040B
In this post, you’ll learn more about the Error TPM_E_PCP_PROFILE_NOT_FOUND – 0x8029040B that is returned when working with the COM-based APIs in Win32 Win32 COM Error TPM_E_PCP_PROFILE_NOT_FOUND – 0x8029040B Win32 COM Error Error Description The referenced profile was not found.
Apache Derby DB Error Code 42Y45 – VTI ‘‘ cannot be bound because it is a special trigge
In this blog post, let’s learn about the error message “42Y45- VTI ‘‘ cannot be bound because it is a special trigge” in Apache Derby Database and the description of the error. Error Message 42Y45- VTI ‘‘ cannot be bound because it is a special trigge Error Details VTI ‘‘ cannot be bound because it is a special trigger VTI and this statement is not…
Displaying data in flat list in Windows Phone 8 LongListSelector Control
Below is a sample code snippet demonstrating the display of the flat list in the Windows Phone 8 LongListSelector Control. Displaying data in flat list in Windows Phone 8 LongListSelector Control LongListSelector Declaration <phone:LongListSelector Name=”lstWebsites” HorizontalAlignment=”Left” VerticalAlignment=”Top” LayoutMode=”List” IsGroupingEnabled=”False” Width=”446″> <phone:LongListSelector.ItemTemplate> <DataTemplate> <StackPanel> <TextBlock Text=”{Binding Name}” /> </StackPanel> </DataTemplate> </phone:LongListSelector.ItemTemplate> </phone:LongListSelector> Model public class WebsiteName { public string Name { get; set; } public int…
How to remove the non ascii characters from a string in C# ?
Regular expression comes in handy especially if you want to remove the non ascii characters from a string in C#. Here’s a regular expression sample in C# demonstrating how to do it. How to remove the non ascii characters from a string in C# ? The output of the code snippet will be cde in C#