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-39317: illegal validation_check() call: only applys after clone/sync_code/valdation_check

1 2753

ORA-39500: failed to notify CRS of a Startup/Shutdown event for database "string", instance "string" (ignored)

1 2885

ORA-39501: failed to notify CRS of a Startup/Shutdown event [number] (ignored)

1 2935

ORA-39502: failed to notify CRS of a Startup/Shutdown event [number] (ignored)

1 2816

ORA-39503: failed to notify CRS of a Startup/Shutdown event [number] (ignored)

1 2898

ORA-39504: failed to notify CRS of a Startup/Shutdown event [number] (ignored)

1 2783

ORA-39600: Queue keys needs to be a suffix of cluster key.

1 2995

ORA-39601: Hash key is required.

1 3236

ORA-39700: database must be opened with UPGRADE option

2 8162

ORA-39701: database must be mounted EXCLUSIVE for UPGRADE or DOWNGRADE

1 7498

ORA-39702: database not open for UPGRADE or DOWNGRADE

1 7951

ORA-39703: server version and script version do not match

1 3480

ORA-39704: permission to modify component registry entry denied

1 3942

ORA-39705: component 'string' not found in registry

1 6639

ORA-39706: schema 'string' not found

1 3288


Un-Answered Questions { Database Errors }

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

6746


ORA-16626: failed to enable specified object

2218


NZE-28868: Peer certificate chain check failed.

2803


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

2649


ORA-26084: direct path context already finished

1949


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

2522


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

3385


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

3863


ORA-26030: index string.string had string partitions made unusable due to:

1941


How will you Handle Error in SQL SERVER 2008?

2403


hp asking for replication floppy to do reinstall 25254 server assistant

2886


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

3169


What is Mutex error in Triggers?

3069


java.sql.SQLException:Invalid state, the statement object is closed Hai all i got this error when i am multiple times referesh web page

6652


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

2434