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-00337: log file 'string' does not exist and no size specified

1 2976

ORA-00338: log string of thread string is more recent than controlfile

1 10105

ORA-00339: archived log does not contain any redo

1 4608

ORA-00340: IO error processing online log string of thread string

ABC,

2 13070

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

1 10116

ORA-00342: archived log does not have expected resetlogs SCN string

1 6123

ORA-00343: too many errors, log member closed

1 3314

ORA-00344: unable to re-create online log 'string'

1 4613

ORA-00345: redo log write error block string count string

1 4190

ORA-00346: log member marked as STALE

1 4439

ORA-00347: log string of thread string, expected block size string doesn't match string

1 2975

ORA-00348: single-process redo failure. Must abort instance

1 2951

ORA-00349: failure obtaining block size for 'string'

1 6474

ORA-00350: log string of instance string (thread string) needs to be archived

1 5136

ORA-00351: recover-to time invalid

1 7224


Un-Answered Questions { Database Errors }

ORA-07497: sdpri: cannot create trace file 'string'; errno = string.

2868


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.

2948


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

2868


hp asking for replication floppy to do reinstall 25254 server assistant

2970


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

2701


what is new g/l functionality

2681


what is the instrument that used in Mechanical Energy??

2743


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

2789


ORA-26095: unprocessed stream data exists

3644


ORA-26084: direct path context already finished

2001


IMP-00064: Definition of LOB was truncated by export

6473


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

2724


I entered the data in SQL toad version 9.0.1 in English and Arabic language but when i do the query i get the data in Arabic language with (??? question mark) ,please your support.

1710


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

2715


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

2183