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-32307: must use FROM ONLY clause when referencing an object table

1 3116

ORA-32308: object materialized views must use SELECT *

1 2946

ORA-32309: object mview type "string"."string" does not match the master table type

1 3110

ORA-32310: object materialized views must select from an object table

1 2876

ORA-32311: materialized view definition query selects an unsupported user-defined type

1 2879

ORA-32312: cannot refresh a secondary materialized view "string"."string"

1 2994

ORA-32313: REFRESH FAST of "string"."string" unsupported after PMOPs

1 3657

ORA-32314: REFRESH FAST of "string"."string" unsupported after deletes/updates

1 3914

ORA-32315: REFRESH FAST of "string"."string" unsupported after mixed DML and Direct Load

1 2547

ORA-32316: REFRESH FAST of "string"."string" unsupported after mixed DML

1 3211

ORA-32317: cannot run a job from a job

TCS,

1 5024

ORA-32318: cannot rename a materialized view

1 7975

ORA-32319: Cannot use direct loader log to FAST REFRESH materialized view "string"."string"

1 7813

ORA-32320: REFRESH FAST of "string"."string" unsupported after container table PMOPs

2 6275

ORA-32321: REFRESH FAST of "string"."string" unsupported after detail table TRUNCATE

1 5005


Un-Answered Questions { Database Errors }

How to view the error log for any specific instance?

2494


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

2664


ORA-26027: unique index string.string partition string initially in unusable state

6756


Hi guys, I have four tables those are emp,dept,eliminate and uneliminate. i wrote small cursor..when i run, it display one error (ORA-01403 nodata found)... The query is: Declare cursor c1 is select e.ename emp_name from emp e,dept d where e.deptno=d.deptno group by deptno; r1 c1%rowtype; test_emp varchar2(200); begin for r1 in c1 loop begin select eliminate_emp into test_emp from eliminate t,uneliminate ut where t.number=ut.number and t.deptno=e.deptno and rownum<1; end; dbms_output.put_line(r1.emp_name); end loop; end; Thanks...

2617


When do you get "getwmicomexception"?

2692


what is the instrument that used in Mechanical Energy??

2695


What is the use of NOLOCK locking hint?

1800


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

2682


ORA-26095: unprocessed stream data exists

3592


[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

2738


When i am connect database through toad,one error occured. ORA-12514: TNS:listener does not currently know of service requested in connect descriptor. plz help me thanks advance.............

2815


ORA-26094: stream format error: input column overflow

2820


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

2661


invalid quantity specification negative quantity are not allowed for this item please check this item definition quantity

3395


What is Mutex error in Triggers?

3084