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-06957: No SID is currently available

1 2716

ORA-06958: Failed to access configuration file

1 3247

ORA-06959: Buffer I/O quota is too small

1 2935

ORA-06960: Failed to access log file

1 2720

ORA-06970: X.25 Driver: remote host is unknown

1 2753

ORA-06973: X.25 Driver: invalid buffer size

1 2693

ORA-06974: X.25 Driver: SID lookup failure

1 2939

ORA-06975: X.25 Driver: connect to host failed

1 2973

ORA-06976: X.25 Driver: endpoint creation failure

1 2618

ORA-06977: X.25 Driver: X.25 Level 2 failure

1 2783

ORA-06978: X.25 Driver: Too many callback tries

1 2764

ORA-06979: X.25 Driver: server cannot start oracle

1 2768

ORA-07200: slsid: oracle_sid not set.

1 3801

ORA-07201: slhom: oracle_home variable not set in environment.

1 3307

ORA-07202: sltln: invalid parameter to sltln.

1 7201


Un-Answered Questions { Database Errors }

RMAN-05017: no copy of datafile number found to recover

2410


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?

2719


NZE-28890: Entrust Login Failed

1871


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

2518


How to view the error log for any specific instance?

2476


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

3150


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

2647


How will you Handle Error in SQL SERVER 2008?

2399


what is the instrument that used in Mechanical Energy??

2676


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

2150


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

2658


when i ran any workflow or session, getting below error: seesion task instance[s_xxx]: Execution terminated unexpecterdly

2225


today's peformance is less than yesturday.it took 1 mint and today's performance is 7 mints.guys can anyone answer to mu question in sql

2443


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

2641


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

1954