C C++ Errors (70)
DotNet Errors (17)
Database Errors (16446)
Scripts Errors (102)
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
when will we use lsmw , bdc and bapi? which will be easy to use and which is used for which type of data
[ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) Unsuccessful: alter table user.CEN_USER_MASTER add constraint FKF4EDEDC3D0BAAE75 foreign key (ROLE_ID) references user.CEN_ROLE_MASTER [ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) ORA-02275: such a referential constraint already exists in the table
how to run the application using winrunner for data driven test?
how do i copy first 10 records from one sequntial file to another sequential file by using JCL program?
pleasesend which type of the books to indian banks clerks& what is topics pleases mailme
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
RMAN-05017: no copy of datafile number found to recover
ORA-26095: unprocessed stream data exists
NZE-28868: Peer certificate chain check failed.
Jetking is C C
ORA-26079: file "string" is not part of table string.string
ORA-26030: index string.string had string partitions made unusable due to:
ORA-16627: No standby databases support the overall protection mode.
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...