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

ORA-01725: USERENV('COMMITSCN') not allowed here

1 3296

ORA-01734: illegal parameters - EXTENT MIN higher than EXTENT MAX

1 3512

ORA-01742: comment not terminated properly

1 13634

ORA-01743: only pure functions can be indexed

1 6671

ORA-01751: Invalid dump undo option

1 3093

ORA-01752: cannot delete from view without exactly one key-preserved table

1 6791

ORA-01754: a table may contain only one column of type LONG

1 5499

ORA-01755: Must specify an extent number or block number

1 3969

ORA-01757: Must specify an object number

1 3359

ORA-01761: DML operation does not map to a unique table in the join

1 3101

ORA-01763: update or delete involves outer joined table

1 3656

ORA-01764: new update value of join is not guaranteed to be unique

1 3420

ORA-01769: duplicate CLUSTER option specifications

1 3466

ORA-01771: illegal option for a clustered table

1 4349

ORA-01772: Must specify a value for LEVEL

1 5191


Un-Answered Questions { ERRORS }

how to overload main method in java?

3062


How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)

1448


[ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) Unsuccessful: alter table user.CEN_USER_MASTER add constraint FKF4EDEDC3D0BAAE75 foreign key (ROLE_ID) references user.CEN_ROLE_MASTER [ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) ORA-02275: such a referential constraint already exists in the table

2738


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

2720


How to view the error log for any specific instance?

2496


How will you Handle Error in SQL SERVER 2008?

2416


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

1981


I want singal maintainer(iii& ii) solved question paper in every year in every board in rrb. If you collect these and sent these my mail-id i shall very grateful to you.

2446


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

2532


ORA-26095: unprocessed stream data exists

3594


well i dont have toefl and gre scor all that stuff, and i have 7 backlogs, tell me the chances of getting the visa.

2520


hi, i am trying to do modular test tree in winrunner but i am getting error like "Error in the Expression list",can you please tell e what kind of error is this? thanks.

2367


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

2300


invalid quantity specification negative quantity are not allowed for this item please check this item definition quantity

3397


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

2665