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-00303: Non-hex character encountered where hex char expected

1 4170

SQL*Loader-00304: Illegal combination of non-alphanumeric characters

1 9437

SQL*Loader-00305: More than one end of file character encountered

1 2894

SQL*Loader-00306: Token longer than max allowable length of number chars

1 3329

SQL*Loader-00307: Warning: conflicting lengths number and number specified for column string table string

1 3948

SQL*Loader-00308: %s SQL string of column string must be in double quotes.

1 3063

SQL*Loader-00309: No SQL string allowed as part of string field specification

1 9248

SQL*Loader-00350: Syntax error at line number.

1 3904

SQL*Loader-00401: End field position number must be greater than or equal to start number

1 8608

SQL*Loader-00402: Unable to determine length of column string from specification

1 3222

SQL*Loader-00403: Referenced column string not present in table string.

1 3002

SQL*Loader-00404: Column string present more than once in string's INTO TABLE block.

1 4679

SQL*Loader-00405: Need termination delim with optional enclosure delim: column string table string

1 3918

SQL*Loader-00406: If data is all generated, number to load cannot be ALL

1 8541

SQL*Loader-00407: If data is all generated, number to skip is meaningless

1 2780


Un-Answered Questions { Database Errors }

hi. i m Anil patel when reconcile 57f4 chalan(subcontraction with out excise)i m facing error like short by material 220 kg. even i have migo all material.

2571


IMP-00096: Warning: Skipping table "string"."string" because type synonym "string"."string" cannot be created

1664


IMP-00070: Lob definitions in dump file are inconsistent with database.

1796


NZE-28868: Peer certificate chain check failed.

2861


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

2714


IMP-00060: Warning: Skipping table "string"."string" because object type "string"."string" does not exist or has different identifier

3223


today's peformance is less than yesturday.it took 1 mint and today's performance is 7 mints.guys can anyone answer to mu question in sql

2517


What is the use of NOLOCK locking hint?

1831


ORA-16627: No standby databases support the overall protection mode.

4036


when i ran any workflow or session, getting below error: seesion task instance[s_xxx]: Execution terminated unexpecterdly

2297


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

2227


NZE-28890: Entrust Login Failed

1918


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

2706


How will you Handle Error in SQL SERVER 2008?

2440


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

1998