ERRORS Interview Questions
Questions Answers Views Company eMail

AMD-00100: not found: string "string"

Wipro,

1 5719

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

1 4790

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

1 5586

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

1 4805

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

1 4942

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

1 5292

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

1 4784

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

1 5154

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

1 5646

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

1 5187

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

1 5565

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

1 4917

AMD-00112: PROCEDURE string, invalid mode

1 4807

AMD-00113: PROCEDURE string, invalid operation

1 4985

AMD-00114: PROCEDURE string, internal error

1 5074


Un-Answered Questions { ERRORS }

ORA-26084: direct path context already finished

1687


When I look for mannual enry of any of the command in Unix, such as #man ls, I get a message "Reformatting entry. Wait..." and control comes to a next command prompt. what is the problem?

2135


In .net how many error will occur?

2591


ORA-26094: stream format error: input column overflow

2553


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

2377


How can be avoid the Error while being Human we do mistakes???

2303


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

6435


What is Mutex error in Triggers?

2723


ORA-26095: unprocessed stream data exists

3260


a pleasant evening. i would like to ask a question about yellow journalism. This is another term for sensationalism right? i just wanted to know a lot of articles or studies with regards to the effect this yellow journalism could effect the interpretation of the students,especially college students who are taking Communication course. please help me answer this.

2010


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


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

2253


What is the major use of Servelet

2238


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

2547


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

1863