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

CLSR-00002: Oracle error encountered while executing string

1 2987

CLSR-00003: ORACLE_HOME environment variable not set

1 3353

CLSR-00004: Error encountered at string, category=number, operation=string, OS error=number

1 3148

CLSR-00005: Error encountered during memory allocation

1 2864

CLSR-00006: Error encountered when writing file string

1 2653

CLSR-00007: Error encountered when reading file string

1 2758

CLSR-00501: Error number encountered when connecting to EVM daemon

1 2762

CLSR-00502: Error number encountered when subscribing an EVM event

1 2711

CLSR-00503: Error number encountered when creating an EVM event

1 2730

CLSR-00504: Error number encountered when posting an EVM event

1 3223

CLSR-00505: Empty event type is specified

1 2667

CLSR-00506: Unmatched resource name prefix string is specified

1 2939

CLSR-00507: The length of the facility name string exceeds the limit (number)

1 2696

CLSR-00508: Invalid message number number

1 3014

CLSR-00509: Unable to initialize NLS

1 3957


Un-Answered Questions { ERRORS }

during the rebate processing i got error that THE SALES VOLUME FOR AGREEMENT <101> IS NOT CURRENT.SO HOW TO RESOLVE THIS ISSUES?

3447


Hi can any one help me below two steps in sap FICO, 1.Create document number ranges for company code. 2.Copy document number ranges to fiscal year. was trying to do it but i am not able to completing successfully,

3140


dear sir 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. thanking you your's faithfully soma saha

2371


Write down the difference between c. Loop and goto statement d. (!0) and (!1) e. (1= =! 1) and (1!=1) f. NULL and !NULL

3765


RMAN-05017: no copy of datafile number found to recover

2356


IMP-00064: Definition of LOB was truncated by export

6358


The employee runs big client-server applications and must quickly transfer large files. The company wants the best cost/benefit on this connection. What would be the most practical solution?

2746


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

1723


I have got one job selection order from DECON ENGG(HRD), he told me to send 2000 rs of demand draff i have send the demand draff after some time a got a job selection order in banglore but he have written that u have to give 550 rs of Guidency fees in bangalore i dont understant what to do

2583


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

2747


ORA-26094: stream format error: input column overflow

2747


What is the use of NOLOCK locking hint?

1723


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

2476


when i open the system error dialog box come memory could not be read some.

2449


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

2596