ERRORS Interview Questions
Questions Answers Views Company eMail

NID-00145: nls subsystem initialization failure for product=string, facility=string

1 3005

NID-00300: Connected to database string (DBID=number)

1 2713

NID-00301: Datafile string - dbid changed, wrote new name

1 2023

NID-00302: Datafile string - dbid changed

1 2568

NID-00303: Datafile string - wrote new name

1 2058

NID-00304: Datafile string - reverted

1 1934

NID-00305: Datafile string - already changed

1 2133

NID-00306: Datafile string - no revert needed

1 2010

NID-00307: Control File string - dbid changed, wrote new name

1 1954

NID-00308: Control File string - dbid changed

1 2100

NID-00309: Control File string - wrote new name

1 2148

NID-00310: Control File string - reverted

1 2325

NID-00311: Control File string - modified

1 2232

NID-00312: Connected to server version string

1 2394

NID-00315: Operation already in progress, continuing

1 2349


Un-Answered Questions { ERRORS }

ORA-26079: file "string" is not part of table string.string

1518


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

2236


why we are using shift key in unix shell script

2588


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

6225


ORA-26027: unique index string.string partition string initially in unusable state

6155






When do you get "getwmicomexception"?

2261


What is Mutex error in Triggers?

2483


ORA-07497: sdpri: cannot create trace file 'string'; errno = string.

2313


I am using Qt 5.6 during compilation it stops and gives error about Qmake The process "C:QtQt5.6.35.6.3msvc2015_64inqmake.exe" crashed. Error while building/deploying project untitled1 (kit: Desktop Qt 5.6.3 MSVC2015 64bit) When executing step "qmake"

1170


i want a list of top 10 nationalized banks in inda....can some expects help me???

1862


i have created ODBC through Data sources and tests completed sucessfully. when i am Trying to connect SQL Server through ODBC (ODBC :Oracle Open Client Adapter for ODBC 2.0.2.15.0 Microsoft SQL Server 09.00.3054) unable to Connect to SQL*Plus: Release 8.0.4.0.0. it is given following error-message . Error: ORA-03121: NO interface driver connected- function not performed.

2352


I am Recording the QTP Script..the Script is below VbWindow("mdiPP").VbWindow("frmPOSOLocking").ActiveX ("SSTab").VbListView("lstPO").SetItemState "272 [10-11]", micChecked. After when when Run then give error property not found.

3325


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

2014


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

2483


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

2230