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-02464: Cluster definition can not be both HASH and INDEX

1 2988

ORA-02465: Inappropriate use of the HASH IS option

1 3103

ORA-02466: The SIZE and INITRANS options cannot be altered for HASH CLUSTERS.

1 3286

ORA-02467: Column referenced in expression not found in cluster definition

1 3149

ORA-02468: Constant or system variable wrongly specified in expression

1 3424

ORA-02469: Hash expression does not return an Oracle Number.

1 3399

ORA-02470: TO_DATE, USERENV, or SYSDATE incorrectly used in hash expression.

1 3561

ORA-02471: SYSDATE, UID, USER, ROWNUM, or LEVEL incorrectly used in hash expre\ssion.

1 2853

ORA-02472: PL/SQL functions not allowed in hash expressions

1 3403

ORA-02473: Error while evaluating the cluster's hash expression.

1 3506

ORA-02474: Fixed hash area extents used (string) exceeds maximum allowed (string)

1 2548

ORA-02475: maximum cluster chain block count of string has been exceeded

1 9361

ORA-02476: can not create index due to parallel direct load on table

1 6853

ORA-02477: can not perform parallel direct load on object string

1 3981

ORA-02478: merge into base segment would overflow MAXEXTENTS limit

1 4593


Un-Answered Questions { Database Errors }

ORA-26084: direct path context already finished

1998


[ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) Unsuccessful: alter table user.CEN_USER_MASTER add constraint FKF4EDEDC3D0BAAE75 foreign key (ROLE_ID) references user.CEN_ROLE_MASTER [ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) ORA-02275: such a referential constraint already exists in the table

2775


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

1817


ORA-16627: No standby databases support the overall protection mode.

4037


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

2003


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

2580


NZE-28890: Entrust Login Failed

1924


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

2033


How to solve -805 error i.e. Bind issue. There are two conditions- 1) If you have access to the database table 2) If you don't have access to the table

2697


why we are using shift key in unix shell script

3230


ORA-26032: index string.string loading aborted after string keys

2177


What is the use of NOLOCK locking hint?

1832


i have created ODBC through Data sources and tests completed sucessfully. when i am Trying to connect SQL Server through ODBC (ODBC :Oracle Open Client Adapter for ODBC 2.0.2.15.0 Microsoft SQL Server 09.00.3054) unable to Connect to SQL*Plus: Release 8.0.4.0.0. it is given following error-message . Error: ORA-03121: NO interface driver connected- function not performed.

2850


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

2264


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

2710