Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Database Errors Interview Questions
Questions Answers Views Company eMail

ORA-07455: estimated execution time (string secs), exceeds limit (string secs)

1 7660

ORA-07456: cannot set RESOURCE_MANAGER_PLAN when database is closed

1 2817

ORA-07457: cannot set _INTERNAL_RESOURCE_MANAGER_PLAN because of FORCE

1 2885

ORA-07468: spwat: mset error, unable to set semaphore.

1 3972

ORA-07469: sppst: mclear error, unable to clear semaphore.

1 2748

ORA-07470: snclget: cannot get cluster number.

1 3509

ORA-07471: snclrd: name translation error of sgadef.dbf file name.

1 2727

ORA-07472: snclrd: open error when opening sgadef.dbf file.

1 3143

ORA-07473: snclrd: read error when trying to read sgadef.dbf file.

1 2923

ORA-07474: snclrd: close error, unable to close sgadef.dbf file.

1 3477

ORA-07475: slsget: cannot get vm statistics.

1 3187

ORA-07476: slsget: cannot get mapped memory statistics.

1 2915

ORA-07477: scgcmn: lock manager not initialized.

1 2758

ORA-07478: scgcmn: cannot get lock status.

1 3073

ORA-07479: scgcmn: cannot open or convert lock.

1 3092


Un-Answered Questions { Database Errors }

NZE-28890: Entrust Login Failed

1882


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?

2723


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

2155


why we are using shift key in unix shell script

3167


what is the instrument that used in Mechanical Energy??

2682


ORA-16627: No standby databases support the overall protection mode.

3993


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

2597


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

6652


what is new g/l functionality

2612


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

1941


IMP-00064: Definition of LOB was truncated by export

6415


What is Mutex error in Triggers?

3069


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

2648


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

1969


What severity level errors are managed in TRY-CATCH block?

2225