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-17500: ODM err:string

1 4736

ORA-17501: logical block size string is invalid

2 9847

ORA-17502: ksfdcre:string Failed to create file string

1 7652

ORA-17503: ksfdopn:string Failed to open file string

1 5154

ORA-17504: ksfddel:Failed to delete file string

1 3805

ORA-17505: ksfdrsz:string Failed to resize file to size string blocks

1 11397

ORA-17506: I/O Error Simulation

1 3044

ORA-17507: I/O request size string is not a multiple of logical block size

1 10795

ORA-17508: I/O request buffer ptr is not alligned

1 3531

ORA-17509: Attempt to do i/o beyond block1 offset

1 3306

ORA-17510: Attempt to do i/o beyond file size

1 13485

ORA-17610: file 'string' does not exist and no size specified

1 6488

ORA-17611: ksfd: file 'string' cannot be accessed, global open closed

1 4288

ORA-17612: Failed to discover Oracle Disk Manager library, return value string

1 9622

ORA-17613: Failed to initialize Oracle Disk Manager library: string

1 3420


Un-Answered Questions { Database Errors }

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

3384


What is Mutex error in Triggers?

3064


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

3155


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

2520


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

1743


ORA-26084: direct path context already finished

1949


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

2651


ORA-26079: file "string" is not part of table string.string

1958


How will you Handle Error in SQL SERVER 2008?

2401


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

2801


IMP-00063: Warning: Skipping table "string"."string" because object type "string"."string" cannot be created or has different identifier

2731


IMP-00096: Warning: Skipping table "string"."string" because type synonym "string"."string" cannot be created

1616


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

2432


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

2647


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?

2721