C C++ Errors (70)
DotNet Errors (17)
Database Errors (16446)
Scripts Errors (102)
In .net how many error will occur?
ORA-26027: unique index string.string partition string initially in unusable state
Wen ever i use IE=createObject (Ineternetexplorer.application) QTP just navigates to the URL mentioned but doesn't recognise the USErname and Password field so the test fails.. But wen i just record and use system.util "iexplore" the code recognises and the tst passes, but here it works fine sometimes and sometimes the test just fails and aftersometime i run it works.. so its not consistent,,, any suggestion
hp asking for replication floppy to do reinstall 25254 server assistant
What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).
When do you get "getwmicomexception"?
I-series. When I use: qtp DICTIONARY(PDMZZ) AUTO (*LIBL/MFR0120X)I get the error: *E* Can't open the file specified on the AUTO program parameter. File of different type already exists. When I use it auto without *libl ,qtp DICTIONARY(PDMZZ) AUTO (MFR0120X), it works fine
when will we use lsmw , bdc and bapi? which will be easy to use and which is used for which type of data
why we are using shift key in unix shell script
How will you Handle Error in SQL SERVER 2008?
ORA-16626: failed to enable specified object
How can be avoid the Error while being Human we do mistakes???
Answers for Complete This Song B_C_A_A _IL K_A KA_E, S__AN J__E B__D_ J__E
if the lengths of two wires are same and the area of cross sections is 4:7 then what will be the ratio of current passing through these wires
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...