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

ORA-02224: EXECUTE privilege not allowed for tables

1 10082

ORA-02225: only EXECUTE and DEBUG privileges are valid for procedures

1 7582

ORA-02226: invalid MAXEXTENTS value (max allowed: string)

1 3567

ORA-02227: invalid cluster name

1 3296

ORA-02228: duplicate SIZE specification

1 3208

ORA-02229: invalid SIZE option value

1 4126

ORA-02230: invalid ALTER CLUSTER option

1 3067

ORA-02231: missing or invalid option to ALTER DATABASE

1 15810

ORA-02232: invalid MOUNT mode

1 5155

ORA-02233: invalid CLOSE mode

1 3121

ORA-02234: changes to this table are already logged

1 3322

ORA-02235: this table logs changes to another table already

1 2770

ORA-02236: invalid file name

1 8613

ORA-02237: invalid file size

1 10036

ORA-02238: filename lists have different numbers of files

1 3423


Un-Answered Questions { Database Errors }

write a database figure to implement the master detained relationship.

2932


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


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

1741


how can i get the question papers of year 2006 and 2007 of 12th commerce gujarat board

2210


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

2152


How will you Handle Error in SQL SERVER 2008?

2400


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


ORA-26095: unprocessed stream data exists

3558


NZE-28868: Peer certificate chain check failed.

2797


NZE-28890: Entrust Login Failed

1872


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

2647


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 ??

1674


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

3858


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

1616


java.sql.SQLException:Invalid state, the statement object is closed Hai all i got this error when i am multiple times referesh web page

6650