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

RMAN-06726: could not locate archivelog string

1 8876

RMAN-06727: could not locate datafilecopy string

1 3704

RMAN-06728: could not locate controlfilecopy string

1 3392

RMAN-06729: no backup of the SPFILE found to restore

1 6561

RMAN-06730: no channel to restore a backup of the SPFILE

1 4909

RMAN-06731: command string:string%% complete, time left number:number:number

1 4660

RMAN-06732: database dropped

1 2902

RMAN-06733: database unregistered from the recovery catalog

2 3617

RMAN-06734: Do you really want to drop all backups and the database (enter YES or NO)?

1 3302

RMAN-06735: Do you really want to drop the database (enter YES or NO)?

1 2859

RMAN-06736: Do you really want to unregister the database (enter YES or NO)?

1 3063

RMAN-06737: database name "string" does not match target database name "string"

1 2717

RMAN-06738: database name "string" is not unique in the recovery catalog

1 2752

RMAN-06739: database "string" is not found in the recovery catalog

1 3327

RMAN-06740: database name is not specified

1 6800


Un-Answered Questions { Database Errors }

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

3668


ORA-26094: stream format error: input column overflow

2802


NZE-28890: Entrust Login Failed

1882


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

1708


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


When i am connect database through toad,one error occured. ORA-12514: TNS:listener does not currently know of service requested in connect descriptor. plz help me thanks advance.............

2802


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

2155


When do you get "getwmicomexception"?

2682


ORA-16516: The current state is invalid for the attempted operation.

8820


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

3385


NZE-28868: Peer certificate chain check failed.

2801


ORA-07497: sdpri: cannot create trace file 'string'; errno = string.

2801


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

2648


What is Mutex error in Triggers?

3066


What severity level errors are managed in TRY-CATCH block?

2223