Database Errors Interview Questions
Questions Answers Views Company eMail

AMD-00100: not found: string "string"

Wipro,

1 5085

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

1 4242

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

1 4772

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

1 4335

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

1 4432

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

1 4696

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

1 4249

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

1 4666

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

1 5060

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

1 4587

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

1 4978

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

1 4431

AMD-00112: PROCEDURE string, invalid mode

1 4315

AMD-00113: PROCEDURE string, invalid operation

1 4466

AMD-00114: PROCEDURE string, internal error

1 4458


Un-Answered Questions { Database Errors }

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

2146


how can i get the question papers of year 2006 and 2007 of 12th commerce gujarat board

1849


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

2281


what is new g/l functionality

2188


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

1350






What is the use of NOLOCK locking hint?

1328


NZE-28890: Entrust Login Failed

1384


hp asking for replication floppy to do reinstall 25254 server assistant

2384


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

2213


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

1731


ORA-16626: failed to enable specified object

1742


Hi, I am trying to encode data from flatfile and then to decode the encoded data to original form. Procedures that I followed:- 1. Encoded the field 'A_ID' using AES_ENCRYPT(A_ID,'abd') in the expression transformation. The A_ID got encoded in the output table(oracle) 2. To decode this back I used AES_DECRYPT(A_ID,'abd'). But after executing the workflow, I am not getting any data in output. can anybody tell me how to decrypt the encoded data back to original form ??

1212


IMP-00064: Definition of LOB was truncated by export

5856


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

2289


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

2213