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-29384: number of children for plan string exceeds string

1 2557

ORA-29385: cannot create plan directive from string to string

1 2921

ORA-29386: plan or consumer group string is mandatory and cannot be deleted or modified

1 3322

ORA-29387: no top-plans found in the pending area

1 3747

ORA-29388: plan/consumer_group string is part of more than one top-plan

1 3255

ORA-29389: too many errors during validation

1 2882

ORA-29390: some resource plans are not part of any top-plan

1 2988

ORA-29391: %s and string must be mandatory to create a mandatory plan directive

1 3432

ORA-29392: cpu parameters for level string for plan string must be zero

1 3053

ORA-29393: user string does not exist or is not logged on

1 4976

ORA-29394: session id string and serial# string do not exist

1 3442

ORA-29395: cannot set the initial consumer group to string

1 2826

ORA-29396: cannot switch group to string

1 3549

ORA-29397: cannot grant/revoke switch privilege for string

1 4018

ORA-29398: invalid privilege name specified

1 3147


Un-Answered Questions { Database Errors }

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.

2818


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

1723


NZE-28868: Peer certificate chain check failed.

2822


ORA-26095: unprocessed stream data exists

3592


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

2165


How to view the error log for any specific instance?

2494


mount: mount to NFS server failed: System Error: Connection timed out

3678


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

2749


ORA-26082: load of overlapping segments on table string.string is not allowed

1783


ORA-16516: The current state is invalid for the attempted operation.

8833


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

2664


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

2530


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

2812


if the lengths of two wires are same and the area of cross sections is 4:7 then what will be the ratio of current passing through these wires

2718


What is Mutex error in Triggers?

3083