ERRORS Interview Questions
Questions Answers Views Company eMail

ORA-23410: materialized view "string"."string" is already in a refresh group

1 4449

ORA-23411: materialized view "string"."string" is not in refresh group "string"."string"

1 3433

ORA-23412: master table's primary key columns have changed

1 7040

ORA-23413: table "string"."string" does not have a materialized view log

1 6694

ORA-23414: materialized view log for "string"."string" does not record rowid values

1 2838

ORA-23415: materialized view log for "string"."string" does not record the primary key

1 6164

ORA-23416: table "string"."string" does not contain a primary key constraint

1 2833

ORA-23417: unknown materialized view type: string

1 2789

ORA-23418: cannot unregister the propagator who is currently in use

1 2781

ORA-23419: regenerate replication support before resuming master activity

1 4216

ORA-23420: interval must evaluate to a time in the future

1 11972

ORA-23421: job number string is not a job in the job queue

BBC, EDE,

1 9160

ORA-23422: Oracle Server could not generate an unused job number

1 4143

ORA-23423: job number string is not positive

1 2989

ORA-23424: materialized view "string"."string" at string not registered

1 2877


Un-Answered Questions { ERRORS }

NZE-28890: Entrust Login Failed

1409


ORA-26030: index string.string had string partitions made unusable due to:

1559


How to create a program that lists the capital country when told what the original country is? (Terribly sorry, I'm a novice programmer and would appreciate any help ;). Cheers, Alexxis

665


What is the meaning of lock escalation and why/how to stop this?

2160


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.

1976






ORA-26029: index string.string partition string initially in unusable state

1711


ORA-26094: stream format error: input column overflow

2252


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.)

872


When i am connect database through toad,one error occured. ORA-12514: TNS:listener does not currently know of service requested in connect descriptor. plz help me thanks advance.............

2319


I have written the code as below. here problem is that dt remain null. how to solve thst please tell me. public partial class Form1 : Form { private DataTable DTable; private DataRow drow; public Form1() { InitializeComponent(); } private OleDbConnection getConnection() { OleDbConnection con=new OleDbConnection (@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\winApp for Student\winApp for Student\App_Data\SchooMgnSystem.mdb;Persist Security Info=True"); return con; } private void button1_Click(object sender, EventArgs e) { InsertData(); } private void InsertData() { if (DTable==null) { DTable = new DataTable(); DTable.Columns.Add("StudID", typeof(string)); DTable.Columns.Add("StudName", typeof (string)); DTable.Columns.Add("Address", typeof(string)); drow = DTable.NewRow(); drow[0] = txtStudID.Text; drow[1] = txtSTudName.Text; drow[2] = txtAddress.Text; DTable.Rows.Add(drow); grdStudent.DataSource = DTable; } else { drow = DTable.NewRow(); drow[0] = txtStudID.Text; drow[1] = txtSTudName.Text; drow[2] = txtAddress.Text; DTable.Rows.Add(drow); grdStudent.DataSource = DTable; } } private void button2_Click(object sender, EventArgs e) { string cmdstr; OleDbCommand cmd; OleDbConnection con = getConnection(); foreach (DataRow Drow in DTable.Rows) { cmdstr = "Insert into Student values('" + drow[0].ToString() + "','" + drow[1].ToString() + "','"+drow [2].ToString()+"')"; cmd = new OleDbCommand(cmdstr,con); try { con.Open(); cmd.ExecuteNonQuery(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { con.Close(); } } }

2238


ORA-26095: unprocessed stream data exists

2803


ORA-26028: index string.string initially in unusable state

3400


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...

2139


Any body can tel me how to display a Frame Link of a page in Another Frame? For Clearance of my dought..... I designed a BSP page with 3 frames as shown below. -------------------------------- | | | Frame 1 | | | -------------------------------- | Frame 2 | Frame 3 | | | | | Link 1 | | | Link 2 | | | Link 3 | | | | | -------------------------------- Now in Frame 1 i displayed one page.. And in Frame 2 i displayed one page with some links. Now when i clicked on any Link in Frame 2 that corresponding Page has to display in Frame 3. In general HTML i know...But in BSP i don't know that much since i am new to this... plz any solutions...thanks a lot.... Regards, Shankar.

1898


when will we use lsmw , bdc and bapi? which will be easy to use and which is used for which type of data

2006