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-06449: The list IO or the sysvendor is not installed.

1 3155

ORA-06503: PL/SQL: Function returned without value

1 5937

ORA-06504: PL/SQL: Return types of Result Set variables or query do not match

1 6439

ORA-06505: PL/SQL: variable requires more than 32767 bytes of contiguous memory

1 3959

ORA-06510: PL/SQL: unhandled user-defined exception

1 5538

ORA-06511: PL/SQL: cursor already open

1 8892

ORA-06512: at stringline string

1 4433

ORA-06513: PL/SQL: index for PL/SQL table out of range for host language array

1 5807

ORA-06514: PL/SQL: The remote call cannot be handled by the server

1 3693

ORA-06515: PL/SQL: unhandled exception string

1 5600

ORA-06516: PL/SQL: the Probe packages do not exist or are invalid

1 3493

ORA-06517: PL/SQL: Probe error - string

1 3916

ORA-06518: PL/SQL: Probe version string incompatible with version string

1 3353

ORA-06519: active autonomous transaction detected and rolled back

1 5531

ORA-06520: PL/SQL: Error loading external library

1 9010


Un-Answered Questions { Database Errors }

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?

2760


ORA-26076: cannot set or reset value after direct path structure is allocated

2028


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

2465


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

1996


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

2703


ORA-16626: failed to enable specified object

2268


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

2703


How to view the error log for any specific instance?

2531


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

1812


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

2264


write a database figure to implement the master detained relationship.

3007


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

2714


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

3435


What is the use of NOLOCK locking hint?

1829


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.............

2855