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




ERRORS Interview Questions
Questions Answers Views Company eMail

PLS-00352: Unable to access another database 'string'

1 10318

PLS-00353: 'string' must name a user in the database

1 3134

PLS-00354: username must be a simple identifier

1 3529

PLS-00355: use of pl/sql table not allowed in this context

1 9354

PLS-00356: 'string' must name a table to which the user has access

1 5116

PLS-00357: Table,View Or Sequence reference 'string' not allowed in this context

2 9939

PLS-00358: column 'string' exists in more than one table; use qualifier

1 7314

PLS-00359: assignment target in 'string' must have components

1 2695

PLS-00360: cursor declaration without body needs return type

1 9206

PLS-00361: IN cursor 'string' cannot be OPEN'ed

1 7789

PLS-00362: invalid cursor return type; 'string' must be a record type

1 3566

PLS-00363: expression 'string' cannot be used as an assignment target

1 6359

PLS-00364: loop index variable 'string' use is invalid

1 13597

PLS-00366: subtype of a NOT NULL type must also be NOT NULL

1 3523

PLS-00367: a RAISE statement with no exception name must be inside an exception handler

1 5390


Un-Answered Questions { ERRORS }

How to resolve QSM-01108 error. I have no OR conditions in my query, but do have 9 IN conditions. The error says the max limit is 2 while I have 257 number of disjuncts. However, if I remove even a single IN condition, the query is rewritten. I cannot change my query. How can I resolve this issue?

2723


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

2651


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

3668


NZE-28868: Peer certificate chain check failed.

2803


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

2155


write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;

1936


IMP-00064: Definition of LOB was truncated by export

6416


How can be avoid the Error while being Human we do mistakes???

2595


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

2707


What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).

2375


WHAT IS A VECTOR ? HOW IS DIFFER FORM AN ARRAY

2537


how to run the application using winrunner for data driven test?

2392


can a merchant exporter adjust or claim refund of input service tax ??

2285


ORA-26028: index string.string initially in unusable state

3864


java.sql.SQLException:Invalid state, the statement object is closed Hai all i got this error when i am multiple times referesh web page

6659