Oracle Errors (16400)
SQLServer Errors (35)
MySQL Errors (11) ORA-36988: (XSRELGID06) The related dimension of relation workspace object must be of type NUMBER.
1 3060ORA-36990: (XSRELGID07) %a workspace object The level relation %1p should be dimensioned by a level dimension.
1 2763ORA-36991: (XSRELGID08) The level relation and level order valueset provide inconsistent level mappings.
1 2553ORA-36993: (XSRELGID10) OBJECT workspace object must be a VARIABLE, RELATION, or a numeric SURROGATE DIMENSION based on the level dimension workspace object.
1 3067ORA-36995: (XSRELGID12) There are duplicate values in the surrogate dimension gid. Use the levelorder option to resolve the ambiguity.
1 2595ORA-36996: (XSRELGID13) Valueset workspace object should be defined over dimension workspace object.
1 2617ORA-36997: (XSRELGID14) For variable or relation grouping ids, a level relation is needed when a level order valueset is specified.
1 2945ORA-36998: (XSRELGID15) LEVEL ORDER VALUESET workspace object and LEVEL RELATION workspace object have the different level dimensions.
1 2751ORA-36999: (XSRELGID16) OBJECT workspace object is not a surrogate dimension, a source relation must be specifed when creating any non-surrogate grouping id.
1 2693
ORA-26028: index string.string initially in unusable state
When do you get "getwmicomexception"?
How to solve -805 error i.e. Bind issue. There are two conditions- 1) If you have access to the database table 2) If you don't have access to the table
i have created ODBC through Data sources and tests completed sucessfully. when i am Trying to connect SQL Server through ODBC (ODBC :Oracle Open Client Adapter for ODBC 2.0.2.15.0 Microsoft SQL Server 09.00.3054) unable to Connect to SQL*Plus: Release 8.0.4.0.0. it is given following error-message . Error: ORA-03121: NO interface driver connected- function not performed.
How to resolve QSM-01108 error. I have no OR conditions in my query, but do have 9 IN conditions. The error says the max limit is 2 while I have 257 number of disjuncts. However, if I remove even a single IN condition, the query is rewritten. I cannot change my query. How can I resolve this issue?
mount: mount to NFS server failed: System Error: Connection timed out
What is the meaning of lock escalation and why/how to stop this?
ORA-26032: index string.string loading aborted after string keys
What severity level errors are managed in TRY-CATCH block?
What is the use of NOLOCK locking hint?
How to view the error log for any specific instance?
hi. i m Anil patel when reconcile 57f4 chalan(subcontraction with out excise)i m facing error like short by material 220 kg. even i have migo all material.
What is Mutex error in Triggers?
IMP-00063: Warning: Skipping table "string"."string" because object type "string"."string" cannot be created or has different identifier
Hi guys, I have four tables those are emp,dept,eliminate and uneliminate. i wrote small cursor..when i run, it display one error (ORA-01403 nodata found)... The query is: Declare cursor c1 is select e.ename emp_name from emp e,dept d where e.deptno=d.deptno group by deptno; r1 c1%rowtype; test_emp varchar2(200); begin for r1 in c1 loop begin select eliminate_emp into test_emp from eliminate t,uneliminate ut where t.number=ut.number and t.deptno=e.deptno and rownum<1; end; dbms_output.put_line(r1.emp_name); end loop; end; Thanks...