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

SQL*Loader-00934: Incorrect data file string specified for table string

1 2755

SQL*Loader-00935: Error verifying required option for parallel load.

1 3391

SQL*Loader-00937: parallel load requested and string has enabled triggers or constraints

1 3773

SQL*Loader-00938: partition load requested and string has enabled triggers or constraints

1 3143

SQL*Loader-00939: OCI error while string for table string partition string

1 3106

SQL*Loader-00940: UPI error while setting NCHAR bind attributes for column string table string

1 3313

SQL*Loader-00941: Error during describe of table string

1 6282

SQL*Loader-00942: partition string not part of table string

1 3155

SQL*Loader-00943: incorrect datafile string specified for table string partition string

1 2861

SQL*Loader-00944: error preparing insert statement for table string.

1 3254

SQL*Loader-00945: record size number too large for direct path

1 2840

SQL*Loader-00946: OCI error while string for table string subpartition string

1 2879

SQL*Loader-00947: subpartition load requested and string has enabled triggers or constraints

1 3593

SQL*Loader-00948: subpartition string not part of table string

1 3031

SQL*Loader-00949: incorrect datafile string specified for table string subpartition string

1 2787


Un-Answered Questions { ERRORS }

hi all, I am in the process of learning qtp. i havve windows vista in my system whenever i try to run flight reservation application , i am getting the following error "Operation must use an updateable query Fractional truncation (null) . And am unable to open Mercury tours web application due to some other error Can anyone help me please

5391


hp asking for replication floppy to do reinstall 25254 server assistant

2894


a pleasant evening. i would like to ask a question about yellow journalism. This is another term for sensationalism right? i just wanted to know a lot of articles or studies with regards to the effect this yellow journalism could effect the interpretation of the students,especially college students who are taking Communication course. please help me answer this.

2244


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

2675


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

2604


what are the test cases for ticket vending machine?

4290


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

3868


who have build this website?

2280


ORA-26079: file "string" is not part of table string.string

1962


WHAT IS A VECTOR ? HOW IS DIFFER FORM AN ARRAY

2548


wut is pre law

2728


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

2658


A sample program using data structure? what is file handling?

3381


how do i copy first 10 records from one sequntial file to another sequential file by using JCL program?

2745


Hi, I am trying to encode data from flatfile and then to decode the encoded data to original form. Procedures that I followed:- 1. Encoded the field 'A_ID' using AES_ENCRYPT(A_ID,'abd') in the expression transformation. The A_ID got encoded in the output table(oracle) 2. To decode this back I used AES_DECRYPT(A_ID,'abd'). But after executing the workflow, I am not getting any data in output. can anybody tell me how to decrypt the encoded data back to original form ??

1688