C C++ Errors (70)
DotNet Errors (17)
Database Errors (16446)
Scripts Errors (102)
well i dont have toefl and gre scor all that stuff, and i have 7 backlogs, tell me the chances of getting the visa.
after going to service throw to administrator tools service promp are not opening
What is the meaning of lock escalation and why/how to stop this?
according to class7 how can we give description on pendrive?
dear sir I want singal maintainer(iii& ii) solved question paper in every year in every board in rrb. If you collect these and sent these my mail-id i shall very grateful to you. thanking you your's faithfully soma saha
how do i copy first 10 records from one sequntial file to another sequential file by using JCL program?
what are the test cases for ticket vending machine?
hi, i am trying to do modular test tree in winrunner but i am getting error like "Error in the Expression list",can you please tell e what kind of error is this? thanks.
Answers for Complete This Song B_C_A_A _IL K_A KA_E, S__AN J__E B__D_ J__E
When you get following error? Error 3154: The backup set holds a backup of a database other than the existing database.
What is SCD (Slowly Changing Dimensions)? What are its types?
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
write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;
How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)
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...