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-00307: requested INSTANCE_NUMBER out of range, maximum is string

1 2928

ORA-00308: cannot open archived log 'string'

1 5290

ORA-00309: log belongs to wrong database

1 5136

ORA-00310: archived log contains sequence string; sequence string required

1 6638

ORA-00311: cannot read header from archived log

1 3604

ORA-00312: online log string thread string: 'string'

1 3181

ORA-00313: open failed for members of log group string of thread string

1 5208

ORA-00314: log string of thread string, expected sequence# string doesn't match string

1 5378

ORA-00315: log string of thread string, wrong thread # string in header

1 7565

ORA-00316: log string of thread string, type string in header is not log file

1 5219

ORA-00317: file type string in header is not log file

1 12311

ORA-00318: log string of thread string, expected file size string doesn't match string

1 3339

ORA-00319: log string of thread string has incorrect log reset status

1 3334

ORA-00320: cannot read file header from log string of thread string

1 6166

ORA-00321: log string of thread string, cannot update log file header

1 8492


Un-Answered Questions { Database Errors }

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

2105


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

2646


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

2432


IMG-02003: 2FF03 - incorrect color histogram feature specification

1706


In my project I am using star schema and only diimension tables are loaded and not fact tables any one can help me why it is happening? Plase guide me.

2870


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

1966


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

2410


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

1616


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.

2799


When do you get "getwmicomexception"?

2680


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

2731


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

2651


Hi, I am trying to encode data from flatfile and then to decode the encoded data to original form. Procedures that I followed:- 1. Encoded the field 'A_ID' using AES_ENCRYPT(A_ID,'abd') in the expression transformation. The A_ID got encoded in the output table(oracle) 2. To decode this back I used AES_DECRYPT(A_ID,'abd'). But after executing the workflow, I am not getting any data in output. can anybody tell me how to decrypt the encoded data back to original form ??

1677


How to view the error log for any specific instance?

2486


ORA-26094: stream format error: input column overflow

2798