Blog

using IN clause to provide a list of values for Search Criteria

In SQL Server , you can use the IN clause to providing the list of values for a search criteria. For example , you want to display the employee records who’s job title is one of the following : ‘Design Engineer’,’Tool Designer’. The above query uses the IN clause to filter the employee records using the arbitrary list of values. Alternatively , you can also…

Microsoft Band and Android(Java) – Add Permission Tags in the Manifest file

When working with the Microsoft Band using Java for an android app , it is necessary add the following permissions under the uses-permission tag of the AndroidManifest.xml. android.permission.BLUETOOTH com.microsoft.band.service.access.BIND_BAND_SERVICE How to add Permission Tags in the Manifest file to use Band SDK in Java ? The reason for adding this to the manifest file is that the app will be using the capabilities of the…

Win32 COM Error – SEC_E_WRONG_PRINCIPAL – 0x80090322

In this post, you’ll learn more about the Error SEC_E_WRONG_PRINCIPAL – 0x80090322 that is returned when working with the COM-based APIs in Win32 Win32 COM Error SEC_E_WRONG_PRINCIPAL – 0x80090322 Win32 COM Error Error Description The target principal name is incorrect.

How to fix the Oracle error PLS-00616: type mismatch found at ‘string’ among result expressions in a CASE expression?

In this post, you’ll learn more about the Oracle ErrorPLS-00616: type mismatch found at ‘string’ among result expressions in a CASE expression with the details on why you receive this error and the possible solution to fix it. Oracle Error Description PLS-00616: type mismatch found at ‘string’ among result expressions in a CASE expression Reason for the Error PLS-00616: type mismatch found at ‘string’ among…

How to fix the Oracle error PRCD-01116: Failed to get available instances of service {0}?

In this post, you’ll learn more about the Oracle ErrorPRCD-01116: Failed to get available instances of service {0} with the details on why you receive this error and the possible solution to fix it. Oracle Error Description PRCD-01116: Failed to get available instances of service {0} Reason for the Error PRCD-01116: Failed to get available instances of service {0} Cause: The service does not exist…

How to fix the Oracle error ORA-26509: null materialized view control structure?

In this post, you’ll learn more about the Oracle ErrorORA-26509: null materialized view control structure with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-26509: null materialized view control structure Reason for the Error ORA-26509: null materialized view control structure An internal materialized view control structure could not be obtained. How to fix the Error…

How to fix the Oracle error ORA-01103: database name ‘string’ in control file is not ‘string’?

In this post, you’ll learn more about the Oracle ErrorORA-01103: database name ‘string’ in control file is not ‘string’ with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-01103: database name ‘string’ in control file is not ‘string’ Reason for the Error ORA-01103: database name ‘string’ in control file is not ‘string’ The database name…