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

LSX-00168: referring form of "~S" must NOT occur at the top level

1 2690

LSX-00169: circular group reference is disallowed outside

1 2690

LSX-00170: union must have memberTypes attribute or some simpleType children

1 2953

LSX-00171: missing required sub-element "~S"

1 2702

LSX-00172: "~S" is not a valid restriction of "~S"

1 3012

LSX-00173: ~S of ~S type is not a valid restriction of ~S of ~S type

1 3150

LSX-00174: "~S" is not a valid derivation of "~S"

1 5266

LSX-00175: a complex base within "simpleContent" must have simple content

1 2855

LSX-00176: circular reference detected in schema component named "~S"

1 3221

LSX-00200: element "~S" not empty

1 2769

LSX-00201: contents of "~S" should be elements only

1 2645

LSX-00202: contents of "~S" should be text only

1 2820

LSX-00204: extra data at end of complex element

1 7417

LSX-00205: element "~1S" value "~2S" is wrong (must be "~3S")

1 3773

LSX-00206: substitution for element "~S" is disallowed

1 2641


Un-Answered Questions { Database Errors }

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

6746


How will you Handle Error in SQL SERVER 2008?

2403


NZE-28868: Peer certificate chain check failed.

2802


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

1958


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

2452


ORA-26029: index string.string partition string initially in unusable state

2155


ORA-26030: index string.string had string partitions made unusable due to:

1941


When do you get "getwmicomexception"?

2682


ORA-26094: stream format error: input column overflow

2802


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

2653


How to view the error log for any specific instance?

2486


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

1679


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

2648


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

2107


ORA-26095: unprocessed stream data exists

3568