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

PCB-00229: Indicator variable "string" has wrong type or length

1 3849

PCB-00230: Indicator table size must not be less than its host variable

1 2852

PCB-00231: Host and indicator variables may not have the same name.

1 2996

PCB-00232: Tables not allowed as input bind variables in SELECT statement

1 3019

PCB-00233: Table size mismatch in INTO/USING. Minimum is: number

1 5371

PCB-00234: FOR variable "string" is invalid type

1 3033

PCB-00235: Table size mismatch in INTO/USING. Minimum is: number

1 2950

PCB-00236: Cannot use PIC N/G variable. NLS_NCHAR not set or set incorrectly.

1 3552

PCB-00237: Declaration of "string" cannot have a level number greater than 48

1 2762

PCB-00238: Element of this table group item host variable cannot be a table

1 2900

PCB-00239: Element of a table group item indicator cannot be table or group item

1 3288

PCB-00240: Group item containing this host variable cannot be table

1 3614

PCB-00241: A host variable is required here

1 2780

PCB-00242: A host variable or exact numeric constant is required here

1 2954

PCB-00300: Datatype for host variable not supported by ANSI "string"

1 2817


Un-Answered Questions { Database Errors }

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

2650


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.

2804


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

8820


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

2667


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

2805


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

1683


hp asking for replication floppy to do reinstall 25254 server assistant

2886


ORA-26094: stream format error: input column overflow

2808


if the lengths of two wires are same and the area of cross sections is 4:7 then what will be the ratio of current passing through these wires

2705


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

2213


How to view the error log for any specific instance?

2486


NZE-28890: Entrust Login Failed

1882


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

3864


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

2522


What is Mutex error in Triggers?

3071