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-02882: sou2o: Could not register SGA for protection

1 2850

ORA-02899: smscre: Cannot create SGA with Extended Shared Memory feature

1 3704

ORA-03001: unimplemented feature

1 4741

ORA-03002: operator not implemented

1 5119

ORA-03007: obsolete feature

1 3322

ORA-03008: parameter COMPATIBLE >= string needed for string

1 3225

ORA-03112: a server linked as single-task cannot use SQL*Net

1 3122

ORA-03113: end-of-file on communication channel

1 4237

ORA-03119: two-task detected inconsistent datatype specification

1 3505

ORA-03122: attempt to close ORACLE-side window on user side

1 2839

ORA-03123: operation would block

1 6855

ORA-03124: two-task internal error

1 5220

ORA-03125: client-server protocol violation

1 4486

ORA-03126: network driver does not support non-blocking operations

1 5693

ORA-03127: no new operations allowed until the active operation ends

1 6551


Un-Answered Questions { Database Errors }

ORA-26032: index string.string loading aborted after string keys

2181


What is Mutex error in Triggers?

3129


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

2758


How to solve -805 error i.e. Bind issue. There are two conditions- 1) If you have access to the database table 2) If you don't have access to the table

2701


How to view the error log for any specific instance?

2545


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

2587


write a database figure to implement the master detained relationship.

3016


ORA-26084: direct path context already finished

1999


When do you get "getwmicomexception"?

2735


ORA-16516: The current state is invalid for the attempted operation.

8882


ORA-26095: unprocessed stream data exists

3642


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?

2767


hi. i m Anil patel when reconcile 57f4 chalan(subcontraction with out excise)i m facing error like short by material 220 kg. even i have migo all material.

2580


RMAN-05017: no copy of datafile number found to recover

2470


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

2715