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-09716: kslcll: Unable to fix in-flux lamport latch.

1 2899

ORA-09717: osnsui: maximum number of user interrupt handlers exceeded.

1 3026

ORA-09718: osnsui: cannot set up user interrupt handler.

1 3232

ORA-09719: osncui: invalid handle.

1 2839

ORA-09740: slsget: cannot get virtual memory region statistics.

1 3235

ORA-09741: spwat: error waiting for a post.

1 3582

ORA-09742: sppst: error during a post.

1 2960

ORA-09743: smscre: could not attach shared memory.

1 3298

ORA-09744: smsget: mmap returned an error.

1 2720

ORA-09745: smscre: vm_allocate error, unable to create shared memory.

1 3184

ORA-09746: smscre: shared memory attach address incorrect.

1 3021

ORA-09747: pw_detachPorts: server call pws_detach failed.

1 2930

ORA-09748: pws_look_up: fork failed

1 2764

ORA-09749: pws_look_up: port lookup failure

1 3893

ORA-09750: pw_attachPorts: port_rename failed.

1 3177


Un-Answered Questions { Database Errors }

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

2495


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.

2852


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

1667


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

1801


How will you Handle Error in SQL SERVER 2008?

2444


NZE-28868: Peer certificate chain check failed.

2864


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

2699


[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

2776


When do you get "getwmicomexception"?

2733


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

2713


ORA-26094: stream format error: input column overflow

2857


ORA-26095: unprocessed stream data exists

3642


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

1990


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

2035


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

2233