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-02315: incorrect number of arguments for default constructor

1 7733

ORA-02320: failure in creating storage table for nested table column string

1 5562

ORA-02322: failure in accessing storage table of the nested table column

1 3010

ORA-02324: more than one column in the SELECT list of THE subquery

1 4979

ORA-02327: cannot create index on expression with datatype string

1 5585

ORA-02329: column of datatype string cannot be unique or a primary key

1 4287

ORA-02330: datatype specification not allowed

1 5101

ORA-02331: cannot create constraint on column of datatype string

1 3737

ORA-02332: cannot create index on attributes of this column

1 3249

ORA-02333: cannot create constraints on attributes of this column

1 3334

ORA-02334: cannot infer type for column

1 3090

ORA-02335: invalid datatype for cluster column

1 3267

ORA-02336: column attribute cannot be accessed

1 3416

ORA-02337: not an object type column

1 4737

ORA-02338: missing or invalid column constraint specification

1 3817


Un-Answered Questions { Database Errors }

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

2709


IMP-00064: Definition of LOB was truncated by export

6465


today's peformance is less than yesturday.it took 1 mint and today's performance is 7 mints.guys can anyone answer to mu question in sql

2517


ORA-26027: unique index string.string partition string initially in unusable state

6790


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

2033


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

2298


what is the instrument that used in Mechanical Energy??

2733


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

2253


What is Mutex error in Triggers?

3118


why we are using shift key in unix shell script

3229


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

2229


What is the use of NOLOCK locking hint?

1832


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

1665


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

2709


What is live lock, deadlock and what is Lock escalation?

2495