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




ERRORS Interview Questions
Questions Answers Views Company eMail

ORA-39317: illegal validation_check() call: only applys after clone/sync_code/valdation_check

1 2754

ORA-39500: failed to notify CRS of a Startup/Shutdown event for database "string", instance "string" (ignored)

1 2885

ORA-39501: failed to notify CRS of a Startup/Shutdown event [number] (ignored)

1 2935

ORA-39502: failed to notify CRS of a Startup/Shutdown event [number] (ignored)

1 2817

ORA-39503: failed to notify CRS of a Startup/Shutdown event [number] (ignored)

1 2899

ORA-39504: failed to notify CRS of a Startup/Shutdown event [number] (ignored)

1 2784

ORA-39600: Queue keys needs to be a suffix of cluster key.

1 2995

ORA-39601: Hash key is required.

1 3236

ORA-39700: database must be opened with UPGRADE option

2 8162

ORA-39701: database must be mounted EXCLUSIVE for UPGRADE or DOWNGRADE

1 7499

ORA-39702: database not open for UPGRADE or DOWNGRADE

1 7952

ORA-39703: server version and script version do not match

1 3481

ORA-39704: permission to modify component registry entry denied

1 3942

ORA-39705: component 'string' not found in registry

1 6640

ORA-39706: schema 'string' not found

1 3289


Un-Answered Questions { ERRORS }

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

1958


[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

2731


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

2733


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

1970


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

2107


What is Mutex error in Triggers?

3071


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

3385


ORA-26030: index string.string had string partitions made unusable due to:

1941


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.

2804


can a merchant exporter adjust or claim refund of input service tax ??

2284


hai i got one error i,e http status 404 error what is ds why ds is comming

2587


hi, i am trying to do modular test tree in winrunner but i am getting error like "Error in the Expression list",can you please tell e what kind of error is this? thanks.

2354


I am using Qt 5.6 during compilation it stops and gives error about Qmake The process "C:QtQt5.6.35.6.3msvc2015_64inqmake.exe" crashed. Error while building/deploying project untitled1 (kit: Desktop Qt 5.6.3 MSVC2015 64bit) When executing step "qmake"

1804


IMP-00064: Definition of LOB was truncated by export

6415


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

2650