Blog

How to fix the Oracle error ORA-37135: (XSCCOMP19) The COMPRESSED COMPOSITE workspace object in the current defined partition template should...

In this post, you’ll learn more about the Oracle ErrorORA-37135: (XSCCOMP19) The COMPRESSED COMPOSITE workspace object in the current defined partition template should be unique or global. with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-37135: (XSCCOMP19) The COMPRESSED COMPOSITE workspace object in the current defined partition template should be unique or global. Reason…

How to fix the Oracle error ORA-32012: SPFILE format is inconsistent with value of COMPATIBLE parameter?

In this post, you’ll learn more about the Oracle ErrorORA-32012: SPFILE format is inconsistent with value of COMPATIBLE parameter with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-32012: SPFILE format is inconsistent with value of COMPATIBLE parameter Reason for the Error ORA-32012: SPFILE format is inconsistent with value of COMPATIBLE parameter The SPFILE was…

How to fix the Oracle error ORA-26001: Index string specified in SORTED INDEXES does not exist on table string?

In this post, you’ll learn more about the Oracle ErrorORA-26001: Index string specified in SORTED INDEXES does not exist on table string with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-26001: Index string specified in SORTED INDEXES does not exist on table string Reason for the Error ORA-26001: Index string specified in SORTED INDEXES…

How to fix the Oracle error ORA-15602: Parameter “string” cannot be NULL.?

In this post, you’ll learn more about the Oracle ErrorORA-15602: Parameter “string” cannot be NULL. with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-15602: Parameter “string” cannot be NULL. Reason for the Error ORA-15602: Parameter “string” cannot be NULL. An attempt was made to call a procedure without a required parameter. How to fix…

How to fix the Oracle error ORA-02716: osnpgetdatmsg: message from host had incorrect message type?

In this post, you’ll learn more about the Oracle ErrorORA-02716: osnpgetdatmsg: message from host had incorrect message type with the details on why you receive this error and the possible solution to fix it. Oracle Error Description ORA-02716: osnpgetdatmsg: message from host had incorrect message type Reason for the Error ORA-02716: osnpgetdatmsg: message from host had incorrect message type The Pipe driver received a message…

InterSystems IRIS General Error Code – 743

In this post, you’ll learn about the General error code 743 in InterSystems IRIS database the reason why you are receiving the error message when using the InterSystems IRIS data platform Error Code : 743 Reason for the Error code 743 in InterSystems IRIS DBMS CA certificate file %1 is not valid

Server.MapPath with usage of . , .. , ~ and / Characters in ASP.NET

When using Server.MapPath in ASP.NET, the developers can specify the characters as shown below. var path1 = Server.MapPath(“.”)var path2 = Server.MapPath(“..”)var path3 = Server.MapPath(“~”)var path4 = Server.MapPath(“/”) What is the difference between the above methods ? Assume that the website is installed in the path D:\WebApplications\Abundantcode and the root of the IIS is C:\Inetpub\wwwroot and assume that the current page is http://abundantcode.com/popularposts The path1 will…