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

NNC-00431: NS address does not match any of the current addresses

1 2879

NNC-00500: warning: "string" parameter value is illegal, setting to string

1 2856

NNC-00501: warning: "string" parameter value must be between number and number, setting to number

1 2965

NNF-00001: Not a TNS address

1 3018

NNF-00002: Invalid value passed to function call

1 3567

NNF-00003: Naming adapter string does not exist

1 3106

NNF-00004: Operation not supported in string

1 2912

NNF-00005: Functionality not implemented

1 2779

NNF-00110: no values exist

1 2831

NNF-00540: Failed to insert name: string

1 2734

NNF-01001: ds_initialize: workspace initialization failed

1 3235

NNF-01002: DCE could not open configuration file

1 3765

NNF-01003: DCE could not find cell name

1 3351

NNF-01004: DCE returned unspecified error string

1 2711

NNF-01005: Internal XOM class violation

1 2749


Un-Answered Questions { Database Errors }

How will you Handle Error in SQL SERVER 2008?

2401


IMP-00096: Warning: Skipping table "string"."string" because type synonym "string"."string" cannot be created

1616


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

2410


ORA-16627: No standby databases support the overall protection mode.

3989


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

8818


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

3862


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

1677


In my project I am using star schema and only diimension tables are loaded and not fact tables any one can help me why it is happening? Plase guide me.

2870


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

2697


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

2800


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

2155


invalid quantity specification negative quantity are not allowed for this item please check this item definition quantity

3383


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

2646


What is Mutex error in Triggers?

3064


what is new g/l functionality

2611