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

RMAN-04025: unable to generate a temporary file

1 8854

RMAN-04026: unable to open a temporary file: "string"

1 4035

RMAN-04027: unable to write to a temporary file: "string"

1 3023

RMAN-04031: initialization parameters used for automatic instance: string

1 3089

RMAN-04032: using contents of file string

1 2842

RMAN-04033: cannot open auxiliary parameter file string

1 4539

RMAN-05000: CONFIGURE AUXNAME required for datafile string

1 3389

RMAN-05001: auxiliary filename string conflicts with a file used by the target database

1 5633

RMAN-05002: aborting point-in-time tablespace recovery

1 3285

RMAN-05003: point-in-time recovery is not allowed for tablespace string

1 3187

RMAN-05004: target database log mode is NOARCHIVELOG

1 3970

RMAN-05005: point-in-time recovery is not allowed for re-created tablespace string

1 4066

RMAN-05006: cannot recover clone standby single tablespaces

1 2774

RMAN-05007: no channel allocated

1 3102

RMAN-05008: SET NEWNAME TO NEW not allowed (datafile string)

1 4842


Un-Answered Questions { Database Errors }

ORA-26027: unique index string.string partition string initially in unusable state

6746


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

1747


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

2107


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

2522


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

2655


How to view the error log for any specific instance?

2486


today's peformance is less than yesturday.it took 1 mint and today's performance is 7 mints.guys can anyone answer to mu question in sql

2453


How will you Handle Error in SQL SERVER 2008?

2403


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

1710


When do you get "getwmicomexception"?

2682


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

2648


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

2804


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


what is new g/l functionality

2611


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

2664