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-22898: existing scope clause on "string" points to a table other than the one mentioned in the referential constraint

1 3413

ORA-22899: cannot specify both scope and rowid constraint on ref column

1 3523

ORA-22900: the SELECT list item of THE subquery is not a collection type

1 3555

ORA-22901: cannot compare nested table or VARRAY or LOB attributes of an object type

1 8432

ORA-22902: CURSOR expression not allowed

1 7367

ORA-22903: MULTISET expression not allowed

1 5593

ORA-22904: invalid reference to a nested table column

1 3216

ORA-22905: cannot access rows from a non-nested table item

1 8002

ORA-22906: cannot perform DML on expression or on nested table view column

1 3862

ORA-22907: invalid CAST to a type that is not a nested table or VARRAY

1 5270

ORA-22908: reference to NULL table value

1 3620

ORA-22909: exceeded maximum VARRAY limit

1 10057

ORA-22910: cannot specify schema name for nested tables

1 3131

ORA-22911: duplicate storage specification for the nested table item

1 2994

ORA-22912: specified column or attribute is not a nested table type

1 5290


Un-Answered Questions { Database Errors }

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

1760


What is Mutex error in Triggers?

3117


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

3703


ORA-26084: direct path context already finished

1994


How to resolve QSM-01108 error. I have no OR conditions in my query, but do have 9 IN conditions. The error says the max limit is 2 while I have 257 number of disjuncts. However, if I remove even a single IN condition, the query is rewritten. I cannot change my query. How can I resolve this issue?

2760


How to view the error log for any specific instance?

2531


When do you get "getwmicomexception"?

2731


When you get following error? Error 3154: The backup set holds a backup of a database other than the existing database.

2577


write a database figure to implement the master detained relationship.

3008


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


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

2705


ORA-26032: index string.string loading aborted after string keys

2176


What is the use of NOLOCK locking hint?

1830


What is SCD (Slowly Changing Dimensions)? What are its types?

2714


what is new g/l functionality

2673