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-04093: references to columns of type LONG are not allowed in triggers

1 6002

ORA-04094: table string.string is constraining, trigger may not modify it

1 3386

ORA-04095: trigger 'string' already exists on another table, cannot replace it

1 8907

ORA-04096: trigger 'string' has a WHEN clause which is too large, limit 2K

1 4116

ORA-04097: DDL conflict while trying to drop or alter a trigger

1 5109

ORA-04098: trigger 'string.string' is invalid and failed re-validation

1 5924

ORA-04099: trigger 'string' is valid but not stored in compiled form

1 3298

ORA-24280: invalid input value for parameter string

1 3626

ORA-24281: invalid access past the maximum size of LOB parameter string

1 3168

ORA-24292: no more tables permitted in this sorted hash cluster

1 3292

ORA-24295: max key length (string) for sorted hash cluster exceeded

1 3269

ORA-24300: bad value for mode

1 6838

ORA-24301: null host specified in thread-safe logon

1 2926

ORA-24302: host connection in use by another thread

1 2927

ORA-24303: call not supported in non-deferred linkage

1 3027


Un-Answered Questions { Database Errors }

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

2864


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

2181


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

2004


How will you Handle Error in SQL SERVER 2008?

2446


How to view the error log for any specific instance?

2545


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

2300


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

2867


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

1736


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

3229


hp asking for replication floppy to do reinstall 25254 server assistant

2967


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

6721


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

2715


ORA-26076: cannot set or reset value after direct path structure is allocated

2035


write a database figure to implement the master detained relationship.

3016


How to resolve QSM-01108 error. I have no OR conditions in my query, but do have 9 IN conditions. The error says the max limit is 2 while I have 257 number of disjuncts. However, if I remove even a single IN condition, the query is rewritten. I cannot change my query. How can I resolve this issue?

2767