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

PLS-00455: cursor 'string' cannot be used in dynamic SQL OPEN statement

1 5090

PLS-00456: item 'string' is not a cursor

1 9909

PLS-00457: expressions have to be of SQL types

1 6802

PLS-00458: subprogram 'string' cannot be called from a REPEATABLE subprogram

1 3920

PLS-00459: this feature is not allowed in REPEATABLE subprogram

1 5038

PLS-00460: REPEATABLE subprogram 'string' has to be RNDS, WNDS, RNPS, and WNPS

1 3039

PLS-00461: mismatch REPEATABLE information between specification and body of 'string'

1 3466

PLS-00462: nested subprogram 'string' has to be REPEATABLE

1 2988

PLS-00483: exception 'string' may appear in at most one exception handler in this block

1 4371

PLS-00484: redundant exceptions 'string' and 'string' must appear in same exception handler

1 4302

PLS-00485: in exception handler, 'string' must be an exception name

1 3607

PLS-00486: select list cannot be enclosed in parentheses

1 2970

PLS-00487: Invalid reference to variable 'string'

1 4880

PLS-00488: invalid variable declaration: object 'string' must be a type or subtype

1 5198

PLS-00489: invalid table reference: 'string' must be a column in this expression

1 3306


Un-Answered Questions { Database Errors }

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

1990


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


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

2183


ORA-26094: stream format error: input column overflow

2859


ORA-16626: failed to enable specified object

2278


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


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

2761


NZE-28890: Entrust Login Failed

1932


ORA-16627: No standby databases support the overall protection mode.

4042


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

2035


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

2502


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

1823


ORA-26095: unprocessed stream data exists

3642


IMP-00064: Definition of LOB was truncated by export

6473


What is Mutex error in Triggers?

3132