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-12452: label tag string already exists

1 3502

ORA-12453: label string already exists

1 4523

ORA-12454: label string does not exist for policy string

1 3563

ORA-12461: undefined level string for policy string

1 3156

ORA-12462: undefined compartment string for policy string

1 2982

ORA-12463: undefined group string for policy string

1 3101

ORA-12464: invalid characters in label component string

1 3514

ORA-12465: Not authorized for read or write on specified groups or compartments

1 3367

ORA-12466: default level is greater than the user's maximum

1 2807

ORA-12467: minimum label can contain a level only

1 3109

ORA-12468: max write level does not equal max read level

1 3097

ORA-12469: no user levels found for user string and policy string

1 3388

ORA-12470: NULL or invalid user label: string

1 3296

ORA-12471: Specified compartment or group is not authorized for user

1 3088

ORA-12472: policy string is being used

1 3310


Un-Answered Questions { Database Errors }

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

2715


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

2722


write a database figure to implement the master detained relationship.

3019


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

3440


ORA-26094: stream format error: input column overflow

2859


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

3229


I entered the data in SQL toad version 9.0.1 in English and Arabic language but when i do the query i get the data in Arabic language with (??? question mark) ,please your support.

1709


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

3916


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

2589


What is the use of NOLOCK locking hint?

1837


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

2716


why we are using shift key in unix shell script

3238


IMP-00070: Lob definitions in dump file are inconsistent with database.

1801


ORA-26082: load of overlapping segments on table string.string is not allowed

1823


IMP-00064: Definition of LOB was truncated by export

6473