Database Errors Interview Questions
Questions Answers Views Company eMail

AMD-00115: PROCEDURE string, invalid file handle

1 3242

AMD-00116: PROCEDURE string, read error

1 3109

AMD-00117: input file "string" not found

1 3000

AMD-00118: output file "string" already exists

1 3696

AMD-00119: analytic workspace dimensions not specified in input

1 3367

AMD-00120: dimension #string: analytic workspace dimension name not specified

1 2946

AMD-00121: dimension #string: analytic workspace hierarchy not specified

1 3148

AMD-00122: dimension #string: analytic workspace hierarchy dimension not specified

1 3068

AMD-00123: dimension #string: analytic workspace hierarchy dimension value not specified

1 3053

AMD-00124: dimension #string: analytic workspace GID variable not specified

1 3418

AMD-00125: dimension #string: analytic workspace column level dimension not specified

1 3104

AMD-00126: dimension #string: analytic workspace column level relation not specified

1 3089

AMD-00127: dimension #string: RDBMS dimension column not specified

1 3166

AMD-00128: dimension #string: RDBMS parent column not specified

1 2887

AMD-00129: dimension #string: RDBMS GID column not specified

1 3290


Un-Answered Questions { Database 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(); } } }

2416


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

2445


ORA-16626: failed to enable specified object

1988


why we are using shift key in unix shell script

2811


write a database figure to implement the master detained relationship.

2659


NZE-28868: Peer certificate chain check failed.

2485


IMP-00060: Warning: Skipping table "string"."string" because object type "string"."string" does not exist or has different identifier

2928


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

1426


[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

2523


ORA-26076: cannot set or reset value after direct path structure is allocated

1677


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

3618


IMP-00063: Warning: Skipping table "string"."string" because object type "string"."string" cannot be created or has different identifier

2499


when i ran any workflow or session, getting below error: seesion task instance[s_xxx]: Execution terminated unexpecterdly

1958


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.

2547


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

1484