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

PLS-00522: MAP methods must return a scalar type.

1 3162

PLS-00523: ORDER methods must return an INTEGER.

1 3166

PLS-00524: The parameter type in an ORDER method must be the containing object type.

1 2914

PLS-00525: Within SQL statements, only equality comparisons of objects are allowed without a map or order function.

1 3004

PLS-00526: A MAP or ORDER function is required for comparing objects in PL/SQL.

1 3793

PLS-00527: MAP or ORDER functions require a PRAGMA RESTRICT_REFERENCES specifying :WNDS,WNPS,RNPS,RNDS.

1 2769

PLS-00528: The parameters to an ORDER function must have IN mode

1 2775

PLS-00529: Bad column name string in INSERT statement (must be an identifier)

1 3255

PLS-00530: Illegal type used for object type attribute: 'string'.

1 6474

PLS-00531: Unsupported type in a VARRAY or TABLE type: 'string'.

1 5416

PLS-00532: Target of REF must be a complete or incomplete object type.

1 5137

PLS-00533: Tables of non_queryable types are not supported.

1 2870

PLS-00534: A Table type may not contain a nested table type or VARRAY.

1 3058

PLS-00535: A VARRAY type may not contain a NESTED TABLE, VARRAY or LOB

1 2633

PLS-00536: Navigation through REF variables is not supported in PL/SQL.

1 7303


Un-Answered Questions { Database Errors }

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

1706


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

2662


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

3989


ORA-26032: index string.string loading aborted after string keys

2105


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

2595


ORA-07497: sdpri: cannot create trace file 'string'; errno = string.

2801


What is the use of NOLOCK locking hint?

1784


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

1768


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


ORA-26095: unprocessed stream data exists

3561


why we are using shift key in unix shell script

3165


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

2739


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

2646


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

1616


ORA-26094: stream format error: input column overflow

2798