Database Errors Interview Questions
Questions Answers Views Company eMail

ORA-34363: (MXDSS13) number other user writing

1 2581

ORA-34481: (MXMAINT07) You cannot string values of PARTITION TEMPLATE workspace object.

1 2263

ORA-34487: (MXMAINT08) You cannot string values of non-unique concat dimension workspace object.

1 2237

ORA-34489: (MXMAINT06) You cannot maintain workspace object because it is a SURROGATE.

1 2145

ORA-34514: (MXOPERR) You cannot string string data in the expression that begins with 'string'.

1 2179

ORA-34656: (MXSQL24) Additional WHERE clause conditions with CURRENT OF syntax

1 2459

ORA-34719: (NLSCHARSET03) Character data loss in NTEXT/TEXT conversion

1 2006

ORA-34722: (NLSCHARSET05) CAUTION: Character data loss in character set conversion from string to string

1 2490

ORA-34726: (NLSCHARSET06) CAUTION: String truncated during character set conversion from string to string

1 2231

ORA-34802: (OCI11) OLAP OCI operation caused ROLLBACK past an UPDATE of an attached analytic workspace. Current operation canceled.

1 2168

ORA-34871: (PERMIT06) Session-only value 'value' of workspace object has been deleted because a PERMIT change has revealed a duplicate value.

1 2113

ORA-34896: (PPMONTHS00) At least 12 month names must be given. Only number were provided.

1 2247

ORA-34897: (PPMONTHS01) Blank lines are not allowed in the MONTHNAMES option.

1 2158

ORA-34900: (PPWKDAYS00) At least 7 day names must be given. Only number were provided.

1 1955

ORA-34901: (PPWKDAYS01) Blank lines are not allowed in the DAYNAMES option.

1 2689


Un-Answered Questions { Database Errors }

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

1468


what is the instrument that used in Mechanical Energy??

2256


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

2231


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

3395


write a database figure to implement the master detained relationship.

2425






How to resolve QSM-01108 error. I have no OR conditions in my query, but do have 9 IN conditions. The error says the max limit is 2 while I have 257 number of disjuncts. However, if I remove even a single IN condition, the query is rewritten. I cannot change my query. How can I resolve this issue?

2300


What is the use of NOLOCK locking hint?

1357


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

2294


ORA-26030: index string.string had string partitions made unusable due to:

1554


When do you get "getwmicomexception"?

2257


invalid quantity specification negative quantity are not allowed for this item please check this item definition quantity

2853


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

2064


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

1283


[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

2282


Hi guys, I have four tables those are emp,dept,eliminate and uneliminate. i wrote small cursor..when i run, it display one error (ORA-01403 nodata found)... The query is: Declare cursor c1 is select e.ename emp_name from emp e,dept d where e.deptno=d.deptno group by deptno; r1 c1%rowtype; test_emp varchar2(200); begin for r1 in c1 loop begin select eliminate_emp into test_emp from eliminate t,uneliminate ut where t.number=ut.number and t.deptno=e.deptno and rownum<1; end; dbms_output.put_line(r1.emp_name); end loop; end; Thanks...

2134