ERRORS Interview Questions
Questions Answers Views Company eMail

ORA-23378: connection qualifier "string" is not valid for object group "string"."string"

1 2327

ORA-23379: connection qualifier "string" is too long

1 2187

ORA-23380: propagation mode "string" is not valid

1 2555

ORA-23381: generated object for base object string.string@string does not exist

1 2360

ORA-23382: materialized view repgroup "string"."string" is not registered at site string

1 2842

ORA-23383: registration for materialized view repgroup "string"."string" failed at site string

1 2044

ORA-23384: replication parallel push string argument out of range

1 2199

ORA-23385: replication parallel push string argument not valid

1 2142

ORA-23386: replication parallel push cannot create slave processes

1 5403

ORA-23387: replication parallel push dequeue error

1 3867

ORA-23388: replication parallel push watermark error

1 4738

ORA-23389: obsolete procedure; drop objects and recreate using new master

1 2301

ORA-23392: could not find materialized view to be associated with "string"."string"

1 2133

ORA-23393: the user is already the propagator

1 2542

ORA-23394: duplicate propagator

1 3266


Un-Answered Questions { ERRORS }

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(); } } }

2250


WHAT IS A VECTOR ? HOW IS DIFFER FORM AN ARRAY

1984


What is SCD (Slowly Changing Dimensions)? What are its types?

2188


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

2503


today's peformance is less than yesturday.it took 1 mint and today's performance is 7 mints.guys can anyone answer to mu question in sql

2027






ORA-26082: load of overlapping segments on table string.string is not allowed

1386


ORA-16626: failed to enable specified object

1782


How will you Handle Error in SQL SERVER 2008?

1947


IMP-00070: Lob definitions in dump file are inconsistent with database.

1297


In my project I am using star schema and only diimension tables are loaded and not fact tables any one can help me why it is happening? Plase guide me.

2337


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

2238


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.

1915


IMG-02003: 2FF03 - incorrect color histogram feature specification

1214


hai i got one error i,e http status 404 error what is ds why ds is comming

2029


java.sql.SQLException:Invalid state, the statement object is closed Hai all i got this error when i am multiple times referesh web page

6239