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-22971: invalid datatype for PRIMARY KEY-based object identifier

1 3493

ORA-22972: NULL value not allowed in PRIMARY KEY-based object identifier

1 3203

ORA-22973: size of object identifier exceeds maximum size allowed

1 4790

ORA-22974: missing WITH OBJECT OID clause

1 4475

ORA-22975: cannot create a PRIMARY KEY-based REF to this object view

1 2714

ORA-22976: incorrect number of arguments to MAKE_REF

1 2967

ORA-22977: missing or invalid attribute

1 2752

ORA-22978: only simple attribute name is allowed in the WITH OBJECT OID clause

1 2904

ORA-22979: cannot INSERT object view REF or user-defined REF

1 4157

ORA-22980: must specify a set of attributes for the WITH OBJECT OID clause

1 3416

ORA-22981: must specify a table/view having system generated OID

1 3013

ORA-22982: cannot create sub-view under this view

1 3036

ORA-22983: not a user-defined REF

1 2672

ORA-22984: view query cannot contain references to a super view

1 3206

ORA-22990: LOB locators cannot span transactions

1 9887


Un-Answered Questions { Database Errors }

ORA-16626: failed to enable specified object

2218


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

3385


what is new g/l functionality

2614


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

2650


What is the use of NOLOCK locking hint?

1788


ORA-26095: unprocessed stream data exists

3578


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

3864


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

6746


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

2434


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.

2870


[ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) Unsuccessful: alter table user.CEN_USER_MASTER add constraint FKF4EDEDC3D0BAAE75 foreign key (ROLE_ID) references user.CEN_ROLE_MASTER [ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) ORA-02275: such a referential constraint already exists in the table

2731


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

2155


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

2410


When do you get "getwmicomexception"?

2682


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

2658