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-07248: sfwfb: write error, unable to write database block.

1 2811

ORA-07249: slsget: open error, unable to open /proc/pid.

1 3162

ORA-07250: spcre: semget error, unable to get first semaphore set.

1 2867

ORA-07251: spcre: semget error, could not allocate any semaphores.

1 3280

ORA-07252: spcre: semget error, could not allocate semaphores.

1 3191

ORA-07253: spdes: semctl error, unable to destroy semaphore set.

1 3002

ORA-07254: spdcr: translation error while expanding ?/bin/oracle.

1 2838

ORA-07255: spini: cannot set up signal handler.

1 3017

ORA-07256: sptrap: cannot set up signal handler to catch exceptions.

1 2772

ORA-07257: spdcr: translation error expanding program name.

2 5852

ORA-07258: spdcr: fork error, unable to create process.

1 2799

ORA-07259: spdcr: exec error, detached process failed in startup.

1 3168

ORA-07260: spdcr: wait error.

1 2717

ORA-07261: spdde: kill error, unable to send signal to process.

1 3598

ORA-07262: sptpa: sptpa called with invalid process id.

1 3296


Un-Answered Questions { Database Errors }

what is new g/l functionality

2673


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

2706


IMP-00096: Warning: Skipping table "string"."string" because type synonym "string"."string" cannot be created

1664


ORA-26079: file "string" is not part of table string.string

1998


IMP-00064: Definition of LOB was truncated by export

6465


ORA-26095: unprocessed stream data exists

3635


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

2751


ORA-26094: stream format error: input column overflow

2853


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

2705


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

3910


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

6713


When do you get "getwmicomexception"?

2731


ORA-07497: sdpri: cannot create trace file 'string'; errno = string.

2856


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

2264


What is the use of NOLOCK locking hint?

1831