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

PCC-00122: Input file name and output file name are identical

1 3250

PCC-00123: Entire VARCHAR declaration must be on same line

1 3548

PCC-00124: COMMON_NAME option is specified too late

1 2935

PCC-00126: Could not find or open system configuration file

1 3380

PCC-00127: %s

1 3323

PCC-00128: Command line processor severe error

1 3391

PCC-00129: Option "string" must be given

1 3482

PCC-00132: Indicator array size must not be less than its host variable

1 3203

PCC-00133: Command line option MODE=ANSI required with option NLS_LOCAL=YES

1 3101

PCC-00135: Result Set Cursor usage is not standard SQL

1 3127

PCC-00136: Invalid SQL_CURSOR declaration

1 4027

PCC-00137: Invalid use of SQL cursor host variable

1 4361

PCC-00138: Result Set Cursors are not implemented in this precompiler

1 3065

PCC-00139: Cannot change MAXLITERAL after an EXEC SQL statement

1 3091

PCC-00140: CREATE FUNCTION/PROCEDURE/PACKAGE/TRIGGER are Oracle extensions

1 3093


Un-Answered Questions { Database Errors }

ORA-16516: The current state is invalid for the attempted operation.

8877


What severity level errors are managed in TRY-CATCH block?

2267


What is the use of NOLOCK locking hint?

1832


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

6792


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

2714


NZE-28868: Peer certificate chain check failed.

2864


ORA-26028: index string.string initially in unusable state

3914


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

1817


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?

2762


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

2517


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

1734


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

1763


I entered the data in SQL toad version 9.0.1 in English and Arabic language but when i do the query i get the data in Arabic language with (??? question mark) ,please your support.

1700


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

2713


How will you Handle Error in SQL SERVER 2008?

2443