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

LPX-00311: unsupported feature: ~S

1 2986

LPX-00312: cannot construct XML PI with content: ~S

1 2622

LPX-00313: cannot construct XML comment with content: ~S

1 3048

LPX-00314: an internal failure occurred

1 2917

LPX-00315: extension function ~S not supported

1 2851

LPX-00316: invalid value ~S for ~S attribute ~S

1 3337

LPX-00317: undefined decimal-format "~S"

1 3227

LPX-00318: duplicate xsl:decimal-format "~S"

1 2937

LPX-00319: The node specified is not valid

1 2611

LPX-00320: No more attributes can be added to a non empty element

1 2754

LPX-00321: None of the output method (DOM, SAX, Stream) is selected

1 2839

LPX-00322: A doc referred by XSLT stylesheet could not be opened : ~s

1 2746

LPX-00323: illegal apply-imports because of no current template: ~s

1 2560

LPX-00324: "~S" is not a valid value for the lang attribute of xsl:sort

1 2787

LPX-00400: an internal error has occurred in XPATH

1 3004


Un-Answered Questions { Database Errors }

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

1768


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


NZE-28890: Entrust Login Failed

1882


IMP-00063: Warning: Skipping table "string"."string" because object type "string"."string" cannot be created or has different identifier

2733


What is the use of NOLOCK locking hint?

1787


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

2155


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

2230


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

2664


write a database figure to implement the master detained relationship.

2936


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

2654


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-16626: failed to enable specified object

2218


i have created ODBC through Data sources and tests completed sucessfully. when i am Trying to connect SQL Server through ODBC (ODBC :Oracle Open Client Adapter for ODBC 2.0.2.15.0 Microsoft SQL Server 09.00.3054) unable to Connect to SQL*Plus: Release 8.0.4.0.0. it is given following error-message . Error: ORA-03121: NO interface driver connected- function not performed.

2802


What is live lock, deadlock and what is Lock escalation?

2434


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

2522