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

PCB-00301: Use of non-ANSI function is an Oracle extension

1 2826

PCB-00302: This statement is not supported by ANSI

1 3051

PCB-00303: Dynamic SQL and PL/SQL are Oracle extensions to ANSI SQL

1 2721

PCB-00304: Oracle extension to the WHENEVER statement

1 2862

PCB-00305: Oracle extension to the COMMIT and ROLLBACK statements

1 3312

PCB-00306: CREATE FUNCTION/PROCEDURE/PACKAGE/TRIGGER are Oracle extensions

1 3062

PCB-00307: DROP TABLE statement is an Oracle extension

1 3079

PCB-00308: FOR clause is an Oracle extension

1 2887

PCB-00309: The CONNECT statement is Oracle implementation dependent

1 2941

PCB-00310: AT clause is an Oracle extension

1 3781

PCB-00311: Datatype equivalencing is an Oracle extension

1 2835

PCB-00312: Keyword WORK required here by ANSI

1 3007

PCB-00313: TO SAVEPOINT clause is an Oracle extension

1 3067

PCB-00314: DECLARE DATABASE is an Oracle extension

1 2789

PCB-00315: DECLARE TABLE is an Oracle extension

1 2676


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.

2530


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

3984


ORA-26095: unprocessed stream data exists

3558


What is live lock, deadlock and what is Lock escalation?

2428


How will you Handle Error in SQL SERVER 2008?

2400


ORA-26094: stream format error: input column overflow

2794


[ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) Unsuccessful: alter table user.CEN_USER_MASTER add constraint FKF4EDEDC3D0BAAE75 foreign key (ROLE_ID) references user.CEN_ROLE_MASTER [ERROR] [main 11:01:20] (JCLLoggerAdapter.java:error:454) ORA-02275: such a referential constraint already exists in the table

2719


ORA-16626: failed to enable specified object

2210


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

2443


ORA-26084: direct path context already finished

1946


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

2647


IMP-00064: Definition of LOB was truncated by export

6411


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


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

1766