ERRORS Interview Questions
Questions Answers Views Company eMail

AMD-00100: not found: string "string"

Wipro,

1 5330

AMD-00101: cannot create string "string"; metadata entity already exists

1 4529

AMD-00102: invalid metadata entity: string "string"

1 5162

AMD-00103: %s "string" does not have a string

1 4570

AMD-00104: Level "string" cannot be added to the hierarchy; parent and child parameters represent the same level

1 4703

AMD-00105: Level "string" cannot be added to the hierarchy; the specified parent level "string" is already the parent of "string"

1 5018

AMD-00106: parent string "string" must be removed before child string "string" can be removed

1 4511

AMD-00107: no root level in hierarchy: "string"

1 4940

AMD-00108: Dimension "string" is improperly mapped; the dimension has string hierarchies mapped, but hierarchy level "string" has string columns mapped

1 5353

AMD-00109: Parent metadata entity has too many child entities. string "string" has more than string string

1 4929

AMD-00110: parameter string of "string" not valid

1 5309

AMD-00111: PROCEDURE string, invalid directory: "string"

1 4718

AMD-00112: PROCEDURE string, invalid mode

1 4590

AMD-00113: PROCEDURE string, invalid operation

1 4746

AMD-00114: PROCEDURE string, internal error

1 4788


Un-Answered Questions { ERRORS }

If Fi account is assigned to cost element categorie poatings are not possible it is giving error that cost element has to be assigned to a co object whts the solution for this error?

2399


hi can any one tell me.... do we need to use color catridge also in HP Deskjet 630C series printer.... i have kept only black catridge but its not working.......

1897


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

1813


hi pp gurus, when i do the goods receipt through transiction MIGO the system, gives following error. I filled up all information that needs MIGO transiction. the error is: "Account determination for entry INT GBB___AUF 7900 not possible." can any one suggest me what to do now?

2391


How will you Handle Error in SQL SERVER 2008?

2023






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

2336


IMP-00096: Warning: Skipping table "string"."string" because type synonym "string"."string" cannot be created

1324


When you get following error? Error 3154: The backup set holds a backup of a database other than the existing database.

2176


In .net how many error will occur?

2491


Program ended with error or warning, return code: 4

13824


ORA-26084: direct path context already finished

1589


Sir, I apply sbi clerk exams(07/09/09)But I did a mistake to enter my date of birth(correct 04.01.1985 / wrong 04.01.1984).please give me suggestions please. Thanking you, Bhushan.B

1755


can u deactivate my music massage from mobily? some times i recharge my a/c then after sometimes one massage come and sr.4/- debited from my account. so please help me stop the massage about music or what. i don't know stop them please.from yesterday i have lose sr.8/- from my account.

2082


I'm having trouble with coming up with the correct code. Thank You!! The assignment was to write a program using string functions that accepts a price of an item and displays its coded value. The base of the keys: X C O M P U T E R S 0 1 2 3 4 5 6 7 8 9 Sample I/O Dialogue: Enter Price: 489.50 Coded Value: PRS.UX

1732


write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;

1498