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

SQL*Loader-00471: OID or SID clause has an argument that is CONSTANT

1 3131

SQL*Loader-00472: collections can contain only one non FILLER field specification

1 2740

SQL*Loader-00473: nesting of collections is not allowed.

1 2798

SQL*Loader-00474: no value set for dynamic file for column string in table string row number

1 2979

SQL*Loader-00475: field for dynamic file name is string in table string

1 3175

SQL*Loader-00476: count of elements for collection is not set or null, 0 will be used

1 2505

SQL*Loader-00477: REF directive for field string requires at least two arguments

1 2860

SQL*Loader-00478: unable to continue due to missing filename for LOBFILE or SDF

1 3093

SQL*Loader-00479: REF directive for column string expects number arguments; found number.

1 3367

SQL*Loader-00480: EXPRESSION may not be used with elements of a collection.

1 2868

SQL*Loader-00481: HIDDEN may not be used with non-scalar fields.

1 3036

SQL*Loader-00486: sql-strings may not be specified for collection field string

1 3178

SQL*Loader-00487: COUNT clause required for collection string

1 2839

SQL*Loader-00488: %s not a named collection type for filler field string

1 3010

SQL*Loader-00500: Unable to open file (string)

1 3028


Un-Answered Questions { Database Errors }

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

2151


When do you get "getwmicomexception"?

2678


ORA-26084: direct path context already finished

1945


IMP-00063: Warning: Skipping table "string"."string" because object type "string"."string" cannot be created or has different identifier

2727


How to solve -805 error i.e. Bind issue. There are two conditions- 1) If you have access to the database table 2) If you don't have access to the table

2633


ORA-26094: stream format error: input column overflow

2794


I entered the data in SQL toad version 9.0.1 in English and Arabic language but when i do the query i get the data in Arabic language with (??? question mark) ,please your support.

1645


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

3857


NZE-28868: Peer certificate chain check failed.

2797


NZE-28890: Entrust Login Failed

1871


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

2641


In my project I am using star schema and only diimension tables are loaded and not fact tables any one can help me why it is happening? Plase guide me.

2868


IMG-02003: 2FF03 - incorrect color histogram feature specification

1704


What is the meaning of lock escalation and why/how to stop this?

2647


What is the use of NOLOCK locking hint?

1780