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-06706: TLI Driver: service not found

1 3570

ORA-06707: TLI Driver: connection failed

1 3386

ORA-06708: TLI Driver: message receive failure

1 3220

ORA-06709: TLI Driver: message send failure

1 3474

ORA-06710: TLI Driver: send interrupt break message failed

1 4061

ORA-06711: TLI Driver: error on bind

1 3630

ORA-06712: TLI Driver: error on accept

1 3405

ORA-06713: TLI Driver: error on connect

1 3677

ORA-06720: TLI Driver: SID lookup failure

1 3545

ORA-06721: TLI Driver: spurious client req

1 4004

ORA-06722: TLI Driver: connection setup failure

1 3351

ORA-06730: TLI Driver: unable to open clone device

1 3271

ORA-06731: TLI Driver: cannot alloc t_call

1 3254

ORA-06732: TLI Driver: cannot alloc t_discon

1 3680

ORA-06733: TLI Driver: failed to receive disconnect

1 3362


Un-Answered Questions { Database Errors }

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

2656


IMP-00060: Warning: Skipping table "string"."string" because object type "string"."string" does not exist or has different identifier

3169


ORA-26094: stream format error: input column overflow

2808


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

2225


ORA-16626: failed to enable specified object

2218


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

1620


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

2231


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


How will you Handle Error in SQL SERVER 2008?

2403


What is the use of NOLOCK locking hint?

1788


hp asking for replication floppy to do reinstall 25254 server assistant

2886


what is new g/l functionality

2612


mount: mount to NFS server failed: System Error: Connection timed out

3668


What is Mutex error in Triggers?

3069


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

3863