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-06118: NETTCP: unable to complete handshake with ORASRV

1 3269

ORA-06119: NETTCP: spurious client request

1 3147

ORA-06120: NETTCP: network driver not loaded

1 3189

ORA-06121: NETTCP: access failure

1 2979

ORA-06122: NETTCP: setup failure

1 2759

ORA-06123: NETTCP: cannot set KEEPALIVE

1 3271

ORA-06124: NETTCP: timeout waiting for ORASRV

1 3177

ORA-06125: NETTCP: ORASRV exited unexpectedly

1 3688

ORA-06126: NETTCP: ORASRV unable to open network connection

1 2865

ORA-06127: NETTCP: unable to change username

1 2753

ORA-06128: NETTCP: unable to create mailbox

1 3042

ORA-06129: NETTCP: unable to transfer socket ownership to ORASRV

1 2743

ORA-06130: NETTCP: host access denied

1 2865

ORA-06131: NETTCP: user access denied

1 3113

ORA-06132: NETTCP: access denied, wrong password

1 3739


Un-Answered Questions { Database Errors }

How will you Handle Error in SQL SERVER 2008?

2439


NZE-28868: Peer certificate chain check failed.

2860


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

2853


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

2264


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

3703


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

2704


NZE-28890: Entrust Login Failed

1916


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

2704


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

4036


IMG-02003: 2FF03 - incorrect color histogram feature specification

1757


what is the instrument that used in Mechanical Energy??

2731


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

8871


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

3435


how can i get the question papers of year 2006 and 2007 of 12th commerce gujarat board

2253


In my project I am using star schema and only diimension tables are loaded and not fact tables any one can help me why it is happening? Plase guide me.

2942