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-38453: ExpFilter index should be created in the same schema as the base table.

1 2886

ORA-38454: attribute set not defined for the column being indexed

1 3139

ORA-38455: Expression Filter index should be created by the owner.

1 2563

ORA-38456: The attribute set "string" is in an inconsistent state.

1 3047

ORA-38457: The attribute "string" is not a valid XMLType attribute.

1 2791

ORA-38458: invalid operation "string" for XPATH_FILTER_PARAMETERS

1 3053

ORA-38459: XML Tag "string" not found for the XMLType attribute "string"

1 2863

ORA-38460: filtering based on datatype "string" not supported for XML Tags

1 2715

ORA-38461: XML Tag "string" already exists for the XMLType attribute "string"

1 2773

ORA-38462: invalid attribute list

1 2824

ORA-38463: invalid XML Tag list

1 2986

ORA-38464: expression set is not empty.

1 3113

ORA-38465: failed to create the privilege checking trigger due to: string

1 3635

ORA-38466: user does not have privileges to CREATE/MODIFY expressions

1 3953

ORA-38467: user cannot GRANT/REVOKE privileges to/from himself

1 2990


Un-Answered Questions { Database Errors }

When you get following error? Error 3154: The backup set holds a backup of a database other than the existing database.

2527


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

3183


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

2217


RMAN-05017: no copy of datafile number found to recover

2414


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

2252


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

2812


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

2676


NZE-28868: Peer certificate chain check failed.

2811


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

6754


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

1717


what is new g/l functionality

2626


What is Mutex error in Triggers?

3079


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

1690


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

2659